Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for finalState (0.16 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/DefaultIncrementalCompilation.java

        private final CompilationState finalState;
        private final List<File> recompile;
        private final List<File> removed;
        private final Set<File> existingHeaders;
        private final boolean macroIncludesUsedInSources;
    
        public DefaultIncrementalCompilation(CompilationState finalState, List<File> recompile, List<File> removed, Set<File> existingHeaders, boolean macroIncludesUsedInSources) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureBenchmarks.java

           * successfully changed and the result is available.
           */
          @Override
          protected boolean tryReleaseShared(int finalState) {
            setState(finalState);
            return true;
          }
    
          /**
           * Blocks until the task is complete or the timeout expires. Throws a {@link TimeoutException}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/AbstractFutureBenchmarks.java

           * successfully changed and the result is available.
           */
          @Override
          protected boolean tryReleaseShared(int finalState) {
            setState(finalState);
            return true;
          }
    
          /**
           * Blocks until the task is complete or the timeout expires. Throws a {@link TimeoutException}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 09 15:17:25 UTC 2018
    - 13.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueState.java

        public abstract boolean shouldFinalize(Describable displayName, @Nullable ModelObject producer);
    
        /**
         * Returns the state to replace this state once is finalized.
         */
        public abstract ValueState<S> finalState();
    
        /**
         * Sets a new convention value, replacing the existing one if set.
         *
         * @param convention the new convention value
         */
        public abstract void setConvention(S convention);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileProcessorTest.groovy

            modifiedFiles.clear()
            true
        }
    
        def getState() {
            def incrementalState = incrementalCompileProcessor.processSourceFiles(sourceFiles)
            stateCache.set(incrementalState.finalState)
            return incrementalState
        }
    
        def sourceFile(def name) {
            tmpDir.createFile(name) << name
        }
    
        class DummyObjectHolder implements ObjectHolder<CompilationState> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:31:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

                } else {
                    throw UncheckedException.throwAsUncheckedException(e);
                }
            }
            state = state.finalState();
        }
    
        /**
         * Returns the current value of this property, if explicitly defined, otherwise the given default. Does not apply the convention.
         */
        protected S getExplicitValue(S defaultValue) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollection.java

                finalizeNow();
            }
        }
    
        private void finalizeNow() {
            calculateFinalizedValue();
            valueState = valueState.finalState();
        }
    
        public boolean isFinalizing() {
            return valueState.isFinalizing();
        }
    
        @Override
        public void disallowChanges() {
            valueState.disallowChanges();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. src/internal/trace/summary.go

    func (g *GoroutineSummary) finalize(lastTs Time, trigger *Event) {
    	if trigger != nil {
    		g.EndTime = trigger.Time()
    	}
    	finalStat := g.snapshotStat(lastTs)
    
    	g.GoroutineExecStats = finalStat
    
    	// System goroutines are never part of regions, even though they
    	// "inherit" a task due to creation (EvGoCreate) from within a region.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top