Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 686 for statx (0.06 sec)

  1. src/cmd/go/internal/work/shell.go

    // context.Context.
    type Shell struct {
    	action       *Action // nil for the root shell
    	*shellShared         // per-Builder state shared across Shells
    }
    
    // shellShared is Shell state shared across all Shells derived from a single
    // root shell (generally a single Builder).
    type shellShared struct {
    	workDir string // $WORK, immutable
    
    	printLock sync.Mutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. cmd/erasure-healing.go

    		switch err {
    		case nil:
    			hr.Before.Drives[i] = madmin.HealDriveInfo{Endpoint: drive, State: madmin.DriveStateOk}
    			hr.After.Drives[i] = madmin.HealDriveInfo{Endpoint: drive, State: madmin.DriveStateOk}
    		case errDiskNotFound:
    			hr.Before.Drives[i] = madmin.HealDriveInfo{State: madmin.DriveStateOffline}
    			hr.After.Drives[i] = madmin.HealDriveInfo{State: madmin.DriveStateOffline}
    		case errVolumeNotFound, errFileNotFound:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  3. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestWorker.java

        private TestResultProcessor resultProcessor;
    
        /**
         * Note that the state object is not synchronized and not thread-safe.  Any modifications to the
         * the state should ONLY be made inside the main thread or inside a command passed to the run queue
         * (which will execute on the main thread).
         */
        private volatile State state = State.INITIALIZING;
    
        public TestWorker(WorkerTestClassProcessorFactory factory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            conf2.getDependencies().add(dependency2)
            conf3.getDependencies().add(dependency3)
    
            then:
            state.getConfiguration("child1").metadata.dependencies*.source == [dependency1, dependency2, dependency3]
            state.getConfiguration("child2").metadata.dependencies*.source == [dependency1]
            state.getConfiguration("other").metadata.dependencies.isEmpty()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. src/runtime/debug/garbage.go

    	// any conversion.
    	readGCStats(&stats.Pause)
    	n := len(stats.Pause) - 3
    	stats.LastGC = time.Unix(0, int64(stats.Pause[n]))
    	stats.NumGC = int64(stats.Pause[n+1])
    	stats.PauseTotal = stats.Pause[n+2]
    	n /= 2 // buffer holds pauses and end times
    	stats.Pause = stats.Pause[:n]
    
    	if cap(stats.PauseEnd) < maxPause {
    		stats.PauseEnd = make([]time.Time, 0, maxPause)
    	}
    	stats.PauseEnd = stats.PauseEnd[:0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

            if (current.parent == null) {
                throw new IllegalStateException("Not visiting any node.");
            }
            if (current.state == State.CollectValue) {
                current.state = State.Done;
                current = current.parent;
            }
            if (current.state != State.TraverseChildren) {
                throw new IllegalStateException("Cannot end children.");
            }
            if (current.isTopLevelNode()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

                // special case: discarding value without a convention restores the initial state
                state.implicitValue(getDefaultConvention());
                value = getDefaultValue();
            } else {
                // otherwise, the convention will become the new value
                value = state.implicitValue(state.convention());
            }
        }
    
        /**
         * Discards the convention of this property.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/helpers_test.go

    		name     string
    		state    int32
    		expected kubecontainer.State
    	}{
    		{
    			name:     "container created",
    			state:    0,
    			expected: kubecontainer.ContainerStateCreated,
    		},
    		{
    			name:     "container running",
    			state:    1,
    			expected: kubecontainer.ContainerStateRunning,
    		},
    		{
    			name:     "container exited",
    			state:    2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

        QuantState& state = GetOperandQuantState(op, i);
        if (state.immutable) {
          immutable_states.push_back(&state);
        } else if (!state.IsEmpty()) {
          mutable_states.push_back(&state);
        }
      }
    
      const int immutable_operands_num = immutable_states.size();
      const int mutable_operands_num = mutable_states.size();
      // Use the operand's state if it is immutable and it is the only one
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

                state = createComponentState(module, componentIdentifier);
                holder.cache(state, shouldCacheResolutionState());
            }
            return state;
        }
    
        private LocalComponentGraphResolveState createComponentState(Module module, ComponentIdentifier componentIdentifier) {
            ProjectComponentIdentifier projectId = module.getProjectId();
            if (projectId != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top