Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 228 for statx (0.11 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    		{pod: pod, container: &init1, attempt: 3, createdAt: 3, state: runtimeapi.ContainerState_CONTAINER_EXITED},
    		{pod: pod, container: &init1, attempt: 2, createdAt: 2, state: runtimeapi.ContainerState_CONTAINER_EXITED},
    		{pod: pod, container: &init2, attempt: 1, createdAt: 1, state: runtimeapi.ContainerState_CONTAINER_EXITED},
    		{pod: pod, container: &init1, attempt: 1, createdAt: 1, state: runtimeapi.ContainerState_CONTAINER_UNKNOWN},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  2. src/runtime/coro.go

    	//
    	// The rules with thread-lock interactions are simple. When a coro goroutine is switched to,
    	// the same thread must be used, and the locked state must match with the thread-lock state of
    	// the goroutine which called newcoro. Thread-lock state consists of the thread and the number
    	// of internal (cgo callback, etc.) and external (LockOSThread) thread locks.
    	locked := gp.lockedm != 0
    	if c.mp != nil || locked {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheHost.kt

            gradle.services.getFactory(serviceType)
    
        private
        class DefaultVintageGradleBuild(override val state: BuildState) : VintageGradleBuild {
            override val isRootBuild: Boolean
                get() = state is RootBuildState
    
            override val gradle: GradleInternal
                get() = state.mutableModel
    
            override val hasScheduledWork: Boolean
                get() = gradle.taskGraph.size() > 0
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    }
    func (s *state) constNil(t *types.Type) *ssa.Value { return s.f.ConstNil(t) }
    func (s *state) constEmptyString(t *types.Type) *ssa.Value {
    	return s.f.ConstEmptyString(t)
    }
    func (s *state) constBool(c bool) *ssa.Value {
    	return s.f.ConstBool(types.Types[types.TBOOL], c)
    }
    func (s *state) constInt8(t *types.Type, c int8) *ssa.Value {
    	return s.f.ConstInt8(t, c)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/IsolatedCodecs.kt

            writeSmallInt(value.factoryId)
            write(value.state)
        }
    
        override suspend fun ReadContext.decode(): IsolatedManagedValue {
            val targetType = readClass()
            val factoryId = readSmallInt()
            val state = readNonNull<Isolatable<Any>>()
            return IsolatedManagedValue(targetType, managedFactory.lookup(factoryId), state)
        }
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InputTrackingState.kt

            ++inputTrackingDisabledCounterForThread
        }
    
        /**
         * Restores the input tracking state to the state it was in before the last call to
         * [disableForCurrentThread].
         */
        fun restoreForCurrentThread() {
            Preconditions.checkState(inputTrackingDisabledCounterForThread > 0, "Restore input tracking state without prior disable is detected")
            --inputTrackingDisabledCounterForThread
        }
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheStartParameter.kt

         * This is because the builders are executed after the tasks (if any) in a build action,
         * and these builders may access project state as well as the task state.
         * Doing load-after-store would have discarded the project state and isolated the task state,
         * providing the builders with an incomplete view of the build.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

        }
    
        public boolean isSelected() {
            return state == ComponentSelectionState.Selected;
        }
    
        public boolean isCandidateForConflictResolution() {
            return state.isCandidateForConflictResolution();
        }
    
        void evict() {
            state = ComponentSelectionState.Evicted;
        }
    
        void select() {
            state = ComponentSelectionState.Selected;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    		}
    		switch {
    		case cs.State == kubecontainer.ContainerStateRunning:
    			status.State.Running = &v1.ContainerStateRunning{StartedAt: metav1.NewTime(cs.StartedAt)}
    		case cs.State == kubecontainer.ContainerStateCreated:
    			// containers that are created but not running are "waiting to be running"
    			status.State.Waiting = &v1.ContainerStateWaiting{}
    		case cs.State == kubecontainer.ContainerStateExited:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/stream_executor/stream_executor.cc

        }
        ::stream_executor::AllocatorStats stats;
        stats.num_allocs = c_stats.num_allocs;
        stats.bytes_in_use = c_stats.bytes_in_use;
        stats.peak_bytes_in_use = c_stats.peak_bytes_in_use;
        stats.largest_alloc_size = c_stats.largest_alloc_size;
        if (c_stats.has_bytes_limit) {
          stats.bytes_limit = c_stats.bytes_limit;
        }
        stats.bytes_reserved = c_stats.bytes_reserved;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top