Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 862 for statx (0.1 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/EventFiringTaskExecuter.java

            return buildOperationRunner.call(new CallableBuildOperation<TaskExecuterResult>() {
                @Override
                public TaskExecuterResult call(BuildOperationContext operationContext) {
                    TaskExecuterResult result = executeTask(operationContext);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/sync/waitgroup.go

    	if race.Enabled {
    		race.Disable()
    	}
    	for {
    		state := wg.state.Load()
    		v := int32(state >> 32)
    		w := uint32(state)
    		if v == 0 {
    			// Counter is 0, no need to wait.
    			if race.Enabled {
    				race.Enable()
    				race.Acquire(unsafe.Pointer(wg))
    			}
    			return
    		}
    		// Increment waiters count.
    		if wg.state.CompareAndSwap(state, state+1) {
    			if race.Enabled && w == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/AbstractDaemonFixture.groovy

    import org.gradle.util.GradleVersion
    
    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State.Busy
    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State.Canceled
    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State.Idle
    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State.Stopped
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. internal/kms/conn.go

    		return "MinIO KMS"
    	case MinKES:
    		return "MinIO KES"
    	case Builtin:
    		return "MinIO builtin"
    	default:
    		return "!INVALID:" + strconv.Itoa(int(t))
    	}
    }
    
    // Status describes the current state of a KMS.
    type Status struct {
    	Online  map[string]struct{}
    	Offline map[string]Error
    }
    
    // DEK is a data encryption key. It consists of a
    // plaintext-ciphertext pair and the ID of the key
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. src/internal/chacha8rand/chacha8.go

    	})
    }
    
    // Init64 seeds the state with the given seed value.
    func (s *State) Init64(seed [4]uint64) {
    	s.seed = seed
    	block(&s.seed, &s.buf, 0)
    	s.c = 0
    	s.i = 0
    	s.n = chunk
    }
    
    // Refill refills the state with more random values.
    // After a call to Refill, an immediate call to Next will succeed
    // (unless multiple goroutines are incorrectly sharing a state).
    func (s *State) Refill() {
    	s.c += ctrInc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:47:29 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDebugLogIntegrationTest.groovy

            events.contains([profile: "build ':' state", type: "O", frame: "Gradle"])
            events.contains([profile: "build ':' state", type: "O", frame: "Work Graph"])
    
            and: "state frame events are logged"
            events.contains([profile: "build ':' state", type: "O", frame: ":ok"])
            events.contains([profile: "build ':' state", type: "C", frame: ":ok"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. architecture/README.md

    ## Build state model
    
    As Gradle executes, it acts on various pieces of the build definition, such as each project in the build.
    Gradle tracks the state of each piece and transitions each piece through its lifecycle as the build runs.
    
    A central part of the Gradle architecture is the "build state model", which holds the state for each piece and coordinates state transitions and other mutations. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_compilation_profiler.cc

        const NameAttrList& function,
        DeviceCompilationProfiler::ClusterCompileStats* stats) {
      ++stats->execution_count;
    
      // The is_megamorphic bit is "sticky".  We assume clusters that have been
      // observed to be megamorphic once stay megamorphic forever.
      if (!stats->is_megamorphic &&
          ShouldBeMegamorphic(stats->compile_count, stats->execution_count)) {
        VLOG(1) << "Marking " << function.name()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/TaskExecution.java

        private final String path;
        private TaskState state;
    
        public TaskExecution(String taskPath) {
            super(taskPath);
            this.path = taskPath;
        }
    
        /**
         * Gets the string task path.
         */
        public String getPath() {
            return path;
        }
    
        public String getStatus() {
            return state.getSkipped() ? state.getSkipMessage() : state.getDidWork() ? "" : NO_WORK_MESSAGE;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultPlanExecutorTest.groovy

            def gradle = Mock(Gradle)
            def project = Mock(Project)
            def node = Mock(LocalTaskNode)
            def task = Mock(TaskInternal)
            def state = Mock(TaskStateInternal)
            project.gradle >> gradle
            task.project >> project
            task.state >> state
    
            when:
            def result = executor.process(workSource, worker)
    
            then:
            result.failures.empty
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top