Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for newState (0.25 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

            var reportFile: File?
            modifyState {
                val (newState, outputFile) = commitReportTo(outputDirectory, buildDisplayName, cacheAction, requestedTasks, totalProblemCount)
                reportFile = outputFile
                newState
            }
            return reportFile
        }
    
        private
        inline fun modifyState(f: State.() -> State) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

                }
            }
    
            lock.lock();
            try {
                setState(newState);
                this.execResult = newResult;
            } finally {
                lock.unlock();
            }
    
            LOGGER.debug("Process '{}' finished with exit value {} (state: {})", displayName, exitValue, newState);
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/flow-services/src/main/kotlin/org/gradle/internal/flow/services/BuildFlowScope.kt

            )
        }
    
        private
        val specInstantiator by lazy {
            instantiatorFactory.decorateLenient()
        }
    
        fun store(): Any {
            val (memento, newState) = state.store()
            state = newState
            return memento
        }
    
        fun load(memento: Any) {
            state = state.load(memento)
        }
    
        override fun buildFinished(result: BuildResult) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileFilesFactory.java

                        result.collectFilesInto(includedFiles, new HashSet<File>());
                        SourceFileState newState = new SourceFileState(fileContent, result.result == IncludeFileResolutionResult.UnresolvedMacroIncludes, ImmutableSet.copyOf(includedFiles));
                        current.setState(sourceFile, newState);
                        if (newState.isHasUnresolved()) {
                            hasUnresolvedHeaders = true;
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/DefaultResourceLockCoordinationService.java

            if (currentOwner == null) {
                currentOwner = Thread.currentThread();
            } else if (currentOwner != Thread.currentThread()) {
                throw new IllegalStateException("Another thread holds the state lock.");
            }
            DefaultResourceLockState previousState = currentState;
            this.currentState = newState;
            return previousState;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 17:16:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/script/state.go

    	stderr  string            // standard error from last 'go' command; for 'stderr' command
    
    	background []backgroundCmd
    }
    
    type backgroundCmd struct {
    	*command
    	wait WaitFunc
    }
    
    // NewState returns a new State permanently associated with ctx, with its
    // initial working directory in workdir and its initial environment set to
    // initialEnv (or os.Environ(), if initialEnv is nil).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		for k, v := range nc.zoneStates {
    			newState := newZoneStates[k]
    			if v == newState {
    				continue
    			}
    			logger.Info("Controller detected that zone is now in new state", "zone", k, "newState", newState)
    			nc.setLimiterInZone(k, len(zoneToNodeConditions[k]), newState)
    			nc.zoneStates[k] = newState
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  8. internal/grid/connection.go

    	defer cancel()
    	changed := make(chan State, 1)
    	go func() {
    		defer xioutil.SafeClose(changed)
    		for {
    			c.connChange.Wait()
    			newState := c.State()
    			select {
    			case changed <- newState:
    				if newState == StateConnected || newState == StateShutdown {
    					c.connChange.L.Unlock()
    					return
    				}
    			case <-ctx.Done():
    				c.connChange.L.Unlock()
    				return
    			}
    		}
    	}()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueState.java

    public abstract class ValueState<S> {
        private static final ValueState<Object> FINALIZED_VALUE = new FinalizedValue<>();
    
        /**
         * Creates a new non-finalized state.
         */
        public static <S> ValueState<S> newState(PropertyHost host) {
            return new ValueState.NonFinalizedValue<>(host, Function.identity());
        }
    
        /**
         * Creates a new non-finalized state.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    	// other values as these are modified.
    	newState := baseState
    	if updating {
    		newState = blockLocs[b.ID].startState
    	}
    
    	for it := newState.Iterator(); !it.Done(); {
    		k, d := it.Next()
    		thisSlot := d.(*liveSlot)
    		x := thisSlot.VarLoc
    		x0 := x // initial value in newState
    
    		// Intersect this slot with the slot in all the predecessors
    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