Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 310 for Res (0.02 sec)

  1. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    				localCluster := string(m.opts.ClusterID)
    				for _, cluster := range strings.Split(istiodCluster, ",") {
    					if cluster == "*" || cluster == localCluster {
    						res = true
    						return nil
    					}
    				}
    			}
    			return nil
    		})
    	}
    	return res
    }
    
    func createWleConfigStore(client kubelib.Client, revision string, opts Options) model.ConfigStoreController {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java

                return null;
            }
    
            List<MetadataGraphEdge> res = new ArrayList<>(edges.size());
    
            for (MetadataGraphEdge e : edges) {
                if (e.getSource().equals(vFrom)) {
                    res.add(e);
                }
            }
    
            return res;
        }
        // ------------------------------------------------------------------------
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Oct 05 18:41:13 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/pod.go

    	if keys == nil {
    		return nil
    	}
    	res := make([]*v1.Pod, 0, len(keys))
    	for _, key := range keys {
    		p := pc.getPodByKey(key)
    		// Subtle race condition. getPodKeys is our cache over pods, while getPodByKey hits the informer cache.
    		// if these are out of sync, p may be nil (pod was deleted).
    		if p != nil {
    			res = append(res, p)
    		}
    	}
    	return res
    }
    
    // getPodByKey returns the pod by key
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/util/util.go

    	if len(in) == 0 {
    		return nil
    	}
    	res := make([]*matcher.StringMatcher, 0, len(in))
    	for _, s := range in {
    		res = append(res, &matcher.StringMatcher{
    			MatchPattern: &matcher.StringMatcher_Prefix{Prefix: s},
    		})
    	}
    	return res
    }
    
    func ConvertToEnvoyMatches(in []*networking.StringMatch) []*matcher.StringMatcher {
    	res := make([]*matcher.StringMatcher, 0, len(in))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/watch_test.go

    		item.Name = fmt.Sprintf("翏Ŏ熡韐-%d", i)
    	}
    
    	runWatchHTTPBenchmark(b, toObjectSlice(items), "")
    }
    
    func toObjectSlice(in []example.Pod) []runtime.Object {
    	var res []runtime.Object
    	for _, pod := range in {
    		res = append(res, &pod)
    	}
    	return res
    }
    
    func runWatchHTTPBenchmark(b *testing.B, items []runtime.Object, contentType string) {
    	simpleStorage := &SimpleRESTStorage{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 30 17:27:39 UTC 2023
    - 30K bytes
    - Viewed (0)
  6. src/runtime/race.go

    			ctx.off = pc - fi.entry()
    			ctx.res = 1
    			if u.isInlined(uf) {
    				// Set ctx.pc to the "caller" so the race detector calls this again
    				// to further unwind.
    				uf = u.next(uf)
    				ctx.pc = uf.pc
    			}
    			return
    		}
    	}
    	ctx.fn = &qq[0]
    	ctx.file = &dash[0]
    	ctx.line = 0
    	ctx.off = ctx.pc
    	ctx.res = 1
    }
    
    type symbolizeDataContext struct {
    	addr  uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. pkg/scheduler/apis/config/validation/validation.go

    				in := []reflect.Value{reflect.ValueOf(pluginConfigPath.Child("args")), reflect.ValueOf(args)}
    				res := reflect.ValueOf(validateFunc).Call(in)
    				// It's possible that validation function return a Aggregate, just append here and it will be flattened at the end of CC validation.
    				if res[0].Interface() != nil {
    					errs = append(errs, res[0].Interface().(error))
    				}
    			}
    		}
    	}
    	return errs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	res := map[gateway.ObjectName]gateway.GatewayController{
    		gateway.ObjectName(features.GatewayAPIDefaultGatewayClass): gateway.GatewayController(features.ManagedGatewayController),
    	}
    
    	if features.MultiNetworkGatewayAPI {
    		res[constants.RemoteGatewayClassName] = constants.UnmanagedGatewayController
    	}
    
    	if features.EnableAmbientWaypoints {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/tests/end2end.mlir

      }
      tfr.return %res : !tfr.tensor
    }
    
    tfr.func @tf__my_add_n(%values: !tfr.tensor_list,
                           %n: i32 {tfr.name="N"}) -> !tfr.tensor {
      %index = arith.constant 0 : index
      %cst = arith.constant 1 : i32
      %eq = arith.cmpi eq, %n, %cst : i32
      %v1 = tfr.get_element %values[%index] : (!tfr.tensor_list, index) -> !tfr.tensor
      %res = scf.if %eq -> !tfr.tensor {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesIntegrationTest.groovy

            }
        }
        task res {
            def conf = configurations.conf
            def other = configurations.other
            doLast {
                // If we resolve twice the modified component metadata for 'projectA' must not be cached in-memory
                println conf.collect { it.name }
                println other.collect { it.name }
            }
        }
    }
    
    task res {
        def conf = configurations.conf
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.9K bytes
    - Viewed (0)
Back to top