Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for SetState (0.38 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

                            setState(State.Idle);
                        } catch (Throwable throwable) {
                            setState(State.Broken);
                            throw UncheckedException.throwAsUncheckedException(throwable);
                        }
                        break;
                    case StopRequested:
                        setState(State.Idle);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

            return Collections.unmodifiableMap(environment);
        }
    
        @Override
        public ExecHandleState getState() {
            lock.lock();
            try {
                return state;
            } finally {
                lock.unlock();
            }
        }
    
        private void setState(ExecHandleState state) {
            lock.lock();
            try {
                LOGGER.debug("Changing state to: {}", state);
    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. subprojects/core/src/testFixtures/groovy/org/gradle/util/internal/MultithreadedTestRule.java

            private ThreadHandle blockingThread;
    
            public void expectBlocks(Closure action) {
                try {
                    setState(State.Idle, State.Blocking);
                    setBlockingThread(start(action));
                    setState(State.Blocking, State.Blocked);
                    waitForState(State.Unblocked, State.Failed);
                } catch (InterruptedException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/named.go

    		n.methods = methods
    		n.loader = nil
    	}
    
    	n.setState(complete)
    	return n
    }
    
    // state atomically accesses the current state of the receiver.
    func (n *Named) state() namedState {
    	return namedState(atomic.LoadUint32(&n.state_))
    }
    
    // setState atomically stores the given state for n.
    // Must only be called while holding n.mu.
    func (n *Named) setState(state namedState) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. src/go/types/named.go

    		n.methods = methods
    		n.loader = nil
    	}
    
    	n.setState(complete)
    	return n
    }
    
    // state atomically accesses the current state of the receiver.
    func (n *Named) state() namedState {
    	return namedState(atomic.LoadUint32(&n.state_))
    }
    
    // setState atomically stores the given state for n.
    // Must only be called while holding n.mu.
    func (n *Named) setState(state namedState) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileFilesFactory.java

                return fileSystemAccess.readRegularFileContentHash(sourceFile.getAbsolutePath())
                    .map(fileContent -> {
                        SourceFileState previousState = previous.getState(sourceFile);
    
                        if (previousState != null) {
                            // Already seen this source file before. See if we can reuse the analysis from last time
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

                            if (lenient != null) {
                                setState(lenient, ComponentGraphSpecificResolveState.EMPTY_STATE);
                                return true;
                            }
                        }
                    }
                }
            }
            return false;
        }
    
        public void setState(ComponentGraphResolveState state, ComponentGraphSpecificResolveState graphState) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ResolveState.java

            ComponentState rootComponent = rootModule.getVersion(moduleVersionId, componentId);
            rootComponent.setRoot();
            rootComponent.setState(rootComponentState, ComponentGraphSpecificResolveState.EMPTY_STATE);
            rootModule.select(rootComponent);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/rangefunc/rewrite.go

    		bodyFunc.Body.List = append(bodyFunc.Body.List, r.setState(abi.RF_PANIC, start))
    	}
    
    	// Original loop body (already rewritten by editStmt during inspect).
    	bodyFunc.Body.List = append(bodyFunc.Body.List, body...)
    
    	// end of loop body, set state to abi.RF_READY and return true to continue iteration
    	if r.checkFuncMisuse() {
    		bodyFunc.Body.List = append(bodyFunc.Body.List, r.setState(abi.RF_READY, end))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

                    .setScopes(Arrays.asList(getOicScope()))//
                    .setResponseTypes(Arrays.asList("code"))//
                    .setRedirectUri(getOicRedirectUrl())//
                    .setState(state)//
                    .build();
        }
    
        protected LoginCredential processCallback(final HttpServletRequest request, final String code) {
            try {
                final TokenResponse tr = getTokenUrl(code);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top