Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 82 for testpvc (0.12 sec)

  1. src/cmd/compile/internal/types2/check_test.go

    	var filenames []string
    	for _, fi := range fis {
    		filenames = append(filenames, filepath.Join(dir, fi.Name()))
    	}
    
    	t.Run(filepath.Base(dir), func(t *testing.T) {
    		testPkg(t, filenames, colDelta, manual)
    	})
    }
    
    func testPkg(t *testing.T, filenames []string, colDelta uint, manual bool) {
    	srcs := make([][]byte, len(filenames))
    	for i, filename := range filenames {
    		src, err := os.ReadFile(filename)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/CIBuildModel.kt

            uuid: Int,
            testType: TestType,
            os: Os,
            testJvm: JvmCategory,
            expectedBucketNumber: Int = DEFAULT_FUNCTIONAL_TEST_BUCKET_SIZE,
            buildJvm: Jvm = BuildToolBuildJvm,
            withoutDependencies: Boolean = false,
            arch: Arch = Arch.AMD64,
        ) : this(uuid, testType, os, testJvm.version, testJvm.vendor, buildJvm, expectedBucketNumber, withoutDependencies, arch)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. src/math/rand/v2/pcg_test.go

    		t.Fatalf("after round trip, q = %#x, but p = %#x", q, p)
    	}
    
    	qu := q.Uint64()
    	pu := p.Uint64()
    	if qu != pu {
    		t.Errorf("after round trip, q.Uint64() = %#x, but p.Uint64() = %#x", qu, pu)
    	}
    }
    
    func TestPCG(t *testing.T) {
    	p := NewPCG(1, 2)
    	want := []uint64{
    		0xc4f5a58656eef510,
    		0x9dcec3ad077dec6c,
    		0xc8d04605312f8088,
    		0xcbedc0dcb63ac19a,
    		0x3bf98798cae97950,
    		0xa8c6d7f8d485abc,
    		0x7ffa3780429cd279,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:09:23 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/phi_test.go

    	// (8 bytes).  Otherwise, a random stack slot gets clobbered.
    
    	runtime.Gosched()
    	return a + b + c + d + e + f + g + h + i + j + k + l + m + n + o + p + q + r + s + t + u + v + w + x + y + z
    }
    
    func TestPhi(t *testing.T) {
    	want := int32(0)
    	got := foo()
    	if got != want {
    		t.Fatalf("want %d, got %d\n", want, got)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  5. pkg/kubelet/util/format/pod_test.go

    func fakeCreatePod(name, namespace string, uid types.UID) *v1.Pod {
    	return &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      name,
    			Namespace: namespace,
    			UID:       uid,
    		},
    	}
    }
    
    func TestPod(t *testing.T) {
    	testCases := []struct {
    		caseName      string
    		pod           *v1.Pod
    		expectedValue string
    	}{
    		{"field_empty_case", fakeCreatePod("", "", ""), "_()"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 08:27:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. pkg/kubelet/prober/prober_manager_test.go

    	ready := update.Result == results.Success
    	m.statusManager.SetContainerReadiness(update.PodUID, update.ContainerID, ready)
    }
    
    func TestUpdateReadiness(t *testing.T) {
    	testPod := getTestPod()
    	setTestProbe(testPod, readiness, v1.Probe{})
    	m := newTestManager()
    	defer cleanup(t, m)
    
    	// Start syncing readiness without leaking goroutine.
    	stopCh := make(chan struct{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  7. src/go/types/check_test.go

    	}
    
    	var filenames []string
    	for _, fi := range fis {
    		filenames = append(filenames, filepath.Join(dir, fi.Name()))
    	}
    
    	t.Run(filepath.Base(dir), func(t *testing.T) {
    		testPkg(t, filenames, manual)
    	})
    }
    
    func testPkg(t *testing.T, filenames []string, manual bool) {
    	srcs := make([][]byte, len(filenames))
    	for i, filename := range filenames {
    		src, err := os.ReadFile(filename)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/TablesTransformValuesTest.java

      @J2ktIncompatible
      @GwtIncompatible // NullPointerTester
      @Override
      public void testNullPointerInstance() {}
    
      // put() and putAll() aren't supported.
      @Override
      public void testPut() {
        try {
          table.put("foo", 1, 'a');
          fail("Expected UnsupportedOperationException");
        } catch (UnsupportedOperationException expected) {
        }
        assertSize(0);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 16:54:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/test/groovy/org/gradle/language/c/tasks/CCompileTest.groovy

            2 * platformToolChain.newCompiler({CCompileSpec.class.isAssignableFrom(it)}) >> cCompiler
            pch.objectFile >> temporaryFolder.file("pchObjectFile").createFile()
            pch.name >> "testPch"
            pch.projectPath >> ":"
            pch.includeString >> "header"
            pch.prefixHeaderFile >> temporaryFolder.file("prefixHeader").createFile()
            pch.pchObjects >> TestFiles.empty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. pkg/controller/resourceclaim/controller_test.go

    				pods[0].DeletionTimestamp = &deleted
    				return pods
    			}(),
    			key: podKey(testPodWithResource),
    		},
    		{
    			name: "no-volumes",
    			pods: []*v1.Pod{testPod},
    			key:  podKey(testPod),
    		},
    		{
    			name:           "create-with-other-claim",
    			pods:           []*v1.Pod{testPodWithResource},
    			templates:      []*resourcev1alpha2.ResourceClaimTemplate{template},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 08:56:16 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top