Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for prepending (0.42 sec)

  1. cluster/gce/gci/configure-helper.sh

        setup-konnectivity-agent-manifest
      fi
      if [[ "${ENABLE_CLUSTER_DNS:-}" == "true" ]]; then
        # Create a new directory for the DNS addon and prepend a "0" on the name.
        # Prepending "0" to the directory ensures that add-on manager
        # creates the dns service first. This ensures no other add-on
        # can "steal" the designated DNS clusterIP.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    					},
    				},
    			},
    			false,
    			v1.PodPending,
    			"mixed state #2 with restart always",
    		},
    		{
    			&v1.Pod{
    				Spec: desiredState,
    				Status: v1.PodStatus{
    					ContainerStatuses: []v1.ContainerStatus{
    						runningState("containerA"),
    						waitingState("containerB"),
    					},
    				},
    			},
    			false,
    			v1.PodPending,
    			"mixed state #3 with restart always",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    	kl.HandlePodAdditions([]*v1.Pod{fittingPod, emptyPod, missingPod, failedPod})
    
    	// Check pod status stored in the status map.
    	checkPodStatus(t, kl, fittingPod, v1.PodPending)
    	checkPodStatus(t, kl, emptyPod, v1.PodFailed)
    	checkPodStatus(t, kl, missingPod, v1.PodPending)
    	checkPodStatus(t, kl, failedPod, v1.PodFailed)
    }
    
    // TODO(filipg): This test should be removed once StatusSyncer can do garbage collection without external signal.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller_test.go

    				buildPod().uid("c").phase(v1.PodRunning).trackingFinalizer().deletionTimestamp().Pod,
    				buildPod().uid("d").phase(v1.PodPending).trackingFinalizer().deletionTimestamp().Pod,
    				buildPod().uid("e").phase(v1.PodRunning).deletionTimestamp().Pod,
    				buildPod().uid("f").phase(v1.PodPending).deletionTimestamp().Pod,
    			},
    			wantSucceeded: 2,
    			wantFailed:    4,
    		},
    	}
    	for name, tc := range cases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    		// placed back into v1.PodPending since the regular containers have run.
    		!kubecontainer.HasAnyRegularContainerStarted(&spec, info):
    		fallthrough
    	case waiting > 0:
    		klog.V(5).InfoS("Pod waiting > 0, pending")
    		// One or more containers has not been started
    		return v1.PodPending
    	case running > 0 && unknown == 0:
    		// All containers have been started, and at least
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_control_test.go

    		t.Error(err)
    	}
    
    	terminalPodOrdinal := -1
    	for i, pod := range pods {
    		// Set at least Pending phase to acknowledge the creation of pods
    		newPhase := v1.PodPending
    		if i == 0 {
    			// Set terminal phase for the first pod
    			newPhase = terminalPhase
    			terminalPodOrdinal = getOrdinal(pod)
    		}
    		pod.Status.Phase = newPhase
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    		// previous mtime updates that happened more often.
    		// This is still not perfect - we ignore the error result, and if the file was
    		// unwritable for some reason then pretending to have written it is also
    		// confusing - but it's probably better than not doing the mtime update.
    		//
    		// But don't do that for the special case where building an executable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. src/net/http/server.go

    // and then return. Returning signals that the request is finished; it
    // is not valid to use the [ResponseWriter] or read from the
    // [Request.Body] after or concurrently with the completion of the
    // ServeHTTP call.
    //
    // Depending on the HTTP client software, HTTP protocol version, and
    // any intermediaries between the client and the Go server, it may not
    // be possible to read from the [Request.Body] after writing to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. src/database/sql/sql.go

    func (rs *Rows) Next() bool {
    	// If the user's calling Next, they're done with their previous row's Scan
    	// results (any RawBytes memory), so we can release the read lock that would
    	// be preventing awaitDone from calling close.
    	rs.closemuRUnlockIfHeldByScan()
    
    	if rs.contextDone.Load() != nil {
    		return false
    	}
    
    	var doClose, ok bool
    	withLock(rs.closemu.RLocker(), func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

        return
      }
    
      // Test that map_outside_compilation's preceeding ops have an _XlaSharding attribute.
      func.func @map_outside_compilation_explicit_sharding() -> () {
        "tf_device.cluster"() ({
          %0 = "tf.OpA"() : () -> tensor<2xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
Back to top