Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 158 for statx (0.05 sec)

  1. src/internal/trace/order.go

    	var sb strings.Builder
    	for id, state := range order.gStates {
    		fmt.Fprintf(&sb, "G %d [status=%s seq=%s]\n", id, state.status, state.seq)
    	}
    	fmt.Fprintln(&sb)
    	for id, state := range order.pStates {
    		fmt.Fprintf(&sb, "P %d [status=%s seq=%s]\n", id, state.status, state.seq)
    	}
    	fmt.Fprintln(&sb)
    	for id, state := range order.mStates {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    		{pod: pod, container: &init1, attempt: 3, createdAt: 3, state: runtimeapi.ContainerState_CONTAINER_EXITED},
    		{pod: pod, container: &init1, attempt: 2, createdAt: 2, state: runtimeapi.ContainerState_CONTAINER_EXITED},
    		{pod: pod, container: &init2, attempt: 1, createdAt: 1, state: runtimeapi.ContainerState_CONTAINER_EXITED},
    		{pod: pod, container: &init1, attempt: 1, createdAt: 1, state: runtimeapi.ContainerState_CONTAINER_UNKNOWN},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/crypto/tls/handshake_server_test.go

    	}
    	clientConfig := &Config{
    		InsecureSkipVerify: true,
    		MinVersion:         VersionTLS12,
    	}
    	state, _, err := testHandshake(t, clientConfig, serverConfig)
    	if err != nil {
    		t.Fatalf("handshake failed: %s", err)
    	}
    	if state.Version != VersionTLS13 {
    		t.Fatalf("incorrect version %x, should be %x", state.Version, VersionTLS11)
    	}
    
    	clientConfig.MinVersion = 0
    	serverConfig.MaxVersion = VersionTLS11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. src/os/os_test.go

    	// Create new temporary directory and arrange to clean it up.
    	path := t.TempDir()
    
    	// Stat of path should succeed.
    	if _, err := Stat(path); err != nil {
    		t.Fatalf("stat %s failed: %s", path, err)
    	}
    
    	// Stat of path+"/" should succeed too.
    	path += "/"
    	if _, err := Stat(path); err != nil {
    		t.Fatalf("stat %s failed: %s", path, err)
    	}
    }
    
    func TestNilProcessStateString(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top