Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for Percent (0.18 sec)

  1. android/guava/src/com/google/common/cache/LocalCache.java

        long last = -1L;
        for (int i = 0; i < CONTAINS_VALUE_RETRIES; i++) {
          long sum = 0L;
          for (Segment<K, V> segment : segments) {
            // ensure visibility of most recent completed write
            int unused = segment.count; // read-volatile
    
            AtomicReferenceArray<ReferenceEntry<K, V>> table = segment.table;
            for (int j = 0; j < table.length(); j++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	}
    	return save
    }
    
    // innerPrinter is an interface for types that can print themselves as
    // inner types.
    type innerPrinter interface {
    	printInner(*printState)
    }
    
    // Print the most recent inner type.  If save is not nil, only print
    // prefixes.
    func (ps *printState) printOneInner(save *[]AST) {
    	if len(ps.inner) == 0 {
    		panic("printOneInner called with no inner types")
    	}
    	ln := len(ps.inner)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LocalCache.java

        long last = -1L;
        for (int i = 0; i < CONTAINS_VALUE_RETRIES; i++) {
          long sum = 0L;
          for (Segment<K, V> segment : segments) {
            // ensure visibility of most recent completed write
            int unused = segment.count; // read-volatile
    
            AtomicReferenceArray<ReferenceEntry<K, V>> table = segment.table;
            for (int j = 0; j < table.length(); j++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

              },
              "observedGeneration": {
                "description": "observedGeneration is the most recent generation observed by this autoscaler.",
                "format": "int64",
                "type": "integer"
              }
            },
            "required": [
              "currentReplicas",
              "desiredReplicas"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__policy__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "observedGeneration": {
                "description": "Most recent generation observed when updating this PDB status. DisruptionsAllowed and other status information is valid only if observedGeneration equals to PDB's object generation.",
                "format": "int64",
                "type": "integer"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

              },
              "observedGeneration": {
                "description": "observedGeneration is the most recent generation observed by this autoscaler.",
                "format": "int64",
                "type": "integer"
              }
            },
            "required": [
              "desiredReplicas"
            ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    // clear clears P id's bit.
    func (p pMask) clear(id int32) {
    	word := id / 32
    	mask := uint32(1) << (id % 32)
    	atomic.And(&p[word], ^mask)
    }
    
    // pidleput puts p on the _Pidle list. now must be a relatively recent call
    // to nanotime or zero. Returns now or the current time if now was zero.
    //
    // This releases ownership of p. Once sched.lock is released it is no longer
    // safe to use p.
    //
    // sched.lock must be held.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    x = v              // x has value (*T)(nil) and dynamic type *T
    </pre>
    
    <p>
    A variable's value is retrieved by referring to the variable in an
    <a href="#Expressions">expression</a>; it is the most recent value
    <a href="#Assignments">assigned</a> to the variable.
    If a variable has not yet been assigned a value, its value is the
    <a href="#The_zero_value">zero value</a> for its type.
    </p>
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top