- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 5,344 for Bind (1.94 sec)
-
src/test/java/jcifs/dcerpc/DcerpcBindTest.java
// When int opnum = bind.getOpnum(); // Then assertEquals(0, opnum, "Opnum should always be 0 for bind messages"); } @Test @DisplayName("getOpnum should be consistent across multiple calls") void testGetOpnumConsistency() { // When int opnum1 = bind.getOpnum(); int opnum2 = bind.getOpnum();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.7K bytes - Viewed (0) -
src/main/java/jcifs/SmbTransportPool.java
* * @param tc * context to use * @param address the server address * @param port the port number * @param localAddr the local address to bind to * @param localPort the local port to bind to * @param hostName the server host name * @param exclusive * whether to acquire an unshared connection * @return a transport connection to the target */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/webapp/js/admin/plugins/form-validator/html5.js
nd"),b||f.filter("input[placeholder]").each(function(){this.__defaultValue=this.getAttribute("placeholder"),a(this).bind("focus",function(){this.value===this.__defaultValue&&(this.value="",a(this).removeClass("showing-placeholder"))}).bind("blur",function(){""===a.trim(this.value)&&(this.value=this.__defaultValue,a(this).addClass("showing-placeholder"))})})})};a.formUtils.$win.bind("validatorsLoaded formValidationSetup",function(b,c){c||(c=a("form")),e(c)}),a.formUtils.setupValidationUsingHTML5Attr=e}(a,window)});...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jan 01 05:12:47 UTC 2018 - 2.6K bytes - Viewed (0) -
docs/em/docs/deployment/server-workers.md
* đĨ đĨ đļââī¸ đ đ đ đĒ đ & âī¸ âŽī¸: ```Python import uvicorn.workers.UvicornWorker ``` * `--bind`: đ đŦ đ đĸ & â´ đ, âī¸ â¤ (`:`) đ đĸ & â´. * đĨ đ đââ Uvicorn đ, âŠī¸ `--bind 0.0.0.0:80` (đ đ) đ đ âī¸ `--host 0.0.0.0` & `--port 80`. đĸ, đ đĒ đ đ âĢī¸ đĻ **đš** (đ ī¸ đ) đ đ ī¸ (âĢī¸ đĸ). đ đĒ đ đ:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 8.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtSocket.java
* * @param address the NetBIOS address to connect to * @param port the remote port number, or 0 for the default NetBIOS session service port * @param localAddr the local address to bind to * @param localPort the local port to bind to * @throws IOException if an I/O error occurs while creating the socket */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java
* @throws DcerpcException if the bind operation fails * @throws IOException if an I/O error occurs */ public void bind() throws DcerpcException, IOException { synchronized (this) { try { state = 1; final DcerpcMessage bind = new DcerpcBind(binding, this); sendrecv(bind); } catch (final IOException ioe) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js
a,b,c){"use strict";var d=0;a.fn.validateOnBlur=function(b,c){var d=this,e=this.find("*[data-validation]");return e.each(function(){var e=a(this);if(e.is("[type=radio]")){var f=d.find('[type=radio][name="'+e.attr("name")+'"]');f.bind("blur.validation",function(){e.validateInputOnBlur(b,c,!0,"blur")}),c.validateCheckboxRadioOnClick&&f.bind("click.validation",function(){e.validateInputOnBlur(b,c,!0,"click")})}}),e.bind("blur.validation",function(){a(this).validateInputOnBlur(b,c,!0,"blur")}),c.val...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jan 01 05:12:47 UTC 2018 - 32.8K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcConstants.java
/** * Fault packet type - indicates an error */ int RPC_PT_FAULT = 0x03; /** * Bind packet type - establishes context */ int RPC_PT_BIND = 0x0B; /** * Bind acknowledgment packet type */ int RPC_PT_BIND_ACK = 0x0C; /** * Bind negative acknowledgment packet type */ int RPC_PT_BIND_NAK = 0x0D; /** * Alter context packet type
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.3K bytes - Viewed (0) -
samples/unixdomainsockets/src/main/java/okhttp3/unixdomainsockets/UnixDomainServerSocketFactory.java
} @Override public void bind(SocketAddress endpoint, int backlog) throws IOException { this.endpoint = (InetSocketAddress) endpoint; UnixSocketAddress address = new UnixSocketAddress(path); serverSocketChannel = UnixServerSocketChannel.open(); serverSocketChannel.configureBlocking(true); serverSocketChannel.socket().bind(address); } @Override public int getLocalPort() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Feb 12 16:33:52 UTC 2019 - 3.1K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcHandleTest.java
// When: Binding the handle spyHandle.bind(); // Then: Should call sendrecv with bind message verify(spyHandle).sendrecv(any(DcerpcMessage.class)); } @Test @DisplayName("Should propagate IOException during bind") void testBindIOException() throws DcerpcException, IOException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.3K bytes - Viewed (0)