검색어: initialize (러시아어 - 영어)

인적 기여

전문 번역가, 번역 회사, 웹 페이지 및 자유롭게 사용할 수 있는 번역 저장소 등을 활용합니다.

번역 추가

러시아어

영어

정보

러시아어

// initialize

영어

// initialize

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

러시아어

// initialize the library

영어

// initialize the library

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

러시아어

timer1.initialize(8000000); //

영어

timer1.initialize(8000000); //

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

러시아어

lcd.begin(); // initialize the lcd

영어

lcd.begin(); // initialize the lcd

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

러시아어

step 6 : initialize the profile data.

영어

step 6 : initialize the profile data.

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

러시아어

usbh_initialize (0); /* initialize usb host 0 */

영어

usbh_initialize (0); /* initialize usb host 0 */

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

러시아어

fatal error: failed to initialize.

영어

fatal error: failed to initialize.

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

러시아어

/* used by the startup to initialize data */

영어

/* used by the startup to initialize data */

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

러시아어

// initialize digital pin 13 as an output.

영어

// initialize digital pin 13 as an output.

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

러시아어

//lcd.init();// initialize the lcd // для информации

영어

//lcd.init();// initialize the lcd // для информации

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

러시아어

a iprincipal with which to initialize the instance.

영어

a iprincipal with which to initialize the instance.

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

러시아어

// initialize the 'wire' class for the i2c-bus.

영어

// initialize the 'wire' class for the i2c-bus.

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

러시아어

select initialize the managed system and click ok to continue.

영어

select initialize the managed system and click ok to continue.

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

러시아어

/* this is used by the startup in order to initialize the .bss secion */

영어

/* this is used by the startup in order to initialize the .bss secion */

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

러시아어

Функция eventbase::reinit() - re-initialize event base(after a fork).

영어

Функция eventbase::reinit() - re-initialize event base(after a fork).

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

러시아어

mon aug 06 10:42:24 2007 --> psettings::initialize() - initializing for netware package.

영어

mon aug 06 10:42:24 2007 --> psettings::initialize() - initializing for netware package.

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

경고: 보이지 않는 HTML 형식이 포함되어 있습니다

러시아어

// Объект-«песочница» sample.core.appstate = backbone.model.extend({ message: null, receiver: null, // Метод определения приемника setreceiver: function(receiver) { this.set('receiver', receiver); }, // Метод пересылки сообщения proceedmessage: function(message, success, error) { var receiver = this.get('receiver'); if (receiver) { this.set('message', message) ; receiver.receivemessage(message); if (success) { success.call(); } } else if (error) { error.call(); } } }); // Объект-отправитель sample.modules.sender = backbone.view.extend({ message: 'text to send', initialize: function() { this.model = sample.core.state; }, sendmessage: function() { // отправляем сообщения в «песочницу» this.model.proceedmessage(this.message, this.successmessage, this.errormessage); }, successmessage: function() { alert('ok!'); }, errormessage: function() { alert('there is no receiver!'); } }); // Объект-приемник сообщений sample.modules.receiver = backbone.view.extend({ initialize: function() { this.model = sample.core.state; // Сообщаем «песочнице», что пересылать сообщения нужно нам this.model.setreceiver(this); }, receivemessage: function(message) { alert(message); } }); // Объект-подписчик на событие sample.modules.listener = backbone.view.extend({ initialize: function() { var self = this; this.model = sample.core.state; // Подписываемся this.model.bind(‘change:message’: function() { self.listenmessage(self.model.get(‘message’)); }); }, listenmessage: function(message) { console.log(message); } }); sample.core.state = new sample.core.appstate(); sample.modules.receiver = new sample.modules.receiver(); sample.modules.sender = new sample.modules.sender(); sample.modules.listener = new sample.modules.listener();

영어

// the "sandbox" object sample.core.appstate = backbone.model.extend({ message: null, receiver: null, // receiver definition method setreceiver: function(receiver) { this.set('receiver', receiver); }, // message forwarding method proceedmessage: function(message, success, error) { var receiver = this.get('receiver'); if (receiver) { this.set('message', message) ; receiver.receivemessage(message); if (success) { success.call(); } } else if (error) { error.call(); } } }); // sender object sample.modules.sender = backbone.view.extend({ message: 'text to send', initialize: function() { this.model = sample.core.state; }, sendmessage: function() { // send messages to the "sandbox" this.model.proceedmessage(this.message, this.successmessage, this.errormessage); }, successmessage: function() { alert('ok!'); }, errormessage: function() { alert('there is no receiver!'); } }); // message receiver object sample.modules.receiver = backbone.view.extend({ initialize: function() { this.model = sample.core.state; // telling the sandbox to forward messages to us this.model.setreceiver(this); }, receivemessage: function(message) { alert(message); } }); // the object listening to the event sample.modules.listener = backbone.view.extend({ initialize: function() { var self = this; this.model = sample.core.state; // enable listening this.model.bind(‘change:message’: function() { self.listenmessage(self.model.get(‘message’)); }); }, listenmessage: function(message) { console.log(message); } }); sample.core.state = new sample.core.appstate(); sample.modules.receiver = new sample.modules.receiver(); sample.modules.sender = new sample.modules.sender(); sample.modules.listener = new sample.modules.listener();

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

경고: 보이지 않는 HTML 형식이 포함되어 있습니다

인적 기여로
9,166,445,471 더 나은 번역을 얻을 수 있습니다

사용자가 도움을 필요로 합니다:



당사는 사용자 경험을 향상시키기 위해 쿠키를 사용합니다. 귀하께서 본 사이트를 계속 방문하시는 것은 당사의 쿠키 사용에 동의하시는 것으로 간주됩니다. 자세히 보기. 확인