Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 4,605 for statx (0.06 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/AbstractExecutionThreadServiceTest.java

        assertEquals(Service.State.RUNNING, service.state());
    
        exitRun.countDown(); // the service will exit voluntarily
        executionThread.join();
    
        assertTrue(service.shutDownCalled);
        assertEquals(Service.State.TERMINATED, service.state());
    
        service.stopAsync().awaitTerminated(); // no-op
        assertEquals(Service.State.TERMINATED, service.state());
        assertTrue(service.shutDownCalled);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/configuration/project/LifecycleProjectEvaluator.java

                    try {
                        state.toBeforeEvaluate();
                        buildOperationRunner.run(new NotifyBeforeEvaluate(project, state));
    
                        if (!state.hasFailure()) {
                            state.toEvaluate();
                            try {
                                delegate.evaluate(project, state);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    			state.varSlots[i] = state.varSlots[i][:0]
    		}
    	}
    	if cap(state.slotVars) < len(state.slots) {
    		state.slotVars = make([]VarID, len(state.slots))
    	} else {
    		state.slotVars = state.slotVars[:len(state.slots)]
    	}
    
    	if state.partsByVarOffset == nil {
    		state.partsByVarOffset = &partsByVarOffset{}
    	}
    	for varID, n := range state.vars {
    		parts := state.varParts[n]
    		state.varSlots[varID] = parts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. 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)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachedMetadataProviderTest.groovy

            given:
            cachedResult.state >> state
            provider = new CachedMetadataProvider(cachedResult)
    
            expect:
            !provider.usable
            !provider.componentMetadata
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. 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)
  7. pkg/kubelet/cm/memorymanager/policy_static_test.go

    			},
    			expectedError: fmt.Errorf("[memorymanager] machine state can not be empty when it has memory assignments"),
    		},
    		{
    			description:         "should fill the state with default values, when the state is empty",
    			expectedAssignments: state.ContainerMemoryAssignments{},
    			expectedMachineState: state.NUMANodeMap{
    				0: &state.NUMANodeState{
    					MemoryMap: map[v1.ResourceName]*state.MemoryTable{
    						v1.ResourceMemory: {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/term/term.go

    package term
    
    // State contains the state of a terminal.
    type State struct {
    	state
    }
    
    // IsTerminal returns whether the given file descriptor is a terminal.
    func IsTerminal(fd int) bool {
    	return isTerminal(fd)
    }
    
    // MakeRaw puts the terminal connected to the given file descriptor into raw
    // mode and returns the previous state of the terminal so that it can be
    // restored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/AbstractIdleServiceTest.java

          startUpCalled++;
          assertEquals(State.STARTING, state());
        }
    
        @Override
        protected void shutDown() throws Exception {
          assertEquals(1, startUpCalled);
          assertEquals(0, shutDownCalled);
          shutDownCalled++;
          assertEquals(State.STOPPING, state());
        }
    
        @Override
        protected Executor executor() {
          transitionStates.add(state());
          return directExecutor();
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/cache/CacheStatsTest.java

      public void testEmpty() {
        CacheStats stats = new CacheStats(0, 0, 0, 0, 0, 0);
        assertEquals(0, stats.requestCount());
        assertEquals(0, stats.hitCount());
        assertEquals(1.0, stats.hitRate());
        assertEquals(0, stats.missCount());
        assertEquals(0.0, stats.missRate());
        assertEquals(0, stats.loadSuccessCount());
        assertEquals(0, stats.loadExceptionCount());
        assertEquals(0.0, stats.loadExceptionRate());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 30 14:58:49 UTC 2019
    - 4.6K bytes
    - Viewed (0)
Back to top