Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for 128 (0.15 sec)

  1. okhttp/api/okhttp.api

    	public static final field TLS_DH_anon_WITH_RC4_128_MD5 Lokhttp3/CipherSuite;
    	public static final field TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA Lokhttp3/CipherSuite;
    	public static final field TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA Lokhttp3/CipherSuite;
    	public static final field TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 Lokhttp3/CipherSuite;
    	public static final field TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 Lokhttp3/CipherSuite;
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 13:41:01 GMT 2024
    - 70.2K bytes
    - Viewed (0)
  2. tests/migrate_test.go

    	}
    
    	for _, columnType := range columnTypes {
    		switch columnType.Name() {
    		case "name":
    			if length, _ := columnType.Length(); (fullSupported || length != 0) && length != 128 {
    				t.Fatalf("name's length should be 128, but got %v", length)
    			}
    		case "salary":
    			if precision, o, _ := columnType.DecimalSize(); (fullSupported || precision != 0) && precision != 2 {
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Mon Mar 18 11:24:16 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            return getBuild().getPluginsAsMap().get(pluginKey);
        }
    
        /**
         * Default toString
         */
        @Override
        public String toString() {
            StringBuilder sb = new StringBuilder(128);
            sb.append("MavenProject: ");
            sb.append(getGroupId());
            sb.append(':');
            sb.append(getArtifactId());
            sb.append(':');
            sb.append(getVersion());
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  4. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // re-acquire conflicting fields owned by other people.
      optional bool force = 2;
    
      // fieldManager is a name associated with the actor or entity
      // that is making these changes. The value must be less than or
      // 128 characters long, and only contain printable characters,
      // as defined by https://golang.org/pkg/unicode/#IsPrint. This
      // field is required.
      optional string fieldManager = 3;
    }
    
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        final int nestingDepth = 128;
        Iterator<Integer> iterator = iterateOver();
        for (int i = 0; i < nestingDepth; i++) {
          iterator = Iterators.concat(iterator, iterateOver(1));
        }
        assertEquals(nestingDepth, Iterators.size(iterator));
      }
    
      public void testConcatNested_appendToBeginning() {
        final int nestingDepth = 128;
        Iterator<Integer> iterator = iterateOver();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Apr 30 18:43:01 GMT 2024
    - 56.5K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/IteratorsTest.java

        final int nestingDepth = 128;
        Iterator<Integer> iterator = iterateOver();
        for (int i = 0; i < nestingDepth; i++) {
          iterator = Iterators.concat(iterator, iterateOver(1));
        }
        assertEquals(nestingDepth, Iterators.size(iterator));
      }
    
      public void testConcatNested_appendToBeginning() {
        final int nestingDepth = 128;
        Iterator<Integer> iterator = iterateOver();
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 55.7K bytes
    - Viewed (0)
  7. src/archive/zip/reader_test.go

    		t.Errorf("Error opening file: %v", err)
    	}
    }
    
    func TestCVE202133196(t *testing.T) {
    	// Archive that indicates it has 1 << 128 -1 files,
    	// this would previously cause a panic due to attempting
    	// to allocate a slice with 1 << 128 -1 elements.
    	data := []byte{
    		0x50, 0x4b, 0x03, 0x04, 0x14, 0x00, 0x08, 0x08,
    		0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  8. docs/en/data/people.yml

    - login: euri10
      count: 153
      avatarUrl: https://avatars.githubusercontent.com/u/1104190?u=321a2e953e6645a7d09b732786c7a8061e0f8a8b&v=4
      url: https://github.com/euri10
    - login: iudeen
      count: 128
      avatarUrl: https://avatars.githubusercontent.com/u/10519440?u=2843b3303282bff8b212dcd4d9d6689452e4470c&v=4
      url: https://github.com/iudeen
    - login: phy25
      count: 126
    Others
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri May 03 22:21:11 GMT 2024
    - 57.2K bytes
    - Viewed (0)
  9. cmd/xl-storage.go

    	smallFileThreshold = 128 * humanize.KiByte // Optimized for NVMe/SSDs
    
    	// For hardrives it is possible to set this to a lower value to avoid any
    	// spike in latency. But currently we are simply keeping it optimal for SSDs.
    
    	// bigFileThreshold is the point where we add readahead to put operations.
    	bigFileThreshold = 128 * humanize.MiByte
    
    	// XL metadata file carries per object metadata.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
  10. common/scripts/metallb-native.yaml

                      IPv4 addresses.
                    format: int32
                    minimum: 1
                    type: integer
                  aggregationLengthV6:
                    default: 128
                    description: The aggregation-length advertisement option lets you
                      “roll up” the /128s into a larger prefix. Defaults to 128. Works
                      for IPv6 addresses.
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
Back to top