Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 224 for run1 (0.12 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Consequently, it cannot select a correct instantiation of ThreadWithParam
    // in order to call its Run(). Introducing ThreadWithParamBase as a
    // non-templated base class for ThreadWithParam allows us to bypass this
    // problem.
    class ThreadWithParamBase {
     public:
      virtual ~ThreadWithParamBase() {}
      virtual void Run() = 0;
    };
    
    // pthread_create() accepts a pointer to a function type with the C linkage.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    				}),
    			pods: []*v1.Pod{{Spec: v1.PodSpec{NodeName: "node1"}, ObjectMeta: metav1.ObjectMeta{Namespace: "subteam1.team2", Labels: podLabel}}},
    			node: &node1,
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			_, ctx := ktesting.NewTestContext(t)
    			ctx, cancel := context.WithCancel(ctx)
    			defer cancel()
    			snapshot := cache.NewSnapshot(test.pods, []*v1.Node{test.node})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  3. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			expectUpdateStatus:         false,
    			expectErr:                  true,
    			jobPresentInCJActiveStatus: false,
    		},
    	}
    	for name, tc := range testCases {
    		name := name
    		tc := tc
    
    		t.Run(name, func(t *testing.T) {
    			cj := cronJob()
    			cj.Spec.ConcurrencyPolicy = tc.concurrencyPolicy
    			cj.Spec.Suspend = &tc.suspend
    			cj.Spec.Schedule = tc.schedule
    			cj.Spec.TimeZone = tc.timeZone
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    //	   the mcentral.
    //
    //	3. If the mcentral's mspan list is empty, obtain a run
    //	   of pages from the mheap to use for the mspan.
    //
    //	4. If the mheap is empty or has no page runs large enough,
    //	   allocate a new group of pages (at least 1MB) from the
    //	   operating system. Allocating a large run of pages
    //	   amortizes the cost of talking to the operating system.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/math/big/int_test.go

    		{"SmallEven1", "0x7E"},
    		{"SmallEven2", "0x7C"},
    		{"SmallEven3", "0x78"},
    		{"SmallEven4", "0x70"},
    	}
    	for _, mod := range mods {
    		n, _ := new(Int).SetString(mod.val, 0)
    		out := new(Int)
    		b.Run(mod.name, func(b *testing.B) {
    			b.ReportAllocs()
    			for i := 0; i < b.N; i++ {
    				out.Exp(x, y, n)
    			}
    		})
    	}
    }
    
    func BenchmarkExp2(b *testing.B) {
    	x, _ := new(Int).SetString("2", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis.cc

      virtual string ToString() const = 0;
    
      // An ID assigned to the Predicate at construction time.  Conceptually like a
      // pointer, except that it is stable across runs.
      int64_t id() const { return id_; }
    
      virtual absl::Span<Predicate* const> GetOperands() const = 0;
    
      virtual Kind kind() const = 0;
      virtual ~Predicate() {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/BUILD

        ],
    )
    
    tf_cuda_cc_test(
        name = "pjrt_compile_util_test",
        srcs = ["pjrt_compile_util_test.cc"],
        tags = [
            "config-cuda-only",
            "no_oss",  # This test only runs with GPU.
            "requires-gpu-nvidia",
            "xla",
        ],
        deps = [
            ":pjrt_compile_util",
            ":test_util",
            ":xla_gpu_jit",
            "//tensorflow/cc:function_ops",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  8. istioctl/pkg/describe/describe.go

    		Long: `Analyzes pod, its Services, DestinationRules, and VirtualServices and reports
    the configuration objects that affect that pod.`,
    		Example: `  istioctl experimental describe pod productpage-v1-c7765c886-7zzd4`,
    		RunE: func(cmd *cobra.Command, args []string) error {
    			describeNamespace = ctx.NamespaceOrDefault(ctx.Namespace())
    			if len(args) != 1 {
    				return fmt.Errorf("expecting pod name")
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  9. cmd/object-api-listobjects_test.go

    		{testBuckets[0], "unique/", "", "", 1000, true, ListObjectsInfo{}, resultCasesV[1], nil, true},
    	}
    
    	for i, testCase := range testCases {
    		testCase := testCase
    		t.Run(fmt.Sprintf("%s-Test%d", instanceType, i+1), func(t *testing.T) {
    			var err error
    			var resultL ListObjectsInfo
    			var resultV ListObjectVersionsInfo
    			if testCase.versioned {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    	if ruleFile == nil {
    		// Open a log file to write log to. We open in append
    		// mode because all.bash runs the compiler lots of times,
    		// and we want the concatenation of all of those logs.
    		// This means, of course, that users need to rm the old log
    		// to get fresh data.
    		// TODO: all.bash runs compilers in parallel. Need to synchronize logging somehow?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top