Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,357 for statx (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    }
    
    func copyStat(stat *Stat_t, statLE *Stat_LE_t) {
    	stat.Dev = uint64(statLE.Dev)
    	stat.Ino = uint64(statLE.Ino)
    	stat.Nlink = uint64(statLE.Nlink)
    	stat.Mode = uint32(statLE.Mode)
    	stat.Uid = uint32(statLE.Uid)
    	stat.Gid = uint32(statLE.Gid)
    	stat.Rdev = uint64(statLE.Rdev)
    	stat.Size = statLE.Size
    	stat.Atim.Sec = int64(statLE.Atim)
    	stat.Atim.Nsec = 0 //zos doesn't return nanoseconds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top