Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for Tables (0.2 sec)

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

            long now = map.ticker.read();
            preWriteCleanup(now);
    
            int newCount = this.count - 1;
            AtomicReferenceArray<ReferenceEntry<K, V>> table = this.table;
            int index = hash & (table.length() - 1);
            ReferenceEntry<K, V> first = table.get(index);
    
            for (e = first; e != null; e = e.getNext()) {
              K entryKey = e.getKey();
              if (e.getHash() == hash
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

            long now = map.ticker.read();
            preWriteCleanup(now);
    
            int newCount = this.count - 1;
            AtomicReferenceArray<ReferenceEntry<K, V>> table = this.table;
            int index = hash & (table.length() - 1);
            ReferenceEntry<K, V> first = table.get(index);
    
            for (e = first; e != null; e = e.getNext()) {
              K entryKey = e.getKey();
              if (e.getHash() == hash
    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. src/cmd/internal/obj/x86/asm6.go

    	Rxb     = 1 << 0 // extend modrm r/m, sib base, or opcode reg
    )
    
    const (
    	// Encoding for VEX prefix in tables.
    	// The P, L, and W fields are chosen to match
    	// their eventual locations in the VEX prefix bytes.
    
    	// Encoding for VEX prefix in tables.
    	// The P, L, and W fields are chosen to match
    	// their eventual locations in the VEX prefix bytes.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    				su = ctxt.loader.MakeSymbolUpdater(s)
    			}
    			r.SetSym(rel.Sym())
    			r.SetAdd(int64(tplt))
    		}
    	}
    	return nil
    }
    
    // windynrelocsyms generates jump table to C library functions that will be
    // added later. windynrelocsyms writes the table into .rel symbol.
    func (ctxt *Link) windynrelocsyms() {
    	if !(ctxt.IsWindows() && iscgo && ctxt.IsInternal()) {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  5. src/cmd/internal/obj/arm64/asm7.go

    			oprangeset(ABLO, t)
    			oprangeset(ABMI, t)
    			oprangeset(ABPL, t)
    			oprangeset(ABVS, t)
    			oprangeset(ABVC, t)
    			oprangeset(ABHI, t)
    			oprangeset(ABLS, t)
    			oprangeset(ABGE, t)
    			oprangeset(ABLT, t)
    			oprangeset(ABGT, t)
    			oprangeset(ABLE, t)
    
    		case ALSL:
    			oprangeset(ALSLW, t)
    			oprangeset(ALSR, t)
    			oprangeset(ALSRW, t)
    			oprangeset(AASR, t)
    			oprangeset(AASRW, t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_builder_test.go

    							LoadBalancingWeight: &wrappers.UInt32Value{
    								Value: 30,
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			name:   "subset cluster endpoints with labels",
    			mesh:   testMesh(),
    			labels: labels.Instance{"version": "v1"},
    			instances: []*model.ServiceInstance{
    				{
    					Service:     service,
    					ServicePort: servicePort,
    					Endpoint: &model.IstioEndpoint{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  7. cmd/metrics-v2.go

    		labels, values := getOrderedLabelValueArrays(metric.VariableLabels)
    		values = append(values, globalLocalNodeName)
    		labels = append(labels, serverName)
    
    		if metric.Description.Type == histogramMetric {
    			if metric.Histogram == nil {
    				return true
    			}
    			for k, v := range metric.Histogram {
    				labels = append(labels, metric.HistogramBucketLabel)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    			errs = AppendValidation(errs, fmt.Errorf("config namespace and gateway name cannot be empty"))
    		}
    
    		// namespace and name must be DNS labels
    		if !labels.IsDNS1123Label(parts[0]) {
    			errs = AppendValidation(errs, fmt.Errorf("invalid value for namespace: %q", parts[0]))
    		}
    
    		if !labels.IsDNS1123Label(parts[1]) && !gatewaySemantics {
    			errs = AppendValidation(errs, fmt.Errorf("invalid value for gateway name: %q", parts[1]))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	metaObj, err := meta.Accessor(obj)
    	if err != nil {
    		panic(err.Error())
    	}
    	labels := metaObj.GetLabels()
    	if labels == nil {
    		labels = map[string]string{}
    	}
    	labels["prepare_create"] = "true"
    	metaObj.SetLabels(labels)
    }
    
    func (t *testRESTStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_test.go

    		existingNode     *v1.Node
    		isPatchingNeeded bool
    	}{
    		{
    			name:             "no labels",
    			existingNode:     &v1.Node{ObjectMeta: metav1.ObjectMeta{Labels: map[string]string{}}},
    			isPatchingNeeded: true,
    		},
    		{
    			name:             "wrong labels",
    			existingNode:     &v1.Node{ObjectMeta: metav1.ObjectMeta{Labels: map[string]string{v1.LabelOSStable: "dummyOS", v1.LabelArchStable: "dummyArch"}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top