Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 312 for statx (0.05 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		}
    	}
    
    	if len(unavailableClaims) > 0 {
    		state.mutex.Lock()
    		defer state.mutex.Unlock()
    		if state.unavailableClaims == nil {
    			state.unavailableClaims = sets.New[int]()
    		}
    
    		for _, index := range unavailableClaims {
    			claim := state.claims[index]
    			// Deallocation makes more sense for claims with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    		service          *testKMSv2EnvelopeService
    		state            envelopekmsv2.State
    		useSeed          bool
    		statusKeyID      string
    		wantState        envelopekmsv2.State
    		wantEncryptCalls int
    		wantLogs         []string
    		wantErr          string
    	}{
    		{
    			name:        "happy path, no previous state",
    			service:     &testKMSv2EnvelopeService{keyID: "1"},
    			state:       envelopekmsv2.State{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  3. cmd/bucket-stats_gen.go

    		}
    		switch msgp.UnsafeString(field) {
    		case "Stats":
    			var zb0002 uint32
    			zb0002, err = dc.ReadMapHeader()
    			if err != nil {
    				err = msgp.WrapError(err, "Stats")
    				return
    			}
    			if z.Stats == nil {
    				z.Stats = make(map[string]*BucketReplicationStat, zb0002)
    			} else if len(z.Stats) > 0 {
    				for key := range z.Stats {
    					delete(z.Stats, key)
    				}
    			}
    			for zb0002 > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    				nbytes := int64(npages * pageSize)
    				gcController.heapReleased.add(nbytes)
    				gcController.heapFree.add(-nbytes)
    
    				stats := memstats.heapStats.acquire()
    				atomic.Xaddint64(&stats.committed, -nbytes)
    				atomic.Xaddint64(&stats.released, nbytes)
    				memstats.heapStats.release()
    			}
    
    			// Relock the heap, because now we need to make these pages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    	if state := s.state.get(); 0 <= state && int(state) < len(mSpanStateNames) {
    		print(mSpanStateNames[state], "\n")
    	} else {
    		print("unknown(", state, ")\n")
    	}
    
    	skipped := false
    	size := s.elemsize
    	if s.state.get() == mSpanManual && size == 0 {
    		// We're printing something from a stack frame. We
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

         */
        @Override
        public void close() {
            noLongerMutable();
            if (state.compareAndSet(State.STARTED, State.CLOSED)) {
                CompositeStoppable.stoppable(allServices).stop();
            }
        }
    
        private void serviceRequested() {
            noLongerMutable();
            if (state.get() == State.CLOSED) {
                throw new IllegalStateException(String.format("%s has been closed.", getDisplayName()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/helpers.go

    // finally by memory usage above requests.
    func rankMemoryPressure(pods []*v1.Pod, stats statsFunc) {
    	orderedBy(exceedMemoryRequests(stats), priority, memory(stats)).Sort(pods)
    }
    
    // rankPIDPressure orders the input pods by priority in response to PID pressure.
    func rankPIDPressure(pods []*v1.Pod, stats statsFunc) {
    	orderedBy(priority, process(stats)).Sort(pods)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/upgrade/1.7.6-install.yaml.tar

    envoy.wasm.runtime.null code: local: inline_string: "envoy.wasm.stats" --- apiVersion: networking.istio.io/v1alpha3 kind: EnvoyFilter metadata: name: tcp-stats-filter-1.7-1-7-6 namespace: istio-system labels: istio.io/rev: 1-7-6 spec: configPatches: - applyTo: NETWORK_FILTER match: context: SIDECAR_INBOUND proxy: proxyVersion: '^1\.7.*' listener: filterChain: filter: name: "envoy.tcp_proxy" patch: operation: INSERT_BEFORE value: name: istio.stats typed_config: "@type": type.googleapis.com/udpa.type.v1.TypedStruct...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 60K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            _ * task.sharedResources >> (options.resources ?: [])
            _ * task.taskIdentity >> TestTaskIdentities.create(name, DefaultTask, project as ProjectInternal)
            TaskStateInternal state = Mock()
            _ * task.state >> state
            if (options.failure != null) {
                failure(task, options.failure)
            }
            return task
        }
    
        Node node(Map<String, ?> options = [:], String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/prepare-quantize-post-training.mlir

        %recurrent_input = arith.constant dense<1.0> : tensor<1x20xf32>
        %recurrent_stats = "quantfork.stats"(%recurrent_input) {layerStats = dense<[-2.0, 1.0]> : tensor<2xf32>} : (tensor<1x20xf32>) -> tensor<1x20xf32>
        %cell_input = arith.constant dense<1.0> : tensor<1x20xf32>
        %cell_stats = "quantfork.stats"(%cell_input) {layerStats = dense<[-2.73090601, 7.94872093]> : tensor<2xf32>} : (tensor<1x20xf32>) -> tensor<1x20xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 52.6K bytes
    - Viewed (0)
Back to top