Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for 6000051 (3.2 sec)

  1. guava-tests/test/com/google/common/hash/BloomFilterTest.java

            .addEqualityGroup(BloomFilter.create(Funnels.byteArrayFunnel(), 100, 0.02))
            .addEqualityGroup(BloomFilter.create(Funnels.byteArrayFunnel(), 200, 0.01))
            .addEqualityGroup(BloomFilter.create(Funnels.byteArrayFunnel(), 200, 0.02))
            .addEqualityGroup(BloomFilter.create(Funnels.unencodedCharsFunnel(), 100, 0.01))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

        assertFalse(InetAddresses.isUriInetAddress("1:2e"));
        assertFalse(InetAddresses.isUriInetAddress("[3ffe:0:0:0:0:0:0:1"));
        assertFalse(InetAddresses.isUriInetAddress("3ffe:0:0:0:0:0:0:1]"));
        assertFalse(InetAddresses.isUriInetAddress("3ffe:0:0:0:0:0:0:1"));
        assertFalse(InetAddresses.isUriInetAddress("::ffff:192.0.2.1"));
      }
    
      public void testForUriStringBad() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_messages_test.go

    	}
    	if rand.Intn(10) > 5 {
    		for i := 0; i < rand.Intn(5); i++ {
    			m.serverShare.group = CurveID(rand.Intn(30000) + 1)
    			m.serverShare.data = randomBytes(rand.Intn(200)+1, rand)
    		}
    	} else if rand.Intn(10) > 5 {
    		m.selectedGroup = CurveID(rand.Intn(30000) + 1)
    	}
    	if rand.Intn(10) > 5 {
    		m.selectedIdentityPresent = true
    		m.selectedIdentity = uint16(rand.Intn(0xffff))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    -XX:InitiatingHeapOccupancyPercent=45\n\
    -XX:G1HeapRegionSize=1m\n\
    -XX:MaxGCPauseMillis=60000\n\
    -XX:G1NewSizePercent=5\n\
    -XX:G1MaxNewSizePercent=5\n\
    -Djcifs.smb.client.responseTimeout=30000\n\
    -Djcifs.smb.client.soTimeout=35000\n\
    -Djcifs.smb.client.connTimeout=60000\n\
    -Djcifs.smb.client.sessionTimeout=60000\n\
    -Djcifs.smb1.smb.client.connTimeout=60000\n\
    -Djcifs.smb1.smb.client.soTimeout=35000\n\
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	SECURITY_LOCAL_SID_AUTHORITY       = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 2}}
    	SECURITY_CREATOR_SID_AUTHORITY     = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 3}}
    	SECURITY_NON_UNIQUE_AUTHORITY      = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 4}}
    	SECURITY_NT_AUTHORITY              = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 5}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

     */
    public class DefaultFileLockManager implements FileLockManager {
        private static final Logger LOGGER = LoggerFactory.getLogger(DefaultFileLockManager.class);
        public static final int DEFAULT_LOCK_TIMEOUT = 60000;
    
        private final Set<File> lockedFiles = new CopyOnWriteArraySet<>();
        private final ProcessMetaDataProvider metaDataProvider;
        private final int lockTimeoutMs;
        private final LongSupplier generator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

        protected static final HashFunction murmur3Hash = Hashing.murmur3_128(0);
    
        @Resource
        protected volatile FesenClient fesenClient;
    
        protected String index;
    
        protected int scrollTimeout = 60000;
    
        protected int scrollSize = 100;
    
        protected int bulkBufferSize = 10;
    
        protected int numberOfShards = 5;
    
        protected int numberOfReplicas = 1;
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Apr 04 09:58:36 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/InetAddresses.java

     * the address in network byte order.
     *
     * <p>Examples of IP addresses and their byte representations:
     *
     * <dl>
     *   <dt>The IPv4 loopback address, {@code "127.0.0.1"}.
     *   <dd>{@code 7f 00 00 01}
     *   <dt>The IPv6 loopback address, {@code "::1"}.
     *   <dd>{@code 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01}
     *   <dt>From the IPv6 reserved documentation prefix ({@code 2001:db8::/32}), {@code "2001:db8::1"}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/net/InetAddresses.java

     * the address in network byte order.
     *
     * <p>Examples of IP addresses and their byte representations:
     *
     * <dl>
     *   <dt>The IPv4 loopback address, {@code "127.0.0.1"}.
     *   <dd>{@code 7f 00 00 01}
     *   <dt>The IPv6 loopback address, {@code "::1"}.
     *   <dd>{@code 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01}
     *   <dt>From the IPv6 reserved documentation prefix ({@code 2001:db8::/32}), {@code "2001:db8::1"}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  10. src/crypto/x509/name_constraints_test.go

    		},
    		expectedError: "\"10.0.0.1\" is excluded",
    	},
    
    	// #21: intermediates can further constrain IP ranges.
    	{
    		roots: []constraintsSpec{
    			{
    				bad: []string{"ip:0.0.0.0/1"},
    			},
    		},
    		intermediates: [][]constraintsSpec{
    			{
    				{
    					bad: []string{"ip:11.0.0.0/8"},
    				},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"ip:11.0.0.1"},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top