Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for ENDPOINT (0.04 sec)

  1. android/guava/src/com/google/common/collect/Cut.java

           * No code ever sees this bogus value for `endpoint`: This class overrides both methods that
           * use the `endpoint` field, compareTo() and endpoint(). Additionally, the main implementation
           * of Cut.compareTo checks for belowAll before reading accessing `endpoint` on another Cut
           * instance.
           */
          super("");
        }
    
        @Override
        Comparable<?> endpoint() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  2. src/test/java/jcifs/dcerpc/DcerpcBindingTest.java

            String endpoint = "135"; // Example non-pipe endpoint that is not recognized
            DcerpcException thrown = assertThrows(DcerpcException.class, () -> {
                dcerpcBinding.setOption("endpoint", endpoint);
            }, "Should throw DcerpcException for invalid endpoint format.");
    
            assertTrue(thrown.getMessage().contains("Bad endpoint"), "Exception message should indicate a bad endpoint.");
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/DcerpcBinding.java

                    }
                }
                throw new DcerpcException("Bad endpoint: " + endpoint);
            }
            if (options == null) {
                options = new HashMap();
            }
            options.put(key, val);
        }
    
        Object getOption(final String key) {
            if (key.equals("endpoint")) {
                return endpoint;
            }
            if (options != null) {
                return options.get(key);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaConnection.java

            // In real implementation, this would create the endpoint:
            // this.endpoint = group.createEndpoint();
            this.endpoint = new Object();
        }
    
        @Override
        public void connect() throws IOException {
            try {
                // In real implementation, this would establish the RDMA connection:
                // endpoint.connect(remoteAddress, 1000);  // 1 second timeout
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/rdma/disni/DisniMemoryRegion.java

            super(buffer, access);
            this.endpoint = endpoint;
    
            // In real implementation, this would register the memory:
            // try {
            //     int accessFlags = convertAccessFlags(access);
            //     memoryRegister = endpoint.registerMemory(buffer, accessFlags).execute().free();
            // } catch (Exception e) {
            //     throw new RuntimeException("Failed to register memory region", e);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ObjectCountLinkedHashMap.java

        firstEntry = ENDPOINT;
        lastEntry = ENDPOINT;
        links = new long[expectedSize];
        Arrays.fill(links, UNSET);
      }
    
      @Override
      int firstIndex() {
        return (firstEntry == ENDPOINT) ? -1 : firstEntry;
      }
    
      @Override
      int nextIndex(int index) {
        int result = getSuccessor(index);
        return (result == ENDPOINT) ? -1 : result;
      }
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/DcerpcBinding.java

                }
                throw new DcerpcException("Bad endpoint: " + this.endpoint);
            }
            if (this.options == null) {
                this.options = new HashMap<>();
            }
            this.options.put(key, val);
        }
    
        Object getOption(final String key) {
            if (key.equals("endpoint")) {
                return this.endpoint;
            }
            if (this.options != null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/CompactLinkedHashSet.java

      /**
       * Pointer to the predecessor of an entry in insertion order. ENDPOINT indicates a node is the
       * first node in insertion order; all values at indices ≥ {@link #size()} are UNSET.
       */
      private transient int @Nullable [] predecessor;
    
      /**
       * Pointer to the successor of an entry in insertion order. ENDPOINT indicates a node is the last
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 14:59:07 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaProvider.java

        // DiSNI components - these would be actual DiSNI objects in a real implementation
        private Object endpointGroup; // RdmaActiveEndpointGroup<DisniRdmaEndpoint>
        private Object endpoint; // RdmaActiveEndpoint
        private boolean initialized = false;
    
        @Override
        public boolean isAvailable() {
            try {
                // Check if DiSNI is available on the classpath
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  10. container-tests/src/test/java/okhttp3/containers/BasicProxyTest.kt

      @Test
      fun testOkHttpDirect() {
        testRequest {
          val client = OkHttpClient()
    
          val response =
            client
              .newCall(
                Request((mockServer.endpoint + "/person?name=peter").toHttpUrl()),
              ).execute()
    
          assertThat(response.body.string()).contains("Peter the person")
          assertThat(response.protocol).isEqualTo(Protocol.HTTP_1_1)
        }
      }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 6.2K bytes
    - Viewed (0)
Back to top