Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 123 for stateFa (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

            lock.lock();
            try {
                return state;
            } finally {
                lock.unlock();
            }
        }
    
        private void setState(ExecHandleState state) {
            lock.lock();
            try {
                LOGGER.debug("Changing state to: {}", state);
                this.state = state;
                this.stateChanged.signalAll();
            } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/grpcgen/grpcgen_test.go

    // is to store the state received from the resolver locally and signal that
    // event through a channel.
    type testClientConn struct {
    	resolver.ClientConn
    	stateCh chan resolver.State
    	errorCh chan error
    }
    
    func (t *testClientConn) UpdateState(s resolver.State) error {
    	t.stateCh <- s
    	return nil
    }
    
    func (t *testClientConn) ReportError(err error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/quantization_context.h

        // `as_result` is true or index-th operand if `as_result` is false. The
        // state is immutable if the type is a quantized type. Returns the index of
        // this new state in the state vector.
        int InitializeState(quantfork::QuantizeRegionOp op, int index,
                            bool as_result);
    
        // Sets the state of the index-th operand of the op. If this operand is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/go/internal/gcimporter/gcimporter.go

    			fmt.Printf("%s -> %s\n", path, id)
    		}
    	}
    
    	// try extensions
    	for _, ext := range pkgExts {
    		filename = noext + ext
    		f, statErr := os.Stat(filename)
    		if statErr == nil && !f.IsDir() {
    			return filename, id, nil
    		}
    		if err == nil {
    			err = statErr
    		}
    	}
    
    notfound:
    	if err == nil {
    		return "", path, fmt.Errorf("can't find import: %q", path)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/fuzz/FuzzReader/invalid-proc-state

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 221 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/rangefunc/rewrite.go

    becomes
    
    	{
    		var #next int
    		var #state1 = abi.RF_READY
    		f(func() { // 1,2
    			if #state1 != abi.RF_READY { runtime.panicrangestate(#state1) }
    			#state1 = abi.RF_PANIC
    			var #state2 = abi.RF_READY
    			g(func() { // 3,4
    				if #state2 != abi.RF_READY { runtime.panicrangestate(#state2) }
    				#state2 = abi.RF_PANIC
    				var #state3 = abi.RF_READY
    				h(func() { // 5,6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

      // result without creating new entry in the state vector. Otherwise, allocate
      // a new entry in the state vector.
      void InitializeArgState(BlockArgument arg, Value arg_value);
    
      // Sets the state of the index-th operand of the op. If this operand is
      // cached, uses the cached result without creating new entry in the state
      // vector. Otherwise, allocate a new entry in the state vector.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  8. src/crypto/sha256/sha256block_amd64.s

    	VMOVDQU		(0*16)(digestPtr), state0	// load initial hash values and reorder
    	VMOVDQU		(1*16)(digestPtr), state1	// DCBA, HGFE -> ABEF, CDGH
    	PSHUFD		$0xb1, state0, state0		// CDAB
    	PSHUFD		$0x1b, state1, state1		// EFGH
    	VMOVDQA		state0, m4
    	PALIGNR		$8, state1, state0		// ABEF
    	PBLENDW		$0xf0, m4, state1		// CDGH
    	VMOVDQA		flip_mask<>(SB), shufMask
    	LEAQ		K256<>(SB), sha256Constants
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

            if (stateMap == null) {
                stateMap = new HashMap<>();
                session.setAttribute(STATES, stateMap);
            }
            final StateData stateData = new StateData(nonce, ComponentUtil.getSystemHelper().getCurrentTimeAsLong());
            if (logger.isDebugEnabled()) {
                logger.debug("store {} in session", stateData);
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/Graph.java

        private static List<String> visitAll(
                Collection<Vertex> children, Map<Vertex, DfsState> stateMap, List<String> list) {
            for (Vertex v : children) {
                DfsState state = stateMap.putIfAbsent(v, DfsState.VISITING);
                if (state == null) {
                    visitAll(v.children, stateMap, list);
                    stateMap.put(v, DfsState.VISITED);
                    list.add(v.label);
                }
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top