Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,932 for statx (0.05 sec)

  1. src/encoding/gob/encode.go

    				state.update(i)
    				// indirect through info to delay evaluation for recursive structs
    				enc := info.encoder.Load()
    				state.enc.encodeStruct(state.b, enc, sv)
    			}
    		case reflect.Interface:
    			op = func(i *encInstr, state *encoderState, iv reflect.Value) {
    				if !state.sendZero && (!iv.IsValid() || iv.IsNil()) {
    					return
    				}
    				state.update(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/provider_test.go

    	stats, err := provider.RootFsStats()
    	assert.NoError(err)
    
    	checkFsStats(t, "", rootFsInfoSeed, stats)
    
    	assert.Equal(metav1.NewTime(containerInfo.Stats[0].Timestamp), stats.Time)
    	assert.Equal(rootFsInfo.Usage, *stats.UsedBytes)
    	assert.Equal(*rootFsInfo.Inodes-*rootFsInfo.InodesFree, *stats.InodesUsed)
    }
    
    func TestHasDedicatedImageFs(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. cmd/notification.go

    		}(index)
    	}
    
    	wg.Wait()
    	merged := globalTransitionState.getDailyAllTierStats()
    	for i, stat := range lastDayStats {
    		if errs[i] != nil {
    			peersLogOnceIf(ctx, fmt.Errorf("failed to fetch last day tier stats: %w", errs[i]), sys.peerClients[i].host.String())
    			continue
    		}
    		merged.merge(stat)
    	}
    	return merged
    }
    
    // GetReplicationMRF - Get replication MRF from all peers.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

            state.notInState(State.Finished, modelController::getConfiguredModel);
        }
    
        @Override
        public <T> T withProjectsConfigured(Function<? super GradleInternal, T> action) {
            return state.notInState(State.Finished, () -> action.apply(modelController.getConfiguredModel()));
        }
    
        @Override
        public void resetModel() {
            state.restart(State.ReadyToReset, State.Configure, () -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/model/StateTransitionControllerTest.groovy

                    }
                }
    
            }
    
            then:
            def e = thrown(IllegalStateException)
            e.message == "Expected <state> to be in state A but is in state B."
        }
    
        def "can assert is in expected state or later state when in expected state"() {
            def controller = controller(TestState.A)
            asWorker {
                controller.transition(TestState.A, TestState.B) {}
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFuture.java

      private static final Logger log = Logger.getLogger(AbstractFuture.class.getName());
    
      private State state;
      private V value;
      private @Nullable Future<? extends V> delegate;
      private @Nullable Throwable throwable;
      private boolean mayInterruptIfRunning;
      private List<Listener> listeners;
    
      protected AbstractFuture() {
        state = State.PENDING;
        listeners = new ArrayList<Listener>();
      }
    
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 19:37:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/AbstractService.java

                  + this
                  + " to reach a terminal state. "
                  + "Current state: "
                  + state());
        }
      }
    
      /** Checks that the current state is equal to the expected state. */
      @GuardedBy("monitor")
      private void checkCurrentState(State expected) {
        State actual = state();
        if (actual != expected) {
          if (actual == FAILED) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeDependentBinariesResolutionStrategy.java

            State state = getState();
            return buildResolvedResult(target, state);
        }
    
        private State getState() {
            try {
                return stateCache.get("state", new Callable<State>() {
                    @Override
                    public State call() {
                        return buildState();
                    }
                });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/ExecuteActionsTaskExecuterTest.groovy

            task.hasTaskActions() >> false
    
            when:
            executer.execute(task, state, executionContext)
    
            then:
            noMoreInteractions()
    
            state.outcome == TaskExecutionOutcome.UP_TO_DATE
            !state.didWork
            !state.executing
            state.actionable
        }
    
        def executesEachActionInOrder() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/cpumanager/cpu_manager.go

    	reconcilePeriod time.Duration
    
    	// state allows pluggable CPU assignment policies while sharing a common
    	// representation of state for the system to inspect and reconcile.
    	state state.State
    
    	// lastUpdatedstate holds state for each container from the last time it was updated.
    	lastUpdateState state.State
    
    	// containerRuntime is the container runtime service interface needed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (0)
Back to top