Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,291 for statDep (0.17 sec)

  1. 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)
  2. pilot/pkg/request/command_test.go

    			if err := util.Compare(body, p.States[0].wantBody); err == nil {
    				w.WriteHeader(p.States[0].StatusCode)
    				w.Write([]byte(p.States[0].Response))
    			} else {
    				w.WriteHeader(http.StatusBadRequest)
    				w.Write([]byte(fmt.Sprintf("wanted body %q got %q", string(p.States[0].wantBody), string(body))))
    			}
    		} else {
    			w.WriteHeader(http.StatusBadRequest)
    			w.Write([]byte(fmt.Sprintf("wanted path %q got %q", p.States[0].wantPath, r.URL.Path)))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 19:11:01 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/metrics/metrics_test.go

    	// Check if getVolumeCount returns correct data
    	count := metricCollector.getVolumeCount()
    	if len(count) != 2 {
    		t.Errorf("getVolumeCount failed. Expected <2> states, got <%d>", len(count))
    	}
    
    	dswCount, ok := count["desired_state_of_world"]
    	if !ok {
    		t.Errorf("getVolumeCount failed. Expected <desired_state_of_world>, got nothing")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. cmd/peer-s3-server.go

    	globalLocalDrivesMu.RLock()
    	localDrives := cloneDrives(globalLocalDrives)
    	globalLocalDrivesMu.RUnlock()
    
    	// Initialize sync waitgroup.
    	g := errgroup.WithNErrs(len(localDrives))
    
    	// Disk states slices
    	beforeState := make([]string, len(localDrives))
    	afterState := make([]string, len(localDrives))
    
    	// Make a volume entry on all underlying storage disks.
    	for index := range localDrives {
    		index := index
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. src/html/template/context.go

    //
    // is a single token in HTML's grammar but in a template spans several nodes.
    type state uint8
    
    //go:generate stringer -type state
    
    const (
    	// stateText is parsed character data. An HTML parser is in
    	// this state when its parse position is outside an HTML tag,
    	// directive, comment, and special element body.
    	stateText state = iota
    	// stateTag occurs before an HTML attribute or the end of a tag.
    	stateTag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 9.4K 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. tensorflow/compiler/mlir/tensorflow/analysis/tf_dataflow.h

     public:
      using StateT = dataflow::Lattice<L>;
      using dataflow::SparseForwardDataFlowAnalysis<
          StateT>::SparseForwardDataFlowAnalysis;
      using dataflow::SparseForwardDataFlowAnalysis<StateT>::getLatticeElement;
      ~TensorflowDataflowAnalysis() override = default;
    
      bool ForwardThroughTFOperation(Operation *op,
                                     ArrayRef<const StateT *> operands,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 23:53:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. 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)
Back to top