Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 56 for RES (0.04 sec)

  1. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    }
    
    func replaceVersionSpecific(contents string, inputs ...string) []string {
    	res := make([]string, 0, len(inputs))
    	for _, i := range inputs {
    		if i == constants.IPVersionSpecific {
    			res = append(res, contents)
    		} else {
    			res = append(res, i)
    		}
    	}
    	return res
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      );
    
      let results = (outs
        Res<TF_Float32Tensor, [{A 4D Tensor for output data.}]>:$y,
        Res<TF_Float32Tensor, [{A 1D Tensor for the computed batch mean, to be used by TensorFlow
    to compute the running mean.}]>:$batch_mean,
        Res<TF_Float32Tensor, [{A 1D Tensor for the computed batch variance, to be used by
    TensorFlow to compute the running variance.}]>:$batch_variance,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  3. pkg/revisions/tag_watcher.go

    }
    
    func (p *tagWatcher) HasSynced() bool {
    	return p.queue.HasSynced()
    }
    
    func (p *tagWatcher) GetMyTags() sets.String {
    	res := sets.New(p.revision)
    	for _, wh := range p.index.Lookup(p.revision) {
    		res.Insert(wh.GetLabels()[IstioTagLabel])
    	}
    	return res
    }
    
    // notifyHandlers notifies all registered handlers on tag change.
    func (p *tagWatcher) notifyHandlers() {
    	myTags := p.GetMyTags()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. 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)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java

                @Override
                public <Q> Supplier<Q> getCompiledBinding(Key<Q> key) {
                    Set<Binding<Q>> res = getBindings(key);
                    if (res != null && !res.isEmpty()) {
                        List<Binding<Q>> bindingList = new ArrayList<>(res);
                        Comparator<Binding<Q>> comparing = Comparator.comparing(Binding::getPriority);
                        bindingList.sort(comparing.reversed());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/types.go

    	res, non0CPU, non0Mem := calculateResource(pod)
    	n.Requested.MilliCPU += sign * res.MilliCPU
    	n.Requested.Memory += sign * res.Memory
    	n.Requested.EphemeralStorage += sign * res.EphemeralStorage
    	if n.Requested.ScalarResources == nil && len(res.ScalarResources) > 0 {
    		n.Requested.ScalarResources = map[v1.ResourceName]int64{}
    	}
    	for rName, rQuant := range res.ScalarResources {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  7. pilot/pkg/model/endpointshards.go

    			} else {
    				pn, f := portMap[ep.ServicePortName]
    				if !f {
    					continue
    				}
    				portNum = pn
    			}
    			res[portNum] = append(res[portNum], ep)
    		}
    	}
    	return res
    }
    
    func (es *EndpointShards) DeepCopy() *EndpointShards {
    	es.RLock()
    	defer es.RUnlock()
    	res := &EndpointShards{
    		Shards:          make(map[ShardKey][]*IstioEndpoint, len(es.Shards)),
    		ServiceAccounts: es.ServiceAccounts.Copy(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    				krttest.GetMockCollection[*v1.Namespace](mock),
    				krttest.GetMockCollection[*v1.Node](mock),
    			)
    			wrapper := builder(krt.TestingDummyContext{}, tt.pod)
    			var res *workloadapi.Workload
    			if wrapper != nil {
    				res = wrapper.Workload
    			}
    			assert.Equal(t, res, tt.result)
    		})
    	}
    }
    
    func TestWorkloadEntryWorkloads(t *testing.T) {
    	cases := []struct {
    		name   string
    		inputs []any
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. pilot/pkg/xds/delta_test.go

    		t.Helper()
    		res := ads.RequestResponseAck(&discovery.DeltaDiscoveryRequest{
    			ResponseNonce:            nonce,
    			ResourceNamesSubscribe:   add,
    			ResourceNamesUnsubscribe: remove,
    		})
    		nonce = res.Nonce
    		got := xdstest.MapKeys(xdstest.ExtractLoadAssignments(xdstest.UnmarshalClusterLoadAssignment(t, xdsserver.ResourcesToAny(res.Resources))))
    		if !reflect.DeepEqual(expect, got) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. pilot/pkg/simulation/traffic.go

    		return chains
    	}
    	for i, c := range chains {
    		if match(c.GetFilterChainMatch()) {
    			log.Debugf("%v: matched chain %v/%v", desc, i, c.GetName())
    			res = append(res, c)
    		}
    	}
    	// Return all matching filter chains
    	if len(res) > 0 {
    		return res
    	}
    	// Unless there were no matches - in which case we return all filter chains that did not have a
    	// match set
    	for i, c := range chains {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top