Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 98 of 98 for uber (0.1 sec)

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

        /**
         * Returns the default equivalence strategy used to compare and hash keys or values referenced
         * at this strength. This strategy will be used unless the user explicitly specifies an
         * alternate strategy.
         */
        abstract Equivalence<Object> defaultEquivalence();
      }
    
      /** Creates new entries. */
      enum EntryFactory {
        STRONG {
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  2. fastapi/routing.py

                # as is just because it's an instance of a subclass of a more limited class
                # e.g. UserInDB (containing hashed_password) could be a subclass of User
                # that doesn't have the hashed_password. But because it's a subclass, it
                # would pass the validation and be returned as is.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			},
    			operands: []*framework.QueuedPodInfo{pInfo1, pInfo2, nil},
    			expected: []*framework.QueuedPodInfo{pInfo2, pInfo1},
    		},
    		{
    			name:                              "New priority queue by user-defined value of podMaxInUnschedulablePodsDuration",
    			podMaxInUnschedulablePodsDuration: 30 * time.Second,
    			operations: []operation{
    				addPodUnschedulablePods,
    				addPodUnschedulablePods,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        // expected-error@+1 {{'tf.TPUPartitionedOutputV2' op must be a unique user of TPU Cluster}}
        %partitioned_output:2 = "tf.TPUPartitionedOutputV2"(%computation) {N = 2 : i64, partition_dims = []} : (tensor<i32>) -> (tensor<i32>, tensor<i32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  5. src/reflect/value.go

    				// in the heap. That uintptr is the address of a not-in-heap object.
    				// In general, pointers to not-in-heap objects can be total junk.
    				// But Elem() is asking to dereference it, so the user has asserted
    				// that at least it is a valid pointer (not just an integer stored in
    				// a pointer slot). So let's check, to make sure that it isn't a pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/generic.rules

    (EqPtr  (Const(32|64) [0]) p) => (Not (IsNonNil p))
    (NeqPtr (Const(32|64) [0]) p) => (IsNonNil p)
    (EqPtr  (ConstNil) p) => (Not (IsNonNil p))
    (NeqPtr (ConstNil) p) => (IsNonNil p)
    
    // Evaluate constant user nil checks.
    (IsNonNil (ConstNil)) => (ConstBool [false])
    (IsNonNil (Const(32|64) [c])) => (ConstBool [c != 0])
    (IsNonNil          (Addr _)   ) => (ConstBool [true])
    (IsNonNil (Convert (Addr _) _)) => (ConstBool [true])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    // languages and scripts given incomplete information. If more entries exist
    // for a given regionID, lang and script are the index and size respectively
    // of the list in likelyRegionList.
    // TODO: exclude containers and user-definable regions from the list.
    // Size: 2154 bytes, 359 elements
    var likelyRegion = [359]likelyLangScript{
    	34:  {lang: 0xd7, script: 0x5b, flags: 0x0},
    	35:  {lang: 0x3a, script: 0x5, flags: 0x0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm9.go

    			o1 |= 1 << 1 /* mb[5] */
    		}
    
    	case 57: /* slw $sh,[s,]a -> rlwinm ... */
    		v := c.regoff(&p.From)
    
    		r := int(p.Reg)
    		if r == 0 {
    			r = int(p.To.Reg)
    		}
    
    		/*
    			 * Let user (gs) shoot himself in the foot.
    			 * qc has already complained.
    			 *
    			if(v < 0 || v > 31)
    				ctxt->diag("illegal shift %ld\n%v", v, p);
    		*/
    		if v < 0 {
    			v = 0
    		} else if v > 32 {
    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