Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 106 for lake (0.09 sec)

  1. android/guava/src/com/google/common/collect/Iterators.java

       *
       * <p>The returned lists implement {@link java.util.RandomAccess}.
       *
       * <p><b>Note:</b> The current implementation eagerly allocates storage for {@code size} elements.
       * As a consequence, passing values like {@code Integer.MAX_VALUE} can lead to {@link
       * OutOfMemoryError}.
       *
       * @param iterator the iterator to return a partitioned view of
       * @param size the desired size of each partition (the last may be smaller)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/CharMatcher.java

       *
       * <p>This method has no effect (returns {@code this}) when called in GWT: it's unclear whether a
       * precomputed matcher is faster, but it certainly consumes more memory, which doesn't seem like a
       * worthwhile tradeoff in a browser.
       */
      public CharMatcher precomputed() {
        return Platform.precomputeCharMatcher(this);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Iterators.java

       *
       * <p>The returned lists implement {@link java.util.RandomAccess}.
       *
       * <p><b>Note:</b> The current implementation eagerly allocates storage for {@code size} elements.
       * As a consequence, passing values like {@code Integer.MAX_VALUE} can lead to {@link
       * OutOfMemoryError}.
       *
       * @param iterator the iterator to return a partitioned view of
       * @param size the desired size of each partition (the last may be smaller)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				// In Kubernetes 1.24 and later, the CEL type returns false for an int-or-string comparison against the
    				// other type, making it safe to write validation rules like:
    				"self.something == '25%'":                        3,
    				"self.something != 1":                            3,
    				"self.something == 1 || self.something == '25%'": 6,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    def IsDefinedByConv2DOp : Constraint<CPred<
      "$0.getDefiningOp<TFL::Conv2DOp>() != nullptr">>;
    
    // Returns true if the supplied value-
    // 1) Has only one use or
    // 2) Is only used by binary op like AddOp, SubOp, MulOp or DivOp.
    def HasOneUseOrUsedByOnlyBinaryOps : Constraint<CPred<
      "TFL::HasOneUseOrUsedByOnlyBinaryOps($0)">>;
    
    // Pattern for skipping Tile if it is mainly for broadcasting and the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    	if !dwarfEnabled(ctxt) {
    		return
    	}
    
    	d := &dwctxt{
    		linkctxt: ctxt,
    		ldr:      ctxt.loader,
    		arch:     ctxt.Arch,
    		tmap:     make(map[string]loader.Sym),
    		tdmap:    make(map[loader.Sym]loader.Sym),
    		rtmap:    make(map[loader.Sym]loader.Sym),
    	}
    	d.typeRuntimeEface = d.lookupOrDiag("type:runtime.eface")
    	d.typeRuntimeIface = d.lookupOrDiag("type:runtime.iface")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.s

    	// compile barrier.
    	RET
    
    // Save state of caller into g->sched,
    // but using fake PC from systemstack_switch.
    // Must only be called from functions with frame pointer
    // and without locals ($0) or else unwinding from
    // systemstack_switch is incorrect.
    // Smashes R9.
    TEXT gosave_systemstack_switch<>(SB),NOSPLIT|NOFRAME,$0
    	// Take systemstack_switch PC and add 8 bytes to skip
    	// the prologue. The final location does not matter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. src/crypto/tls/tls_test.go

    	}
    	return nil
    }
    
    func TestTLSUniqueMatches(t *testing.T) {
    	ln := newLocalListener(t)
    	defer ln.Close()
    
    	serverTLSUniques := make(chan []byte)
    	parentDone := make(chan struct{})
    	childDone := make(chan struct{})
    	defer close(parentDone)
    	go func() {
    		defer close(childDone)
    		for i := 0; i < 2; i++ {
    			sconn, err := ln.Accept()
    			if err != nil {
    				t.Error(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/manager_test.go

    		return nil, err
    	}
    	m := &ManagerImpl{
    		healthyDevices:        make(map[string]sets.Set[string]),
    		unhealthyDevices:      make(map[string]sets.Set[string]),
    		allocatedDevices:      make(map[string]sets.Set[string]),
    		endpoints:             make(map[string]endpointInfo),
    		podDevices:            newPodDevices(),
    		devicesToReuse:        make(PodReusableDevices),
    		topologyAffinityStore: topologymanager.NewFakeManager(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/adminlte.min.js.map

    AzE,EAAEI,GAAGH,GAAQE,EACNsF,EAAS5B,kBAGX4B,EApNS,CAqNff,QCrNG6C,EAAY,SAACvH,GAMjB,IAAMC,EAAqB,WAGrBE,EAAqBH,EAAEI,GAAGH,GAE1BI,EAAQ,CACZmH,SAAQ,wBACRjH,SAAQ,wBACRD,UAAS,yBACTmH,cAAa,qBAGTjH,EACW,YADXA,EAGW,gBAHXA,EAIW,aAJXA,EAKW,2BAGXC,EAIe,YAJfA,EAKe,mBAGfC,EAAU,CACdoB,QAA0BtB,EAAnB,IAfQ,YAgBfkH,eAAuB,IACvBC,WAAuB,EACvBC,eAAuB,EACvBC,sBAAuB,4BAOnBN,EA9CiB,WA+CrB,SAAAA,EAAYzG,EAASC,GACnBC,KAAKE,QAAWH,EAChBC,KAAKC,SAAWH,EAjDG,IAAAM,EAAAmG,EAAAlG,UAAA,OAAAD,EAsDrB0G,KAAA,WACE9G,KAAK+G,mBAvDc3G,EA...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
Back to top