Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 698 for already (0.05 sec)

  1. guava/src/com/google/common/base/Joiner.java

          }
    
          @Override
          public Joiner useForNull(String nullText) {
            throw new UnsupportedOperationException("already specified useForNull");
          }
    
          @Override
          public Joiner skipNulls() {
            throw new UnsupportedOperationException("already specified useForNull");
          }
        };
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 15:16:19 UTC 2025
    - 21K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Route.kt

       *  * `example.com:443 via proxy [::1]:8888`
       *
       * This omits duplicate information when possible.
       */
      override fun toString(): String =
        buildString {
          val addressHostname = address.url.host // Already in canonical form.
          val socketHostname = socketAddress.address?.hostAddress?.toCanonicalHost()
    
          when {
            ':' in addressHostname -> append("[").append(addressHostname).append("]")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  3. cmd/user-provider-utils.go

    		if found {
    			return providerPrefix // this is true for certificate and custom providers
    		}
    		return madmin.OpenIDProvider // openid users are already hashed, so no separator
    	}
    
    	return madmin.BuiltinProvider // default to internal
    }
    
    // getProviderInfoFromClaims - returns the provider info from the claims.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SpnegoContext.java

        @Override
        public byte[] initSecContext(final byte[] inputBuf, final int offset, final int len) throws CIFSException {
            SpnegoToken resp;
            if (this.completed) {
                throw new CIFSException("Already complete");
            }
            if (len == 0) {
                resp = initialToken();
            } else {
                resp = negotitate(inputBuf, offset, len);
            }
    
            if (resp == null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/dcerpc/ndr/NdrBufferTest.java

            // Verify filled bytes
            assertEquals((byte) 0xFF, buffer[1]);
            assertEquals((byte) 0xFF, buffer[2]);
            assertEquals((byte) 0xFF, buffer[3]);
    
            // Already aligned
            ndrBuffer.setIndex(4);
            alignedBytes = ndrBuffer.align(4, (byte) 0x00);
            assertEquals(0, alignedBytes);
            assertEquals(4, ndrBuffer.getIndex());
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb/SmbTreeConnectionTest.java

            assertEquals("boom", ex.getMessage());
        }
    
        @Test
        @DisplayName("connect returns handle if already connected")
        void connect_whenAlreadyConnected_returnsHandle() throws Exception {
            SmbTreeConnection c = spy(newConn());
            SmbTreeImpl tree = mock(SmbTreeImpl.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 13K bytes
    - Viewed (0)
  7. cmd/endpoint.go

    		if isEmptyPath(u.Path) {
    			return ep, fmt.Errorf("empty or root path is not supported in URL endpoint")
    		}
    
    		// On windows having a preceding SlashSeparator will cause problems, if the
    		// command line already has C:/<export-folder/ in it. Final resulting
    		// path on windows might become C:/C:/ this will cause problems
    		// of starting minio server properly in distributed mode on windows.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Mar 30 00:56:02 UTC 2025
    - 34.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

         * by {@link Enum#getDeclaringClass()} and {@link Enum#name()} are used to describe the lock in
         * warning or exception output.
         *
         * @throws IllegalStateException If the factory has already created a {@code Lock} with the
         *     specified rank.
         */
        public ReentrantLock newReentrantLock(E rank, boolean fair) {
          return policy == Policies.DISABLED
              ? new ReentrantLock(fair)
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    		Code:  ErrSiteReplicationInvalidRequest,
    	}
    	errSRResyncStarted = SRError{
    		Cause: errors.New("site replication resync is already in progress"),
    		Code:  ErrSiteReplicationInvalidRequest,
    	}
    	errSRResyncCanceled = SRError{
    		Cause: errors.New("site replication resync is already canceled"),
    		Code:  ErrSiteReplicationInvalidRequest,
    	}
    	errSRNoResync = SRError{
    		Cause: errors.New("no resync in progress"),
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 184.7K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureBenchmarks.java

        /**
         * {@inheritDoc}
         *
         * <p>The default {@link AbstractFuture} implementation throws {@code InterruptedException} if
         * the current thread is interrupted before or during the call, even if the value is already
         * available.
         *
         * @throws InterruptedException if the current thread was interrupted before or during the call
         *     (optional but recommended).
         * @throws CancellationException {@inheritDoc}
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jan 30 16:59:10 UTC 2025
    - 13.7K bytes
    - Viewed (0)
Back to top