Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 405 for Fallback (0.08 sec)

  1. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            getMockRequest().setLocale(Locale.JAPANESE);
            helpUrl = systemHelper.getHelpUrl("https://example.com/{lang}/{version}/test.html");
            // Check if Japanese is actually supported or just use the fallback
            assertTrue(helpUrl.contains("98.76"));
    
            getMockRequest().setLocale(Locale.ITALIAN);
            helpUrl = systemHelper.getHelpUrl("https://example.com/{lang}/{version}/test.html");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

             * Login with no credentials
             */
            NULL,
            /**
             * Guest authentication
             *
             * Allows login with invalid credentials (username and/or password)
             * Fallback to anonymous authentication is permitted
             */
            GUEST,
            /**
             * Regular user authentication
             */
            USER
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java

              // Some Android 5.0.x Samsung devices have bugs in JDK reflection APIs that cause
              // getDeclaredField to throw a NoSuchFieldException when the field is definitely there.
              // For these users fallback to a suboptimal implementation, based on synchronized. This
              // will be a definite performance hit to those users.
              thrownAtomicReferenceFieldUpdaterFailure = atomicReferenceFieldUpdaterFailure;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java

                final byte[] adjustedNonce;
                if (nonce.length == 12) {
                    adjustedNonce = nonce;
                } else {
                    // Fallback for compatibility
                    adjustedNonce = new byte[12];
                    System.arraycopy(nonce, 0, adjustedNonce, 0, Math.min(12, nonce.length));
                }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AbstractFutureState.java

              // Some Android 5.0.x Samsung devices have bugs in JDK reflection APIs that cause
              // getDeclaredField to throw a NoSuchFieldException when the field is definitely there.
              // For these users fallback to a suboptimal implementation, based on synchronized. This
              // will be a definite performance hit to those users.
              thrownAtomicReferenceFieldUpdaterFailure = atomicReferenceFieldUpdaterFailure;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  6. cmd/iam-store.go

    		return policies, nil
    	}
    
    	if userPolicyPresent {
    		// if user mapping present and no group policies found
    		// rely on user policy for access, instead of fallback.
    		return nil, nil
    	}
    
    	var mu sync.Mutex
    
    	// no mappings found, fallback for all groups.
    	g := errgroup.WithNErrs(len(groups)).WithConcurrency(10) // load like 10 groups at a time.
    
    	for index := range groups {
    		g.Go(func() error {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 86.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/Configuration.java

         */
        int getLanManCompatibility();
    
        /**
         *
         * Property {@code jcifs.smb.allowNTLMFallback} (boolean, default true)
         *
         * @return whether to allow fallback from kerberos to NTLM
         */
        boolean isAllowNTLMFallback();
    
        /**
         * Property {@code jcifs.smb.useRawNTLM} (boolean, default false)
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  8. docs/smb3-features/06-witness-protocol-design.md

            log.warn("Network partition detected - witness notifications may be delayed");
            
            // Switch to more aggressive connection retry
            // Increase heartbeat frequency
            // Consider fallback mechanisms
        }
        
        public void handlePartitionRecovery() {
            log.info("Network partition recovered - resuming normal witness operations");
            
            // Restore normal operation parameters
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbFile.java

                    // Add SMB3 features support with error handling for compatibility
                    SmbSessionImpl session = h.getSession();
    
                    // Enable lease support if available, with fallback for compatibility
                    boolean leasesAdded = false;
                    if (config.isUseLeases() && h.isSMB3()) {
                        try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableSet.java

        return new SingletonImmutableSet<>(e1);
      }
    
      /*
       * TODO: b/315526394 - Skip the Builder entirely for the of(...) methods, since we don't need to
       * worry that we might trigger the fallback to the JDK-backed implementation? (The varargs one
       * _could_, so we could keep it as it is. Or we could convince ourselves that hash flooding is
       * unlikely in practice there, too.)
       */
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.2K bytes
    - Viewed (0)
Back to top