Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 127 for pending_ (1.17 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    // of the (non-empty) pending location description, if so, the two
    // can be merged (i.e., pending is still a valid and useful location
    // description).
    func canMerge(pending, new VarLoc) bool {
    	if pending.absent() && new.absent() {
    		return true
    	}
    	if pending.absent() || new.absent() {
    		return false
    	}
    	// pending is not absent, therefore it has either a stack mapping,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/binder_test.go

    			expectedEvents:  []string{"Normal FailedBinding"},
    			errors:          noerrors,
    			test:            testSyncClaim,
    		},
    		{
    			// syncClaim resets claim.Status to Pending when there is no
    			// matching volume.
    			name:            "1-3 - reset to Pending",
    			initialVolumes:  newVolumeArray("volume1-3", "1Gi", "", "", v1.VolumeAvailable, v1.PersistentVolumeReclaimRetain, classEmpty),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            // If none of the incoming edges are transitive, remove previous state and do not traverse.
            // If not traversed before, simply add all selected outgoing edges (either hard or pending edges)
            // If traversed before:
            //      If net exclusions for this node have not changed, ignore
            //      If net exclusions for this node have changed, remove previous state and traverse outgoing edges again.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    	// fullname of the pod
    	fullname string
    
    	// working is true if an update is pending or being worked by a pod worker
    	// goroutine.
    	working bool
    	// pendingUpdate is the updated state the pod worker should observe. It is
    	// cleared and moved to activeUpdate when a pod worker reads it. A new update
    	// may always replace a pending update as the pod worker does not guarantee
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue.go

    				// interprets Queue from the Pending plugin as queueImmediately.
    				// We can return immediately because queueImmediately is the highest priority.
    				return queueImmediately
    			}
    
    			// interprets Queue from the unschedulable plugin as queueAfterBackoff.
    
    			if pInfo.PendingPlugins.Len() == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  6. pkg/controller/replicaset/replica_set_test.go

    	labelMap := map[string]string{"name": "foo"}
    	rs := newReplicaSet(1, labelMap)
    	// an unscheduled, pending pod
    	unscheduledPendingPod := newPod("unscheduled-pending-pod", rs, v1.PodPending, nil, true)
    	// a scheduled, pending pod
    	scheduledPendingPod := newPod("scheduled-pending-pod", rs, v1.PodPending, nil, true)
    	scheduledPendingPod.Spec.NodeName = "fake-node"
    	// a scheduled, running, not-ready pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		return nil
    	}
    
    	logger := klog.FromContext(ctx)
    	pending := false
    	for index, claim := range state.claims {
    		if claim.Status.Allocation == nil &&
    			state.informationsForClaim[index].controller == nil {
    			pending = true
    			break
    		}
    	}
    	if !pending {
    		logger.V(5).Info("no pending claims with control plane controller", "pod", klog.KObj(pod))
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller.go

    			}
    
    			// Mark the claim as Pending and try to find a match in the next
    			// periodic syncClaim
    			if _, err = ctrl.updateClaimStatus(ctx, claim, v1.ClaimPending, nil); err != nil {
    				return err
    			}
    			return nil
    		} else /* pv != nil */ {
    			// Found a PV for this claim
    			// OBSERVATION: pvc is "Pending", pv is "Available"
    			claimKey := claimToClaimKey(claim)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    					Enum: []schema.JSON{
    						{Object: "Pending"},
    						{Object: "Available"},
    						{Object: "Bound"},
    						{Object: "Released"},
    						{Object: "Failed"},
    					},
    				},
    			}}),
    			expectCost: map[string]uint64{
    				"self.enumStr == 'Pending'":                3,
    				"self.enumStr in ['Pending', 'Available']": 14,
    			},
    		},
    		{name: "conversions",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  10. src/net/http/request.go

    	// TransferEncoding can usually be ignored; chunked encoding is
    	// automatically added and removed as necessary when sending and
    	// receiving requests.
    	TransferEncoding []string
    
    	// Close indicates whether to close the connection after
    	// replying to this request (for servers) or after sending this
    	// request and reading its response (for clients).
    	//
    	// For server requests, the HTTP server handles this automatically
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top