Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for z$ (0.06 sec)

  1. cmd/storage-datatypes_gen.go

    	o = msgp.AppendUint64(o, z.Total)
    	o = msgp.AppendUint64(o, z.Free)
    	o = msgp.AppendUint64(o, z.Used)
    	o = msgp.AppendUint64(o, z.UsedInodes)
    	o = msgp.AppendUint64(o, z.FreeInodes)
    	o = msgp.AppendUint32(o, z.Major)
    	o = msgp.AppendUint32(o, z.Minor)
    	o = msgp.AppendUint64(o, z.NRRequests)
    	o = msgp.AppendString(o, z.FSType)
    	o = msgp.AppendBool(o, z.RootDisk)
    	o = msgp.AppendBool(o, z.Healing)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  2. cmd/object-api-datatypes_gen.go

    				return
    			}
    			if cap(z.Uploads) >= int(zb0002) {
    				z.Uploads = (z.Uploads)[:zb0002]
    			} else {
    				z.Uploads = make([]MultipartInfo, zb0002)
    			}
    			for za0001 := range z.Uploads {
    				bts, err = z.Uploads[za0001].UnmarshalMsg(bts)
    				if err != nil {
    					err = msgp.WrapError(err, "Uploads", za0001)
    					return
    				}
    			}
    		case "Prefix":
    			z.Prefix, bts, err = msgp.ReadStringBytes(bts)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCircularReferenceIntegrationTest.groovy

                    def indirect = new Indirect()
                    private final String z
    
                    Circular(String a, String z) {
                        this.a = a
                        this.z = z
                    }
    
                    int hashCode() {
                        assert a != null && z != null
                        a.hashCode() ^ z.hashCode()
                    }
    
                    boolean equals(Object other) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/UserTypesCodecTest.kt

            object Z : Peano() {
                override fun toString() = "Z"
            }
    
            data class S(val n: Peano) : Peano() {
                override fun toString() = "S($n)"
            }
    
            private
            fun sequence() = generateSequence(this) { previous ->
                when (previous) {
                    is Z -> null
                    is S -> previous.n
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

    };
    
    // Check if device coordinate is outside of topology mesh shape bounds.
    bool DeviceCoordinateOutOfBound(int x, int y, int z, int core, int bound_x,
                                    int bound_y, int bound_z, int bound_core) {
      return x < 0 || x >= bound_x || y < 0 || y >= bound_y || z < 0 ||
             z >= bound_z || core < 0 || core >= bound_core;
    }
    
    // Create error message for an out of bound device coordinate.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleTest.java

      public void testGetAndAdd() {
        for (double x : VALUES) {
          for (double y : VALUES) {
            AtomicDouble a = new AtomicDouble(x);
            double z = a.getAndAdd(y);
            assertBitEquals(x, z);
            assertBitEquals(x + y, a.get());
          }
        }
      }
    
      /** addAndGet adds given value to current, and returns current value */
      public void testAddAndGet() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. schema/naming.go

    		buf                            strings.Builder
    		lastCase, nextCase, nextNumber bool // upper case == true
    		curCase                        = value[0] <= 'Z' && value[0] >= 'A'
    	)
    
    	for i, v := range value[:len(value)-1] {
    		nextCase = value[i+1] <= 'Z' && value[i+1] >= 'A'
    		nextNumber = value[i+1] >= '0' && value[i+1] <= '9'
    
    		if curCase {
    			if lastCase && (nextCase || nextNumber) {
    				buf.WriteRune(v + 32)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. cmd/erasure-healing-common_test.go

    	if err != nil {
    		t.Fatalf("Failed to make a bucket %v", err)
    	}
    
    	object := "object"
    	data := bytes.Repeat([]byte("a"), smallFileThreshold*16)
    	z := obj.(*erasureServerPools)
    
    	erasureDisks, err := z.GetDisks(0, 0)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	for i, test := range testCases {
    		test := test
    		t.Run(fmt.Sprintf("case-%d", i), func(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. src/time/format.go

    //	"-070000"   ±hhmmss
    //	"-07:00:00" ±hh:mm:ss
    //
    // Replacing the sign in the format with a Z triggers
    // the ISO 8601 behavior of printing Z instead of an
    // offset for the UTC zone. Thus:
    //
    //	"Z0700"      Z or ±hhmm
    //	"Z07:00"     Z or ±hh:mm
    //	"Z07"        Z or ±hh
    //	"Z070000"    Z or ±hhmmss
    //	"Z07:00:00"  Z or ±hh:mm:ss
    //
    // Within the format string, the underscores in "_2" and "__2" represent spaces
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. cmd/erasure-healing_test.go

    	if err = newTestConfig(globalMinioDefaultRegion, obj); err != nil {
    		t.Fatalf("Unable to initialize server config. %s", err)
    	}
    
    	defer removeRoots(fsDirs)
    
    	z := obj.(*erasureServerPools)
    	er := z.serverPools[0].sets[0]
    
    	// Create "bucket"
    	err = obj.MakeBucket(ctx, "bucket", MakeBucketOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	bucket := "bucket"
    	object := "object"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
Back to top