Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 664 for map1 (0.04 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			setMaxElements:   9001,
    			expectedSetCost:  0,
    		},
    		{
    			name:             "map of number maps with all",
    			schemaGenerator:  genMapWithCustomItemRule(genMapForMap(), "self.all(x, true)"),
    			expectedCalcCost: 1179647,
    			setMaxElements:   10,
    			expectedSetCost:  32,
    		},
    		{
    			name:             "map of number maps with has",
    			schemaGenerator:  genMapWithCustomItemRule(genMapForMap(), "has(self.x)"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        // Hack around K not being a subtype of Comparable.
        // Unsafe, see ImmutableSortedSetFauxverideShim.
        @SuppressWarnings("unchecked")
        Ordering<K> naturalOrder = (Ordering<K>) NATURAL_ORDER;
        return copyOfInternal(map, naturalOrder);
      }
    
      /**
       * Returns an immutable map containing the same entries as {@code map}, with keys sorted by the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  3. pilot/pkg/xds/endpoints/ep_filters.go

    				Locality: ep.llbEndpoints.Locality,
    				Priority: ep.llbEndpoints.Priority,
    				// Endpoints and weight will be reset below.
    			},
    		}
    
    		// Create a map to keep track of the gateways used and their aggregate weights.
    		gatewayWeights := make(map[model.NetworkGateway]uint32)
    
    		// Process all the endpoints.
    		for i, lbEp := range ep.llbEndpoints.LbEndpoints {
    			istioEndpoint := ep.istioEndpoints[i]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td

    #ifndef TFL_OP_INTERFACES
    #define TFL_OP_INTERFACES
    
    include "mlir/IR/OpBase.td"
    
    def TFL_Dialect : Dialect {
      let name = "tfl";
    
      let description = [{
        The TensorFlow Lite dialect.
    
        This dialect maps to TensorFlow Lite operations.
    
        Invariants:
    
        * All values are of Tensor type (in particular, scalars are
          represented using zero-dimensional tensors);
      }];
    
      let cppNamespace = "::mlir::TFL";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. src/net/resolverdialfunc_test.go

    		Target:   targetName,
    	})
    	if err != nil {
    		panic(err) // internal fault, not user
    	}
    	return nil
    }
    
    var (
    	ErrNotExist = errors.New("name does not exist") // maps to RCode3, NXDOMAIN
    	ErrRefused  = errors.New("refused")             // maps to RCode5, REFUSED
    )
    
    type resolverFuncConn struct {
    	h       *resolverDialHandler
    	network string
    	address string
    	builder *dnsmessage.Builder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

      // CHECK-SAME: ([[max_iter]], [[flow_in]], %cst_1
      // CHECK-SAME: {body_fn = @"map2/while/LoopCond_body/MapFnBody", num_tensor_list_or_flow_in = 1 : i32}
      // CHECK-NOT: tf.While
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

              .put(Map.class, ImmutableMap.of())
              .put(ImmutableMap.class, ImmutableMap.of())
              .put(SortedMap.class, ImmutableSortedMap.of())
              .put(ImmutableSortedMap.class, ImmutableSortedMap.of())
              .put(NavigableMap.class, Maps.unmodifiableNavigableMap(Maps.newTreeMap()))
              .put(Multimap.class, ImmutableMultimap.of())
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  8. src/encoding/gob/encode.go

    			}
    		case reflect.Map:
    			keyOp, keyIndir := encOpFor(t.Key(), inProgress, building)
    			elemOp, elemIndir := encOpFor(t.Elem(), inProgress, building)
    			op = func(i *encInstr, state *encoderState, mv reflect.Value) {
    				// We send zero-length (but non-nil) maps because the
    				// receiver might want to use the map.  (Maps don't use append.)
    				if !state.sendZero && mv.IsNil() {
    					return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/extauthz.go

    	return supported
    }()
    
    type builtExtAuthz struct {
    	http *extauthzhttp.ExtAuthz
    	tcp  *extauthztcp.ExtAuthz
    	err  error
    }
    
    func processExtensionProvider(push *model.PushContext) map[string]*builtExtAuthz {
    	resolved := map[string]*builtExtAuthz{}
    	for i, config := range push.Mesh.ExtensionProviders {
    		var errs error
    		if config.Name == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    		// address where the first byte of the segment is loaded
    		// (loadSegment.Vaddr). A file offset fx maps to a virtual (symbol) address
    		// sx = fx - loadSegment.Off + loadSegment.Vaddr.
    		//
    		// Thus, a runtime virtual address x maps to a symbol address
    		// sx = x - start + offset - loadSegment.Off + loadSegment.Vaddr.
    		return start - offset + loadSegment.Off - loadSegment.Vaddr, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top