Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 130 for 3$ (1.43 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func NotifyServiceStatusChange(service Handle, notifyMask uint32, notifier *SERVICE_NOTIFY) (ret error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    					NumberReady:            9,
    					UpdatedNumberScheduled: 3,
    					NumberAvailable:        3,
    				},
    			},
    		},
    	}
    
    	// Columns: Name, Num Desired, Num Current, Num Ready, Num Updated, Num Available, Selectors, Age
    	expectedRows := []metav1.TableRow{
    		{Cells: []interface{}{"daemonset1", int64(3), int64(2), int64(1), int64(2), int64(0), "<none>", "0s"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller_test.go

    			backoffLimit:   6,
    			pendingPods:    2,
    			expectedActive: 2,
    			expectedReady:  ptr.To[int32](0),
    		},
    		"correct # of pods": {
    			parallelism:    3,
    			completions:    5,
    			backoffLimit:   6,
    			activePods:     3,
    			readyPods:      2,
    			expectedActive: 3,
    			expectedReady:  ptr.To[int32](2),
    		},
    		"WQ job: correct # of pods": {
    			parallelism:    2,
    			completions:    -1,
    			backoffLimit:   6,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    					},
    				},
    				TpKeyToDomainsNum: map[string]int{"zone": 2, "node": 3},
    				TpKeyToCriticalPaths: map[string]*criticalPaths{
    					"zone": {{"zone1", 3}, {"zone2", 4}},
    					"node": {{"node-b", 1}, {"node-a", 2}},
    				},
    				TpPairToMatchNum: map[topologyPair]int{
    					{key: "zone", value: "zone1"}:  3,
    					{key: "zone", value: "zone2"}:  4,
    					{key: "node", value: "node-a"}: 2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  5. src/debug/elf/elf.go

    type NType int
    
    const (
    	NT_PRSTATUS NType = 1 /* Process status. */
    	NT_FPREGSET NType = 2 /* Floating point registers. */
    	NT_PRPSINFO NType = 3 /* Process state info. */
    )
    
    var ntypeStrings = []intName{
    	{1, "NT_PRSTATUS"},
    	{2, "NT_FPREGSET"},
    	{3, "NT_PRPSINFO"},
    }
    
    func (i NType) String() string   { return stringName(uint32(i), ntypeStrings, false) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    	xs := []byte{1, 2, 3, 4, 5, 6, 7, 8}
    	v := ValueOf(xs).Index(3).Interface().(byte)
    	if v != xs[3] {
    		t.Errorf("xs.Index(3) = %v; expected %v", v, xs[3])
    	}
    	xa := [8]byte{10, 20, 30, 40, 50, 60, 70, 80}
    	v = ValueOf(xa).Index(2).Interface().(byte)
    	if v != xa[2] {
    		t.Errorf("xa.Index(2) = %v; expected %v", v, xa[2])
    	}
    	s := "0123456789"
    	v = ValueOf(s).Index(3).Interface().(byte)
    	if v != s[3] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. src/cmd/trace/testdata/go122.test

    GoBlock dt=166 reason_string=12 stack=25
    GoStart dt=4 g=23 g_seq=1
    GoUnblock dt=3 g=1 g_seq=15 stack=26
    GoBlock dt=3 reason_string=15 stack=27
    GoStart dt=3 g=1 g_seq=16
    HeapAlloc dt=18 heapalloc_value=4030464
    GoCreate dt=11 new_g=24 new_stack=23 stack=24
    GoBlock dt=3 reason_string=12 stack=25
    GoStart dt=1 g=24 g_seq=1
    GoUnblock dt=3 g=1 g_seq=17 stack=26
    GoBlock dt=2 reason_string=15 stack=27
    GoStart dt=1 g=1 g_seq=18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  8. pkg/scheduler/schedule_one_test.go

    				{Name: "node3.1", TotalScore: 3},
    				{Name: "node2.1", TotalScore: 2},
    				{Name: "node1.1", TotalScore: 1},
    				{Name: "node3.2", TotalScore: 3},
    			},
    			topNodesCnt:   3,
    			possibleNodes: sets.New("node3.1", "node3.2"),
    			possibleNodeLists: [][]framework.NodePluginScores{
    				{
    					{Name: "node3.1", TotalScore: 3},
    					{Name: "node3.2", TotalScore: 3},
    					{Name: "node2.1", TotalScore: 2},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

          %1 = "tf_device.launch"() ({
            %2 = "tf._XlaCompileMlirPlaceholderProgramKey"() : () -> tensor<3x!tf_type.string>
            %3 = "tf._XlaRecvAtHost"(%2) {_xla_has_host_transfer = true, device_ordinal = 0 : i64, key = "host_compute_channel_0_args"} : (tensor<3x!tf_type.string>) -> tensor<?xi32>
            %4 = "tf.B"(%3) : (tensor<?xi32>) -> tensor<?x!tf_type.string>
            tf_device.return %4 : tensor<?x!tf_type.string>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  10. pkg/apis/batch/validation/validation_test.go

    					Parallelism:    pointer.Int32(2),
    					CompletionMode: completionModePtr(batch.IndexedCompletion),
    				},
    			},
    			update: func(job *batch.Job) {
    				job.Spec.Completions = pointer.Int32(3)
    				job.Spec.Parallelism = pointer.Int32(3)
    			},
    			opts: JobValidationOptions{
    				AllowElasticIndexedJobs: true,
    			},
    		},
    		"indexed job updating completions and parallelism to different values is invalid": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
Back to top