Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for finalState (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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