Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,470 for statx (0.09 sec)

  1. pkg/kubelet/cm/qos_container_manager_linux.go

    	}
    	m.getNodeAllocatable = getNodeAllocatable
    	m.activePods = activePods
    
    	// update qos cgroup tiers on startup and in periodic intervals
    	// to ensure desired state is in sync with actual state.
    	go wait.Until(func() {
    		err := m.UpdateCgroups()
    		if err != nil {
    			klog.InfoS("Failed to reserve QoS requests", "err", err)
    		}
    	}, periodicQOSCgroupUpdateInterval, wait.NeverStop)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/testing/fstest/testfs.go

    			t.errorf("%s: mismatch:\n\tentry.Info() = %s\n\tfile.Stat() = %s\n", path, feinfo, finfo)
    		}
    	}
    
    	// Stat should be the same as Open+Stat, even for symlinks.
    	info2, err := fs.Stat(t.fsys, path)
    	if err != nil {
    		t.errorf("%s: fs.Stat: %w", path, err)
    		return
    	}
    	finfo2 := formatInfo(info2)
    	if finfo2 != finfo {
    		t.errorf("%s: fs.Stat(...) = %s\n\twant %s", path, finfo2, finfo)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. internal/grid/grid_test.go

    		runtime.Gosched()
    		stats := c.Stats()
    		if stats.IncomingStreams != 0 {
    			if i > 0 {
    				time.Sleep(100 * time.Millisecond)
    				continue
    			}
    			var found []uint64
    			c.inStream.Range(func(key uint64, value *muxServer) bool {
    				found = append(found, key)
    				return true
    			})
    			t.Errorf("expected no active streams, got %d incoming: %v", stats.IncomingStreams, found)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/InputTrackingStateTest.kt

            assertFalse(state.isEnabledForCurrentThread())
    
            state.restoreForCurrentThread() // Revert call at <1>, restore to "enabled" state
            assertTrue(state.isEnabledForCurrentThread())
        }
    
        @Test
        fun `disable and restore calls can be mixed non-trivially`() {
            val state = InputTrackingState()
            state.disableForCurrentThread() // <1>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		RestartCount:        annotatedInfo.RestartCount,
    		State:               toKubeContainerState(status.State),
    		CreatedAt:           time.Unix(0, status.CreatedAt),
    		Resources:           cStatusResources,
    		User:                cStatusUser,
    	}
    
    	if status.State != runtimeapi.ContainerState_CONTAINER_CREATED {
    		// If container is not in the created state, we have tried and
    		// started the container. Set the StartedAt time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    		return
    	}
    	c.file.register(c)
    
    	state := c.state.load()
    	for ; ; state = c.state.load() {
    		switch {
    		case !state.locked() && state.havePtr():
    			if !c.state.update(&state, state.incReader()) {
    				continue
    			}
    			// Counter unlocked or counter shared; has an initialized count pointer; acquired shared lock.
    			if c.ptr.count == nil {
    				for !c.state.update(&state, state.addExtra(uint64(n))) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

            }
    
            object Closed : State() {
                override fun close(): State = this
            }
        }
    
        private
        val isStacktraceHashes = internalOptions.getOption(stacktraceHashes).get()
    
        private
        var state: State = State.Idle { kind, problem ->
            State.Spooling(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

        }
    
        @Override
        public void requestStop(String reason) {
            lock.lock();
            try {
                if (state != State.StopRequested && state != State.Stopped && state != State.ForceStopped) {
                    LOGGER.lifecycle(DAEMON_WILL_STOP_MESSAGE + reason);
                    if (state == State.Busy) {
                        LOGGER.debug("Stop as soon as idle requested. The daemon is busy");
                        beginStopping();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. pkg/kubelet/status/status_manager_test.go

    		t.Helper()
    		if state.Terminated == nil || state.Running != nil || state.Waiting != nil {
    			t.Fatalf("unexpected state: %#v", state)
    		}
    		if state.Terminated.ExitCode != exitCode {
    			t.Fatalf("unexpected terminated state: %#v", state.Terminated)
    		}
    	}
    	expectWaiting := func(t *testing.T, state v1.ContainerState) {
    		t.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  10. 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)
Back to top