- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 283 for Binding (0.09 sec)
-
impl/maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java
} } class BridgeProvider<T> implements Provider<T> { final Binding<T> binding; BridgeProvider(Binding<T> binding) { this.binding = binding; } @Override public T get() { return compile(binding).get(); } } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.8K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcHandle.java
this.transportContext = tc; this.binding = null; } /** * @param tc * @param binding */ public DcerpcHandle ( CIFSContext tc, DcerpcBinding binding ) { this.transportContext = tc; this.binding = binding; } /** * @return the binding */ public DcerpcBinding getBinding () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jun 30 10:11:57 UTC 2019 - 12.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcPipeHandle.java
binding = DcerpcHandle.parseBinding(url); url = "smb1://" + binding.server + "/IPC$/" + binding.endpoint.substring(6); String params = "", server, address; server = (String)binding.getOption("server"); if (server != null) params += "&server=" + server; address = (String)binding.getOption("address"); if (server != null)
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 8.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProcessor.java
* the same injector is immediately matched to this explicit binding, which means extensions * cannot override this binding. This is because the lookup is always short-circuited in this * specific situation (plain @Inject request, and plain explicit binding for the same type.) * * The simplest solution is to use a custom @Named here so it isn't bound under the plain key.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcBind.java
if (result != 0) return new DcerpcException(getResultMessage(result)); return null; } DcerpcBinding binding; int max_xmit, max_recv; public DcerpcBind() { } DcerpcBind(DcerpcBinding binding, DcerpcHandle handle) { this.binding = binding; max_xmit = handle.max_xmit; max_recv = handle.max_recv; ptype = 11;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcBind.java
return null; } private DcerpcBinding binding; private int max_xmit, max_recv; /** * Construct bind message * */ public DcerpcBind () {} DcerpcBind ( DcerpcBinding binding, DcerpcHandle handle ) { this.binding = binding; this.max_xmit = handle.getMaxXmit(); this.max_recv = handle.getMaxRecv();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcPipeHandle.java
private String makePipeUrl () { DcerpcBinding binding = getBinding(); String url = "smb://" + binding.getServer() + "/IPC$/" + binding.getEndpoint().substring(6); String params = ""; String server = (String) binding.getOption("server"); if ( server != null ) { params += "&server=" + server; } String address = (String) binding.getOption("address"); if ( address != null ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jan 26 11:51:07 UTC 2020 - 5.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java
import org.codelibs.fess.unit.UnitFessTestCase; import org.codelibs.fess.util.ComponentUtil; import org.lastaflute.di.core.factory.SingletonLaContainerFactory; import groovy.lang.Binding; import groovy.lang.GroovyClassLoader; import groovy.lang.GroovyShell; public class AbstractDataStoreTest extends UnitFessTestCase { public AbstractDataStore dataStore; @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.1K bytes - Viewed (0) -
cmd/api-response_test.go
}, // Server binding to fqdn. { request: &http.Request{ Host: "s3.mybucket.org", Header: map[string][]string{ "X-Forwarded-Scheme": {httpScheme}, }, }, bucket: "mybucket", object: "test/1.txt", expectedLocation: "http://s3.mybucket.org/mybucket/test/1.txt", }, // Server binding to fqdn. { request: &http.Request{
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Apr 23 18:58:53 UTC 2021 - 3.5K bytes - Viewed (0)