Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 0755 (0.04 sec)

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

      }
    
      /**
       * Returns a capacity that is sufficient to keep the map from being resized as long as it grows no
       * larger than expectedSize and the load factor is ≥ its default (0.75).
       */
      static int capacity(int expectedSize) {
        if (expectedSize < 3) {
          checkNonnegative(expectedSize, "expectedSize");
          return expectedSize + 1;
        }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Maps.java

      }
    
      /**
       * Returns a capacity that is sufficient to keep the map from being resized as long as it grows no
       * larger than expectedSize and the load factor is ≥ its default (0.75).
       */
      static int capacity(int expectedSize) {
        if (expectedSize < 3) {
          checkNonnegative(expectedSize, "expectedSize");
          return expectedSize + 1;
        }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    	echo
    	echo "Waiting for MinIO instance to get ready!"
    	sleep 10
    }
    
    main "$@"`, scheme)
    	adminLogIf(ctx, embedFileInZip(inspectZipW, "start-minio.sh", scrb.Bytes(), 0o755))
    }
    
    func getSubnetAdminPublicKey() []byte {
    	if globalIsCICD {
    		return subnetAdminPublicKeyDev
    	}
    	return subnetAdminPublicKey
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 04 11:32:32 UTC 2024
    - 99.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/LocalCache.java

         * (usually) must retry.
         */
        int modCount;
    
        /**
         * The table is expanded when its size exceeds this threshold. (The value of this field is
         * always {@code (int) (capacity * 0.75)}.)
         */
        int threshold;
    
        /** The per-segment table. */
        @CheckForNull volatile AtomicReferenceArray<ReferenceEntry<K, V>> table;
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  5. internal/s3select/csv/testdata/testdata.zip

    ,1293,737,4,Queens,073700,4073700,I,QN17,Forest Hills,4108,749,721,4,Queens,072100,4072100,I,QN17,Forest Hills,4108^3389399,2,2014-03-16 02:43:17,2014-03-16 02:47:42,N,1,-73.8424072265625,40.719280242919922,-73.83294677734375,40.71319580078125,1,1.07,5.5,0.5,0.5,1.2,0,,,7.7,1,1,95,134,green,0.00,0.0,0.0,42,30,7.61,1293,737,4,Queens,073700,4073700,I,QN17,Forest Hills,4108,2078,773,4,Queens,077300,4077300,I,QN60,Kew Gardens,4111^3389400,2,2014-03-14 22:44:26,2014-03-14 22:47:41,N,1,-73.84409332275...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 111.6K bytes
    - Viewed (0)
Back to top