Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for swapped (0.86 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerCachingSmokeTest.groovy

            ':wearable:generateDebugResources': FROM_CACHE,
            ':wearable:javaPreCompileDebug': FROM_CACHE,
            ':wearable:kaptDebugKotlin': SKIPPED,
            ':wearable:kaptGenerateStubsDebugKotlin': SKIPPED,
            ':wearable:mapDebugSourceSetPaths': SUCCESS,
            ':wearable:mergeDebugAssets': SUCCESS,
            ':wearable:mergeDebugGlobalSynthetics': FROM_CACHE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 13:45:43 UTC 2024
    - 209.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework_test.go

    		},
    		{
    			name: "one RemovePod() is skipped",
    			plugins: []*TestPlugin{
    				{
    					name: "success1",
    				},
    				{
    					name: "skipped",
    					// To confirm it's skipped, return error so that this test case will fail when it isn't skipped.
    					inj: injectedResult{PreFilterRemovePodStatus: int(framework.Error)},
    				},
    			},
    			skippedPluginNames: sets.New("skipped"),
    			wantStatusCode:     framework.Success,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    		case containerStatus.State.Running != nil:
    			running++
    		case containerStatus.State.Terminated != nil:
    			stopped++
    			if containerStatus.State.Terminated.ExitCode == 0 {
    				succeeded++
    			}
    		case containerStatus.State.Waiting != nil:
    			if containerStatus.LastTerminationState.Terminated != nil {
    				stopped++
    			} else {
    				waiting++
    			}
    		default:
    			unknown++
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	}
    
    	kl.statusManager.SetPodStatus(pod, apiPodStatus)
    
    	// Pods that are not runnable must be stopped - return a typed error to the pod worker
    	if !runnable.Admit {
    		klog.V(2).InfoS("Pod is not runnable and must have running containers stopped", "pod", klog.KObj(pod), "podUID", pod.UID, "message", runnable.Message)
    		var syncErr error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	}
    
    	// Double-check we actually stopped everything, and all the invariants hold.
    	// Also accumulate all the time spent by each P in _Pgcstop up to the point
    	// where everything was stopped. This will be accumulated into the total pause
    	// CPU time by the caller.
    	stoppingCPUTime := int64(0)
    	bad := ""
    	if sched.stopwait != 0 {
    		bad = "stopTheWorld: not stopped (stopwait != 0)"
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"oldSelf.v == 'old' && self.v == 'new'",
    			},
    		},
    		{name: "skipped transition rule for nil old primitive",
    			expectSkipped: true,
    			obj:           "exists",
    			oldObj:        nil,
    			schema:        &stringType,
    			valid: []string{
    				"oldSelf == self",
    			},
    		},
    		{name: "skipped transition rule for nil old array",
    			expectSkipped: true,
    			obj:           []interface{}{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. pkg/volume/util/operationexecutor/operation_generator.go

    	// It's ok to ignore the error, returning error is not expected from this function.
    	// If an error case occurred during the function generation, this error case(skipped one) will also trigger an error
    	// while the generated function is executed. And those errors will be handled during the execution of the generated
    	// function with a back off policy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
        From a tensor segmentation, computes the `output` resulting from
        summing together elements mapped to the same segment_id. I.e. `output[i]` is
        equal to the tensor sum of all elements from the input tensor mapped to
        segment_id `i`. If no tensors are mapped to a particular included
        segment_id, the output at that indice will be a zero tensor with the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. pkg/apis/batch/validation/validation_test.go

    		},
    		"overlapping intervals, corrupted completed interval skipped": {
    			completedIndexesStr: "0,2-4,x,6-8,12-19",
    			failedIndexesStr:    "1,8,9-10",
    			completions:         20,
    			wantError:           errors.New("failedIndexes and completedIndexes overlap at index: 8"),
    		},
    		"overlapping intervals, corrupted failed interval skipped": {
    			completedIndexesStr: "0,2-4,6-8,12-19",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods_test.go

    					ContainerStatuses: []v1.ContainerStatus{
    						stoppedState("containerA"),
    						stoppedState("containerB"),
    					},
    				},
    			},
    			false,
    			v1.PodRunning,
    			"all stopped with restart always",
    		},
    		{
    			&v1.Pod{
    				Spec: desiredState,
    				Status: v1.PodStatus{
    					ContainerStatuses: []v1.ContainerStatus{
    						succeededState("containerA"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top