Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for loser (0.22 sec)

  1. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

       * hash functions. This is critical when the concurrent hash map uses power-of-two length hash
       * tables, that otherwise encounter collisions for hash codes that do not differ in lower or upper
       * bits.
       *
       * @param h hash code
       */
      static int rehash(int h) {
        // Spread bits to regularize both segment and index locations,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "minReplicas": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    func allocm(pp *p, fn func(), id int64) *m {
    	allocmLock.rlock()
    
    	// The caller owns pp, but we may borrow (i.e., acquirep) it. We must
    	// disable preemption to ensure it is not stolen, which would make the
    	// caller lose ownership.
    	acquirem()
    
    	gp := getg()
    	if gp.m.p == 0 {
    		acquirep(pp) // temporarily borrow p for mallocs in this function
    	}
    
    	// Release the free M list. We need to do this somewhere and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

                "type": "string"
              },
              "port": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    			// end up stuck in a loop down the road.
    			p.Error.IsImportCycle = true
    		}
    		p.Incomplete = true
    	}
    	// Don't rewrite the import stack in the error if we have an import cycle.
    	// If we do, we'll lose the path that describes the cycle.
    	if p.Error != nil && !p.Error.IsImportCycle && stk.shorterThan(p.Error.ImportStack) {
    		p.Error.ImportStack = stk.Copy()
    	}
    	return p
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

                  "default": {}
                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "minReplicas": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "type": "string"
              },
              "priority": {
                "description": "priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.",
                "format": "int32",
                "type": "integer"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "Outputs random values from a uniform distribution.";
    
      let description = [{
    The generated values follow a uniform distribution in the range `[0, 1)`. The
    lower bound 0 is included in the range, while the upper bound 1 is excluded.
      }];
    
      let arguments = (ins
        TFL_I32Tensor:$shape,
        DefaultValuedOptionalAttr<I64Attr, "0">:$seed,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9.go

    	m := uint64(mask)
    	mb = uint32(bits.LeadingZeros64(m))
    	me = uint32(64 - bits.TrailingZeros64(m))
    	valid = ((m&-m)+m)&m == 0 && m != 0
    	return mb, (me - 1) & 63, valid
    }
    
    // Load the lower 16 bits of a constant into register r.
    func loadl16(r int, d int64) uint32 {
    	v := uint16(d)
    	if v == 0 {
    		// Avoid generating "ori r,r,0", r != 0. Instead, generate the architectually preferred nop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top