Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for maxint (0.18 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			obj:    objs(math.MaxInt64, math.MaxInt64, math.MaxInt32, math.MaxInt32, math.MaxInt64, math.MaxInt64),
    			schema: schemas(integerType, integerType, int32Type, int32Type, int64Type, int64Type),
    			valid: []string{
    				ValsEqualThemselvesAndDataLiteral("self.val1", "self.val2", fmt.Sprintf("%d", math.MaxInt64)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    					Drives:   anonymizeDrives(server.Disks),
    					PoolNumber: func() int {
    						if len(server.PoolNumbers) == 1 {
    							return server.PoolNumbers[0]
    						}
    						return math.MaxInt // this indicates that its unset.
    					}(),
    					PoolNumbers: server.PoolNumbers,
    					MemStats: madmin.MemStats{
    						Alloc:      server.MemStats.Alloc,
    						TotalAlloc: server.MemStats.TotalAlloc,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  3. src/reflect/value.go

    // convertOp: intXX -> [u]intXX
    func cvtInt(v Value, t Type) Value {
    	return makeInt(v.flag.ro(), uint64(v.Int()), t)
    }
    
    // convertOp: uintXX -> [u]intXX
    func cvtUint(v Value, t Type) Value {
    	return makeInt(v.flag.ro(), v.Uint(), t)
    }
    
    // convertOp: floatXX -> intXX
    func cvtFloatInt(v Value, t Type) Value {
    	return makeInt(v.flag.ro(), uint64(int64(v.Float())), t)
    }
    
    // convertOp: floatXX -> uintXX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Less64 (Const64 <t> [math.MaxInt64-1]) x) => (Eq64 x (Const64 <t> [math.MaxInt64]))
    (Less32 (Const32 <t> [math.MaxInt32-1]) x) => (Eq32 x (Const32 <t> [math.MaxInt32]))
    (Less16 (Const16 <t> [math.MaxInt16-1]) x) => (Eq16 x (Const16 <t> [math.MaxInt16]))
    (Less8  (Const8  <t> [math.MaxInt8 -1]) x) => (Eq8  x (Const8  <t> [math.MaxInt8 ]))
    
    // Ands clear bits. Ors set bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    	}
    
    	connSet.check(t)
    }
    
    // TestTransportConnectionCloseOnRequest tests that the Transport's doesn't reuse
    // an underlying TCP connection after making an http.Request with Request.Close set.
    //
    // It tests the behavior by making an HTTP request to a server which
    // describes the source connection it got (remote port number +
    // address of its net.Conn).
    func TestTransportConnectionCloseOnRequest(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

            new Runnable() {
              @Override
              public void run() {
                awaitUninterruptibly(beforeFunction);
              }
            });
    
        // Cancel the future after making input available.
        inputFuture.set("value");
        future.cancel(false);
    
        // Unpause the executor.
        beforeFunction.countDown();
        executor.shutdown();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

            new Runnable() {
              @Override
              public void run() {
                awaitUninterruptibly(beforeFunction);
              }
            });
    
        // Cancel the future after making input available.
        inputFuture.set("value");
        future.cancel(false);
    
        // Unpause the executor.
        beforeFunction.countDown();
        executor.shutdown();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            when:
            def outputDir = immutableOutputDir("lib1.jar", "0/lib1-green.jar")
            def workspaceDir = outputDir.parentFile
            outputDir.file("tamper-tamper.txt").text = "Making a mess"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  9. cmd/object-handlers_test.go

    	multipartResponse := &InitiateMultipartUploadResponse{}
    
    	err = decoder.Decode(multipartResponse)
    	if err != nil {
    		t.Fatalf("Error decoding the recorded response Body")
    	}
    	// verify the uploadID my making an attempt to list parts.
    	_, err = obj.ListObjectParts(context.Background(), bucketName, objectName, multipartResponse.UploadID, 0, 1, ObjectOptions{})
    	if err != nil {
    		t.Fatalf("Invalid UploadID: <ERROR> %s", err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      llvm::SmallSet<uint64_t, 4> axes_set;
      for (auto a : axes_attr.getValues<APInt>()) {
        axes_set.insert(a.getZExtValue());
      }
    
      auto type_shape = type.getShape();
      for (uint64_t i = 0; i < type.getRank(); ++i) {
        if (axes_set.contains(i)) {
          if (shape_attr.getValues<APInt>()[i] != 1) return false;
        } else {
          if (shape_attr.getValues<APInt>()[i] != type_shape[i]) return false;
        }
      }
      return true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top