Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getBindings (0.1 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java

            }
    
            private <Q> Supplier<Q> getBeanSupplier(Dependency<Q> dep, Key<Q> key) {
                List<Binding<?>> list = new ArrayList<>();
                // Add DI bindings
                list.addAll(getBindings().getOrDefault(key, Set.of()));
                // Add Plexus bindings
                for (var bean : locator.get().locate(toGuiceKey(key))) {
                    if (isPlexusBean(bean)) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/DcerpcPipeHandle.java

            this.handle = this.pipe.openPipe().unwrap(SmbPipeHandleInternal.class);
        }
    
    
        private String makePipeUrl () {
            DcerpcBinding binding = getBinding();
            String url = "smb://" + binding.getServer() + "/IPC$/" + binding.getEndpoint().substring(6);
    
            String params = "";
            String server = (String) binding.getOption("server");
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jan 26 11:51:07 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/DcerpcHandle.java

            this.transportContext = tc;
            this.binding = binding;
        }
    
    
        /**
         * @return the binding
         */
        public DcerpcBinding getBinding () {
            return this.binding;
        }
    
    
        /**
         * @return the max_recv
         */
        int getMaxRecv () {
            return this.max_recv;
        }
    
    
        /**
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jun 30 10:11:57 UTC 2019
    - 12.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/FileLocationTest.java

                    .getHandle(String.format("ncacn_np:%s[endpoint=%s,address=%s]", "testing", "\\pipe\\srvsvc", "1.2.3.4"), getContext()) ) {
    
                assertEquals("testing", h.getServer());
                assertEquals("1.2.3.4", h.getBinding().getOptions().get("address"));
            }
        }
    
    
        // #165
        @Test
        public void testV6DCE () throws MalformedURLException, CIFSException {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Wed Jan 08 13:16:07 UTC 2020
    - 23K bytes
    - Viewed (0)
Back to top