Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 165 for RES (0.02 sec)

  1. pkg/kube/kclient/client.go

    	var res []T
    	err := cache.ListAllByNamespace(n.informer.GetIndexer(), namespace, selector, func(i any) {
    		cast := i.(T)
    		if n.applyFilter(cast) {
    			res = append(res, cast)
    		}
    	})
    
    	// Should never happen
    	if err != nil && features.EnableUnsafeAssertions {
    		log.Fatalf("lister returned err for %v: %v", namespace, err)
    	}
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/fake.go

    	raw, _ := f.ConfigGen.BuildClusters(p, &model.PushRequest{Push: f.PushContext()})
    	res := make([]*cluster.Cluster, 0, len(raw))
    	for _, r := range raw {
    		c := &cluster.Cluster{}
    		if err := r.Resource.UnmarshalTo(c); err != nil {
    			f.t.Fatal(err)
    		}
    		res = append(res, c)
    	}
    	return res
    }
    
    func (f *ConfigGenTest) DeltaClusters(
    	p *model.Proxy,
    	configUpdated sets.Set[model.ConfigKey],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    def : Pat<(TF_FFTOp:$res $input),
              (MHLO_FftOp $input, MHLO_FftTypeValue<"FFT">, (GetInnerDimFromValue $res)),
              [(CheckInnerDimStatic $input)]>;
    
    def : Pat<(TF_IFFTOp:$res $input),
              (MHLO_FftOp $input, MHLO_FftTypeValue<"IFFT">, (GetInnerDimFromValue $res)),
              [(CheckInnerDimStatic $input)]>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    func removeEmptySections(bs []md.Block) []md.Block {
    	res := bs[:0]
    	delta := 0 // number of lines by which to adjust positions
    
    	// Remove preceding headings at same or higher level; they are empty.
    	rem := func(level int) {
    		for len(res) > 0 {
    			last := res[len(res)-1]
    			if lh, ok := last.(*md.Heading); ok && lh.Level >= level {
    				res = res[:len(res)-1]
    				// Adjust subsequent block positions by the size of this block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    			tree := make(analysisflags.JSONTree)
    			for _, res := range results {
    				tree.Add(fset, cfg.ID, res.a.Name, res.diagnostics, res.err)
    			}
    			tree.Print()
    		} else {
    			// plain text
    			exit := 0
    			for _, res := range results {
    				if res.err != nil {
    					log.Println(res.err)
    					exit = 1
    				}
    			}
    			for _, res := range results {
    				for _, diag := range res.diagnostics {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. src/go/types/instantiate.go

    	// Prefer to re-use existing types from expanding context, if it exists, to reduce
    	// the memory pinned by the Named type.
    	updateContexts := func(res Type) Type {
    		for i := len(ctxts) - 1; i >= 0; i-- {
    			res = ctxts[i].update(hashes[i], orig, targs, res)
    		}
    		return res
    	}
    
    	// typ may already have been instantiated with identical type arguments. In
    	// that case, re-use the existing instance.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. internal/grid/manager.go

    func (m *Manager) HostName() string {
    	return m.local
    }
    
    // Targets returns the names of all remote targets.
    func (m *Manager) Targets() []string {
    	var res []string
    	for k := range m.targets {
    		res = append(res, k)
    	}
    	return res
    }
    
    // debugMsg should *only* be used by tests.
    //
    //lint:ignore U1000 This is used by tests.
    func (m *Manager) debugMsg(d debugMsg, args ...any) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    // Size(x) = Prod(Shape(x), reduction_indices=0, keep_dims=false)
    def LowerSizeOp : Pat<
      (TF_SizeOp:$res $arg),
      (TF_ProdOp
        (CreateTFShapeOp
          $res,
          $arg,
          (IsI32 $res)
        ),
        /*reduction_indices=*/
        (TF_ConstOp
          (GetScalarOfType<0> $res)
        ),
        /*keep_dims=*/
        ConstBoolAttrFalse
      )>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

        The ExecuteOp executes an operation on the specified device.
    
        Example:
          %res = tfrt_fallback_async.executeop key(0) cost(100) device("/CPU:0") "some.op"(%arg) : 1
    
        Note that the trailing number indicates the number of results.
    
        The func attrs and op attrs are placed in two separate regions.
    
        Example:
          %res = tfrt_fallback_async.executeop key(0) device("/CPU:0") "some.op"(%arg)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/syscall/js/js.go

    	storeArgs(args, argVals, argRefs)
    	res, ok := valueInvoke(v.ref, argRefs)
    	runtime.KeepAlive(v)
    	runtime.KeepAlive(argVals)
    	if !ok {
    		if vType := v.Type(); vType != TypeFunction { // check here to avoid overhead in success case
    			panic(&ValueError{"Value.Invoke", vType})
    		}
    		panic(Error{makeValue(res)})
    	}
    	return makeValue(res)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top