Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 800 for states (0.16 sec)

  1. guava/src/com/google/common/cache/ReferenceEntry.java

    import com.google.common.cache.LocalCache.ValueReference;
    import javax.annotation.CheckForNull;
    
    /**
     * An entry in a reference map.
     *
     * <p>Entries in the map can be in the following states:
     *
     * <p>Valid:
     *
     * <ul>
     *   <li>Live: valid key/value are set
     *   <li>Loading: loading is pending
     * </ul>
     *
     * <p>Invalid:
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  2. src/os/dir_darwin.go

    		}
    		if entptr == nil { // EOF
    			break
    		}
    		// Darwin may return a zero inode when a directory entry has been
    		// deleted but not yet removed from the directory. The man page for
    		// getdirentries(2) states that programs are responsible for skipping
    		// those entries:
    		//
    		//   Users of getdirentries() should skip entries with d_fileno = 0,
    		//   as such entries represent files which have been deleted but not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/ReferenceEntry.java

    import com.google.common.cache.LocalCache.ValueReference;
    import javax.annotation.CheckForNull;
    
    /**
     * An entry in a reference map.
     *
     * <p>Entries in the map can be in the following states:
     *
     * <p>Valid:
     *
     * <ul>
     *   <li>Live: valid key/value are set
     *   <li>Loading: loading is pending
     * </ul>
     *
     * <p>Invalid:
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  4. src/internal/trace/resources.go

    func (d StateTransition) Goroutine() (from, to GoState) {
    	if d.Resource.Kind != ResourceGoroutine {
    		panic("Goroutine called on non-Goroutine state transition")
    	}
    	return GoState(d.oldState), GoState(d.newState)
    }
    
    // Proc returns the state transition for a proc.
    //
    // Transitions to and from states that are Executing are special in that
    // they change the future execution context. In other words, future events
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. src/internal/zstd/block.go

    	}
    	panic("unreachable")
    }
    
    // execSeqs reads and executes the sequences. RFC 3.1.1.3.2.1.2.
    func (r *Reader) execSeqs(data block, off int, litbuf []byte, seqCount int) error {
    	// Set up the initial states for the sequence code readers.
    
    	rbr, err := r.makeReverseBitReader(data, len(data)-1, off)
    	if err != nil {
    		return err
    	}
    
    	literalState, err := rbr.val(r.seqTableBits[seqLiteral])
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 17:57:43 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

                for (ChainState state : toProcess) {
                    // The set of transforms which could potentially produce a variant compatible with `requested`.
                    ImmutableFilteredList<TransformRegistration> candidates =
                        state.transforms.matching(transform -> matcher.isMatching(transform.getTo(), state.requested));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/metrics/metrics_test.go

    	// Check if getVolumeCount returns correct data
    	count := metricCollector.getVolumeCount()
    	if len(count) != 2 {
    		t.Errorf("getVolumeCount failed. Expected <2> states, got <%d>", len(count))
    	}
    
    	dswCount, ok := count["desired_state_of_world"]
    	if !ok {
    		t.Errorf("getVolumeCount failed. Expected <desired_state_of_world>, got nothing")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. 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)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/ready.go

    	r.lock.RLock()
    	defer r.lock.RUnlock()
    	return r.generation, r.state == Ready
    }
    
    // set the state to Pending (false) or Ready (true), it does not have effect if the state is Stopped.
    func (r *ready) set(ok bool) {
    	r.lock.Lock()
    	defer r.lock.Unlock()
    	if r.state == Stopped {
    		return
    	}
    	if ok && r.state == Pending {
    		r.state = Ready
    		r.generation++
    		select {
    		case <-r.waitCh:
    		default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 13:32:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. src/internal/zstd/fse.go

    	bits     uint8  // number of bits to read to determine next state
    	base     uint16 // add the bits to this base to get the next state
    }
    
    // Given a literal length code, we need to read a number of bits and
    // add that to a baseline. For states 0 to 15 the baseline is the
    // state and the number of bits is zero. RFC 3.1.1.3.2.1.1.
    
    const literalLengthOffset = 16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top