Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,029 for statDep (0.12 sec)

  1. src/runtime/preempt.go

    		}
    	}
    }
    
    // resumeG undoes the effects of suspendG, allowing the suspended
    // goroutine to continue from its current safe-point.
    func resumeG(state suspendGState) {
    	if state.dead {
    		// We didn't actually stop anything.
    		return
    	}
    
    	gp := state.g
    	switch s := readgstatus(gp); s {
    	default:
    		dumpgstatus(gp)
    		throw("unexpected g status")
    
    	case _Grunnable | _Gscan,
    		_Gwaiting | _Gscan,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. pkg/kubelet/pleg/generic.go

    	// Default to the non-existent state.
    	state := plegContainerNonExistent
    	if pod == nil {
    		return state
    	}
    	c := pod.FindContainerByID(*cid)
    	if c != nil {
    		return convertState(c.State)
    	}
    	// Search through sandboxes too.
    	c = pod.FindSandboxByID(*cid)
    	if c != nil {
    		return convertState(c.State)
    	}
    
    	return state
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

        public ModelNode atState(ModelPath path, ModelNode.State state) {
            return atStateOrMaybeLater(path, state, false);
        }
    
        @Override
        public ModelNode atStateOrLater(ModelPath path, ModelNode.State state) {
            return atStateOrMaybeLater(path, state, true);
        }
    
        @Override
        public <T> T atStateOrLater(ModelPath path, ModelType<T> type, ModelNode.State state) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    			input: &runtimeapi.ContainerStatus{
    				Id:        cid.ID,
    				Metadata:  meta,
    				Image:     imageSpec,
    				State:     runtimeapi.ContainerState_CONTAINER_CREATED,
    				CreatedAt: createdAt,
    			},
    			expected: &kubecontainer.Status{
    				ID:        *cid,
    				Image:     imageSpec.Image,
    				State:     kubecontainer.ContainerStateCreated,
    				CreatedAt: time.Unix(0, createdAt),
    			},
    		},
    		"running container": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    		// it immediately from volume manager. Instead, check the kubelet
    		// pod state provider to verify that all containers in the pod have been
    		// terminated.
    		if !dswp.podStateProvider.ShouldPodRuntimeBeRemoved(volumeToMount.Pod.UID) {
    			klog.V(4).InfoS("Pod still has one or more containers in the non-exited state and will not be removed from desired state", "pod", klog.KObj(volumeToMount.Pod))
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  6. docs/bucket/replication/DESIGN.md

    the source object version, such as metadata updates via PutObjectTagging, PutObjectRetention, PutObjectLegalHold and COPY api are replicated in a similar manner to target version, with the `X-Amz-Replication-Status` again cycling through the same states.
    
    The description above details one way replication from source to target w.r.t incoming object uploads and metadata changes to source object version. If active-active replication is configured, any incoming uploads and metadata changes to...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  7. src/crypto/sha256/sha256_test.go

    				h2 := tt.newHash()
    
    				io.WriteString(h, g.in[:len(g.in)/2])
    
    				state, err := h.(encoding.BinaryMarshaler).MarshalBinary()
    				if err != nil {
    					t.Errorf("could not marshal: %v", err)
    					continue
    				}
    
    				if string(state) != g.halfState {
    					t.Errorf("sha%s(%q) state = %q, want %q", tt.name, g.in, state, g.halfState)
    					continue
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:21:42 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  8. pkg/kubelet/pleg/generic_test.go

    	for len(ch) > 0 {
    		e := <-ch
    		events = append(events, e)
    	}
    	return events
    }
    
    func createTestContainer(ID string, state kubecontainer.State) *kubecontainer.Container {
    	return &kubecontainer.Container{
    		ID:    kubecontainer.ContainerID{Type: testContainerRuntimeType, ID: ID},
    		State: state,
    	}
    }
    
    type sortableEvents []*PodLifecycleEvent
    
    func (a sortableEvents) Len() int      { return len(a) }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. licenses/github.com/containerd/typeurl/v2/LICENSE

          for any such Derivative Works as a whole, provided Your use,
          reproduction, and distribution of the Work otherwise complies with
          the conditions stated in this License.
    
       5. Submission of Contributions. Unless You explicitly state otherwise,
          any Contribution intentionally submitted for inclusion in the Work
          by You to the Licensor shall be under the terms and conditions of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 18:16:35 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. LICENSES/vendor/github.com/opencontainers/runtime-spec/LICENSE

          for any such Derivative Works as a whole, provided Your use,
          reproduction, and distribution of the Work otherwise complies with
          the conditions stated in this License.
    
       5. Submission of Contributions. Unless You explicitly state otherwise,
          any Contribution intentionally submitted for inclusion in the Work
          by You to the Licensor shall be under the terms and conditions of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 10.7K bytes
    - Viewed (0)
Back to top