Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 197 for light (0.08 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // important edges then make decisions on all other edges, causing the highest
      // chance of all most important edges to be contracted.
      //
      // An example of where this might occur is with a digraph:
      // {A -> B, B -> C, A -> X, X -> C} where B is a Size operation and X is
      // not-compilable. In this case, the valid clusterings are {A,B} or {B,C}. B
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/type.go

    	}
    	if elem.HasShape() {
    		t.SetHasShape(true)
    	}
    	t.alg = AMEM
    	if elem.Noalg() {
    		t.SetNoalg(true)
    		t.alg = ANOALG
    	}
    	// Note: we can't check elem.NotInHeap here because it might
    	// not be set yet. See size.go:PtrDataSize.
    	t.ptrBytes = int64(PtrSize)
    	return t
    }
    
    // NewChanArgs returns a new TCHANARGS type for channel type c.
    func NewChanArgs(c *Type) *Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  3. src/encoding/json/decode_test.go

    			}
    			typ = typ.Elem()
    
    			// v = new(right-type)
    			v := reflect.New(typ)
    
    			if !reflect.DeepEqual(tt.ptr, v.Interface()) {
    				// There's no reason for ptr to point to non-zero data,
    				// as we decode into new(right-type), so the data is
    				// discarded.
    				// This can easily mean tests that silently don't test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. cmd/iam-store.go

    	// cycle until we can safely update the in-memory cache.
    	//
    	// An in-memory cache must be replaced only if we know for sure that the
    	// values loaded from disk are not stale. They might be stale if the
    	// cached.updatedAt is more recent than the refresh cycle began.
    	if cache.updatedAt.Before(loadedAt) {
    		// No one has updated anything since the config was loaded,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    === Potential breaking changes
    
     * The Java plugins now add a `__sourceSet__AnnotationProcessor` configuration for each source set, which might break if any of them match existing configurations you have. We recommend you remove your conflicting configuration declarations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    		// they don't get interleaved with the heap. They're
    		// ~258MB, so this isn't too bad. (We could reserve a
    		// smaller amount of space up front if this is a
    		// problem.)
    		//
    		// 2. We hint the heap to start right above the end of
    		// the binary so we have the best chance of keeping it
    		// contiguous.
    		//
    		// 3. We try to stake out a reasonably large initial
    		// heap reservation.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/MapMakerInternalMap.java

         * make sure they see a consistent snapshot: If modCounts change during a traversal of segments
         * computing size or checking containsValue, then we might have an inconsistent view of state so
         * (usually) must retry.
         */
        int modCount;
    
        /**
         * The table is expanded when its size exceeds this threshold. (The value of this field is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. cmd/erasure-object.go

    		}
    	}
    
    	modTime = UTCNow() // We only preserve modTime if dstOpts.MTime is true.
    	// in all other cases mtime is latest.
    
    	fi.VersionID = versionID // set any new versionID we might have created
    	fi.ModTime = modTime     // set modTime for the new versionID
    	if !dstOpts.MTime.IsZero() {
    		modTime = dstOpts.MTime
    		fi.ModTime = dstOpts.MTime
    	}
    	// check inline before overwriting metadata.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/Futures.java

          ListenableFuture<? extends V>... futures) {
        /*
         * Another way to express this signature would be to bound <V> by @NonNull and accept
         * LF<? extends @Nullable V>. That might be better: There's currently no difference between the
         * outputs users get when calling this with <Foo> and calling it with <@Nullable Foo>. The only
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// (`scheme://host:port/path`). Exactly one of `url` or `service`
    	// must be specified.
    	//
    	// The `host` should not refer to a service running in the cluster; use
    	// the `service` field instead. The host might be resolved via external
    	// DNS in some apiservers (e.g., `kube-apiserver` cannot resolve
    	// in-cluster DNS as that would be a layering violation). `host` may
    	// also be an IP address.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
Back to top