Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for table_1 (0.29 sec)

  1. pilot/pkg/features/pilot.go

    		"If true, Pilot will merge virtual hosts with the same routes into a single virtual host, as an optimization.").Get()
    
    	MulticlusterHeadlessEnabled = env.Register("ENABLE_MULTICLUSTER_HEADLESS", true,
    		"If true, the DNS name table for a headless service will resolve to same-network endpoints in any cluster.").Get()
    
    	ResolveHostnameGateways = env.Register("RESOLVE_HOSTNAME_GATEWAYS", true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		Spec:       example.PodSpec{NodeName: "machine"},
    	}
    
    	testContext := genericapirequest.WithNamespace(genericapirequest.NewContext(), "test")
    	noNamespaceContext := genericapirequest.NewContext()
    
    	table := map[string]struct {
    		in      *example.PodList
    		m       storage.SelectionPredicate
    		out     runtime.Object
    		context context.Context
    	}{
    		"notFound": {
    			in:  nil,
    			m:   matchEverything(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. RELEASE.md

        vocabulary file.
    *   Added `index_to_string_table` which returns a lookup table that maps indices
        to strings.
    *   Add `string_to_index_table`, which returns a lookup table that matches
        strings to indices.
    *   Add a `ParallelForWithWorkerId` function.
    *   Add `string_to_index_table`, which returns a lookup table that matches
        strings to indices.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  4. .bazelrc

    # only executabe on the RBE (x86) machine, so the strategy_regexp options are
    # added to override and run the actions using remote strategy.
    build:rbe_cross_compile_base_xla --strategy_regexp='Generating code from table.*=remote'
    build:rbe_cross_compile_base_xla --strategy_regexp='Generating flatbuffer files.*=remote'
    build:rbe_cross_compile_base_xla --strategy_regexp='Executing genrule @llvm-project.*=remote'
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/plive.go

    // then compact the set of argument bitmaps separately from the set of
    // local variable bitmaps. As of 2014-04-02, doing this to the godoc binary
    // is actually a net loss: we save about 50k of argument bitmaps but the new
    // PCDATA tables cost about 100k. So for now we keep using a single index for
    // both bitmap lists.
    func (lv *liveness) compact(b *ssa.Block) {
    	pos := 0
    	if b == lv.f.Entry {
    		// Handle entry stack map.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // Map of key value pairs of metadata to export.
      const std::map<std::string, std::string> metadata_;
      // User's defined supported backends.
      const std::unordered_set<std::string> supported_backends_;
      // A mapping table to mlir::Operation objects for TFL subgraph and operator
      // index in a flatbuffer.
      std::vector<std::vector<Operation*>> subgraph_op_inst_map_;
      // A list of subgraphs in the model
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidTableAlias: {
    		Code:           "InvalidTableAlias",
    		Description:    "The SQL expression contains an invalid table alias.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMissingRequiredParameter: {
    		Code:           "MissingRequiredParameter",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "Creates a non-initialized hash table.";
      let description = [{
    This op creates a hash table, specifying the type of its keys and values.
    Before using the table you will have to initialize it.  After initialization the
    table will be immutable.
      }];
    
      let arguments = (ins
        I32Attr:$table_id,
        TypeAttr:$key_dtype,
        TypeAttr:$value_dtype
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    		b.Likely = ssa.BranchLikely // TODO: assumes missing the table entirely is unlikely. True?
    
    		// Build jump table block.
    		s.startBlock(jt)
    		jt.Pos = n.Pos()
    		if base.Flag.Cfg.SpectreIndex {
    			idx = s.newValue2(ssa.OpSpectreSliceIndex, t, idx, width)
    		}
    		jt.SetControl(idx)
    
    		// Figure out where we should go for each index in the table.
    		table := make([]*ssa.Block, max-min+1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    							},
    						},
    						SchemaProps: spec.SchemaProps{
    							Description: "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If no columns are specified, a single column displaying the age of the custom resource is used.",
    							Type:        []string{"array"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top