Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for ptrmap (0.16 sec)

  1. src/reflect/type.go

    	return toType(abi.TypeOf(i))
    }
    
    // rtypeOf directly extracts the *rtype of the provided value.
    func rtypeOf(i any) *abi.Type {
    	return abi.TypeOf(i)
    }
    
    // ptrMap is the cache for PointerTo.
    var ptrMap sync.Map // map[*rtype]*ptrType
    
    // PtrTo returns the pointer type with element t.
    // For example, if t represents type Foo, PtrTo(t) represents *Foo.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		gploadidx    = regInfo{inputs: []regMask{ptrspsb, ptrsp, 0}, outputs: gponly}
    		gpopload     = regInfo{inputs: []regMask{gp, ptrsp, 0}, outputs: gponly}
    		gpstore      = regInfo{inputs: []regMask{ptrspsb, gpsp, 0}}
    		gpstoreconst = regInfo{inputs: []regMask{ptrspsb, 0}}
    		gpstoreidx   = regInfo{inputs: []regMask{ptrsp, ptrsp, gpsp, 0}}
    		gpstorebr    = regInfo{inputs: []regMask{ptrsp, gpsp, 0}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  3. src/runtime/mbitmap.go

    		throw("runtime: invalid typeBitsBulkBarrier")
    	}
    	if !writeBarrier.enabled {
    		return
    	}
    	ptrmask := typ.GCData
    	buf := &getg().m.p.ptr().wbBuf
    	var bits uint32
    	for i := uintptr(0); i < typ.PtrBytes; i += goarch.PtrSize {
    		if i&(goarch.PtrSize*8-1) == 0 {
    			bits = uint32(*ptrmask)
    			ptrmask = addb(ptrmask, 1)
    		} else {
    			bits = bits >> 1
    		}
    		if bits&1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/MapsTest.java

                  }
                },
                Functions.forMap(INT_TO_STRING_MAP.inverse()));
        assertEquals(INT_TO_STRING_MAP, outputMap);
      }
    
      public void testUniqueIndexIterator() {
        ImmutableMap<Integer, String> outputMap =
            Maps.uniqueIndex(
                INT_TO_STRING_MAP.values().iterator(), Functions.forMap(INT_TO_STRING_MAP.inverse()));
        assertEquals(INT_TO_STRING_MAP, outputMap);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    	if features.EnableExternalNameAlias {
    		resolveServiceAliases(allServices, configsUpdate)
    	}
    
    	for _, s := range allServices {
    		portMap := map[string]int{}
    		ports := sets.New[int]()
    		for _, port := range s.Ports {
    			portMap[port.Name] = port.Port
    			ports.Insert(port.Port)
    		}
    
    		svcKey := s.Key()
    		if _, ok := ps.ServiceIndex.instancesByPort[svcKey]; !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			EndpointPort: 8081, // should be ignored since it doesn't define PortMap
    		},
    	}
    
    	wiRatings2 := &model.WorkloadInstance{
    		Name:      "ratings-2",
    		Namespace: "bookinfo-ratings",
    		Endpoint: &model.IstioEndpoint{
    			Labels:  labels.Instance{"app": "ratings"},
    			Address: "2.2.2.2",
    		},
    		PortMap: map[string]uint32{
    			"http": 8082, // should be used
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Multimaps.java

       *
       * @param map the backing map for the returned multimap view
       */
      public static <K extends @Nullable Object, V extends @Nullable Object> SetMultimap<K, V> forMap(
          Map<K, V> map) {
        return new MapMultimap<>(map);
      }
    
      /** @see Multimaps#forMap */
      private static class MapMultimap<K extends @Nullable Object, V extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Multimaps.java

       *
       * @param map the backing map for the returned multimap view
       */
      public static <K extends @Nullable Object, V extends @Nullable Object> SetMultimap<K, V> forMap(
          Map<K, V> map) {
        return new MapMultimap<>(map);
      }
    
      /** @see Multimaps#forMap */
      private static class MapMultimap<K extends @Nullable Object, V extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"optional.of('a').or(optional.of('a')).hasValue()":    2, // or() is short-circuited
    				"optional.none().or(optional.of('a')).hasValue()":     3,
    				"optional.of('a').optMap(v, v == 'value').hasValue()": 8,
    				"self.obj.?field == optional.of('a')":                 5,
    				"self.obj.?absentField == optional.none()":            4,
    				"self.obj.?field.orValue('v') == 'a'":                 4,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  10. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"image/x-jp2-container",
    				"image/x-niff",
    				"image/x-pcx",
    				"image/x-pict",
    				"image/x-portable-anymap",
    				"image/x-portable-bitmap",
    				"image/x-portable-graymap",
    				"image/x-portable-pixmap",
    				"image/x-raw-adobe",
    				"image/x-raw-hasselblad",
    				"image/x-raw-fuji",
    				"image/x-raw-canon",
    				"image/x-raw-kodak",
    				"image/x-raw-minolta",
    				"image/x-raw-nikon",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
Back to top