Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for LookUp (0.12 sec)

  1. src/runtime/mprof.go

    // This struct defines the bucket header. It is followed in
    // memory by the stack words and then the actual record
    // data, either a memRecord or a blockRecord.
    //
    // Per-call-stack profiling information.
    // Lookup by hashing call stack into a linked-list hash table.
    //
    // None of the fields in this bucket header are modified after
    // creation, including its next and allnext links.
    //
    // No heap pointers.
    type bucket struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. src/time/time_test.go

    	for i := 0; i < b.N; i++ {
    		t.Format("2006-01-02T15:04:05.999999999Z07:00")
    	}
    }
    
    func BenchmarkFormatNow(b *testing.B) {
    	// Like BenchmarkFormat, but easier, because the time zone
    	// lookup cache is optimized for the present.
    	t := Now()
    	for i := 0; i < b.N; i++ {
    		t.Format("Mon Jan  2 15:04:05 2006")
    	}
    }
    
    func BenchmarkMarshalJSON(b *testing.B) {
    	t := Now()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. cmd/iam-store.go

    			return nil, time.Time{}, nil
    		}
    	}
    
    	// For internal IDP regular/service account user accounts, the policy
    	// mapping is iamUserPolicyMap. For STS accounts, the parent user would be
    	// passed here and we lookup the mapping in iamSTSPolicyMap.
    	mp, ok := c.iamUserPolicyMap.Load(name)
    	if !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  4. src/text/template/exec_test.go

    	if err != nil {
    		t.Fatal("parse error:", err)
    	}
    	var b strings.Builder
    	const expect = "[1[2[3[4]][5[6]]][7[8[9]][10[11]]]]"
    	// First by looking up the template.
    	err = tmpl.Lookup("tree").Execute(&b, tree)
    	if err != nil {
    		t.Fatal("exec error:", err)
    	}
    	result := b.String()
    	if result != expect {
    		t.Errorf("expected %q got %q", expect, result)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. src/runtime/mbitmap.go

    					for nb <= goarch.PtrSize*8 {
    						b |= b << nb
    						nb += nb
    					}
    					// Trim away incomplete copy of original pattern in high bits.
    					// TODO(rsc): Replace with table lookup or loop on systems without divide?
    					nb = maxBits / npattern * npattern
    					b &= 1<<nb - 1
    					pattern = b
    					npattern = nb
    				}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (SRWconst (AND (MOVDconst [m]) x) [s]) && mergePPC64AndSrwi(m>>uint(s),s) != 0 => (RLWINM [mergePPC64AndSrwi(m>>uint(s),s)] x)
    
    // Merge shift right + shift left and clear left (e.g for a table lookup)
    (CLRLSLDI [c] (SRWconst [s] x)) && mergePPC64ClrlsldiSrw(int64(c),s) != 0 => (RLWINM [mergePPC64ClrlsldiSrw(int64(c),s)] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  7. src/go/build/build.go

    		if _, ok := ctxt.hasSubdir(filepath.Join(ctxt.GOROOT, "src"), absSrcDir); ok {
    			return errNoModules
    		}
    	}
    
    	// For efficiency, if path is a standard library package, let the usual lookup code handle it.
    	if dir := ctxt.joinPath(ctxt.GOROOT, "src", path); ctxt.isDir(dir) {
    		return errNoModules
    	}
    
    	// If GO111MODULE=auto, look to see if there is a go.mod.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * {@code create()} methods on {@link TaskContainer}, such as {@link TaskContainer#create(String)}.  You can locate existing
     * tasks using one of the lookup methods on {@link TaskContainer}, such as {@link org.gradle.api.tasks.TaskCollection#getByName(String)}.</p>
     *
     * <h3>Dependencies</h3>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_test.go

    	for i := 0; i < 4; i++ {
    		cache.Put(keys[i], &cs[i])
    	}
    	for i := 0; i < 4; i++ {
    		if s, ok := cache.Get(keys[i]); !ok || s != &cs[i] {
    			t.Fatalf("session cache failed lookup for added key: %s", keys[i])
    		}
    	}
    
    	// Add 2 more entries to the cache. First 2 should be evicted.
    	for i := 4; i < 6; i++ {
    		cache.Put(keys[i], &cs[i])
    	}
    	for i := 0; i < 2; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    			makeInstance(httpStaticOverlayUpdatedNs, "7.7.7.7", 4567, httpStaticOverlayUpdatedNs.Spec.(*networking.ServiceEntry).Ports[0], map[string]string{"namespace": "bar"}, PlainText),
    		}
    		// This lookup is per-namespace, so we should only see the objects in the same namespace
    		expectServiceInstances(t, sd, httpStaticOverlayUpdatedNs, 0, instances)
    		// Expect a full push, as the Service has changed
    		expectEvents(t, events,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top