Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for sum2 (0.04 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    			tc := tests[tcIndex]
    			testName := fmt.Sprintf("%s [%s]", tc.name, mode)
    			uniqueTestString := fmt.Sprintf("global-mount-%s", testName)
    			uniquePodDir := fmt.Sprintf("%s-%x", kubeletPodsDir, md5.Sum([]byte(uniqueTestString)))
    			t.Run(testName+"[", func(t *testing.T) {
    				t.Parallel()
    				pv := &v1.PersistentVolume{
    					ObjectMeta: metav1.ObjectMeta{
    						Name: tc.volumeName,
    						UID:  "pvuid",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  2. src/cmd/internal/testdir/testdir_test.go

    				}
    			})
    		}
    	}
    }
    
    func shardMatch(name string) bool {
    	if *shards <= 1 {
    		return true
    	}
    	h := fnv.New32()
    	io.WriteString(h, name)
    	return int(h.Sum32()%uint32(*shards)) == *shard
    }
    
    func goFiles(t *testing.T, dir string) []string {
    	f, err := os.Open(filepath.Join(testenv.GOROOT(t), "test", dir))
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "VUADDLV", argLength: 1, reg: fp11, asm: "VUADDLV"},                            // unsigned sum of eight bytes in a 64-bit value, zero extended to 64-bit.
    		{name: "LoweredRound32F", argLength: 1, reg: fp11, resultInArg0: true, zeroWidth: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  4. cmd/test-utils_test.go

    	hm := hmac.New(sha1.New, []byte(secretAccessKey))
    	hm.Write([]byte(stringToSign))
    
    	// Calculate signature.
    	signature := base64.StdEncoding.EncodeToString(hm.Sum(nil))
    
    	query := req.URL.Query()
    	// Handle specially for Google Cloud Storage.
    	query.Set("AWSAccessKeyId", accessKeyID)
    	// Fill in Expires for presigned query.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    	return newCondition(batch.JobFailed, v1.ConditionTrue, condition.Reason, condition.Message, now)
    }
    
    // pastBackoffLimitOnFailure checks if container restartCounts sum exceeds BackoffLimit
    // this method applies only to pods with restartPolicy == OnFailure
    func pastBackoffLimitOnFailure(job *batch.Job, pods []*v1.Pod) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    class GTEST_API_ TestResult {
     public:
      // Creates an empty TestResult.
      TestResult();
    
      // D'tor.  Do not inherit from TestResult.
      ~TestResult();
    
      // Gets the number of all test parts.  This is the sum of the number
      // of successful test parts and the number of failed test parts.
      int total_part_count() const;
    
      // Returns the number of the test properties.
      int test_property_count() const;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
Back to top