Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 212 for newnames (0.15 sec)

  1. pkg/kube/krt/bench_test.go

    		if p.Status.PodIP == "" {
    			return nil
    		}
    		services := krt.Fetch(ctx, Services, krt.FilterIndex(ServicesByNamespace, p.Namespace), krt.FilterSelectsNonEmpty(p.GetLabels()))
    		return &Workload{
    			Named:        krt.NewNamed(p),
    			IP:           p.Status.PodIP,
    			ServiceNames: slices.Map(services, func(e *v1.Service) string { return e.Name }),
    		}
    	})
    	Workloads.Register(func(e krt.Event[Workload]) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/sidecar/selector.go

    	reportedResources := make(map[string]bool)
    	for p, sList := range podsToSidecars {
    		podResource := pods[p]
    
    		if len(sList) == 1 && !util.PodInAmbientMode(podResource) {
    			continue
    		}
    
    		sNames := getNames(sList)
    
    		for _, rs := range sList {
    			// We don't want to report errors for pods in ambient mode, since there is no sidecar,
    			// but we do want to warn that the policy is ineffective.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        // operation.
        const auto new_name = fld->UniqueFunctionName(
            absl::StrCat(loop_cond_func->name(), "_send_pred_added_"));
        TF_RETURN_IF_ERROR(GraphToFunctionDef(*g, new_name, &replace_fdef));
        TF_RETURN_IF_ERROR(fld->AddFunctionDef(replace_fdef));
        loop_cond_func->set_name(new_name);
        while_node->ClearAttr("cond");
        while_node->AddAttr("cond", *loop_cond_func);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/sidecar/util.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package sidecar
    
    import (
    	"sort"
    
    	"istio.io/istio/pkg/config/resource"
    )
    
    func getNames(entries []*resource.Instance) []string {
    	names := make([]string, 0, len(entries))
    	for _, rs := range entries {
    		names = append(names, string(rs.Metadata.FullName.Name))
    	}
    	sort.Strings(names)
    	return names
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 884 bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/plugins/NativeBasePlugin.java

                        // Determine which output to produce at development time.
                        final FileCollection outputs = binary.getOutputs();
                        Names names = ((ComponentWithNames) binary).getNames();
                        tasks.register(names.getTaskName("assemble"), task -> task.dependsOn(outputs));
    
                        if (binary == ((ProductionComponent) component).getDevelopmentBinary().get()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  6. pkg/test/loadbalancersim/lb_test.go

    												})
    											}
    
    											// Allocate the nodes in the configured topology.
    											m.NewNodes(topologyCase.countSameZone, serviceTime, enableQueueLatency, sameZone)
    											m.NewNodes(topologyCase.countSameRegion, serviceTime, enableQueueLatency, sameRegion)
    											m.NewNodes(topologyCase.countOtherRegion, serviceTime, enableQueueLatency, otherRegion)
    
    											runTest(t, testSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 19 23:29:30 UTC 2022
    - 11K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift3Test.groovy

        }
    
        @Override
        List<XCTestCaseElement> getTestCases() {
            return [
                testCase("testOnlyOneEntryWithSpecificFirstAndLastName",
                    """// Assume only one entry
                    getNames().forEach({ first, last in
                        XCTAssertEqual(first, "Bart")
                        XCTAssertEqual(last, "den Hollander")
                    })"""),
                testCase("testMultiLineStringContainsSpecificString",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/export.go

    	fn := ir.NewFunc(src.NoXPos, src.NoXPos, s, t)
    	importsym(fn.Nname)
    }
    
    // importvar declares symbol s as an imported variable with type t.
    func importvar(s *types.Sym, t *types.Type) {
    	n := ir.NewNameAt(src.NoXPos, s, t)
    	n.Class = ir.PEXTERN
    	importsym(n)
    }
    
    func importsym(name *ir.Name) {
    	sym := name.Sym()
    	if sym.Def != nil {
    		base.Fatalf("importsym of symbol that already exists: %v", sym.Def)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:28 UTC 2023
    - 838 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/universe.go

    		def(universeAnyAlias)
    	}
    
    	// type error interface{ Error() string }
    	{
    		obj := NewTypeName(nopos, nil, "error", nil)
    		obj.setColor(black)
    		typ := NewNamed(obj, nil, nil)
    
    		// error.Error() string
    		recv := NewVar(nopos, nil, "", typ)
    		res := NewVar(nopos, nil, "", Typ[String])
    		sig := NewSignatureType(recv, nil, nil, nil, NewTuple(res), false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/go/types/universe.go

    		def(universeAnyAlias)
    	}
    
    	// type error interface{ Error() string }
    	{
    		obj := NewTypeName(nopos, nil, "error", nil)
    		obj.setColor(black)
    		typ := NewNamed(obj, nil, nil)
    
    		// error.Error() string
    		recv := NewVar(nopos, nil, "", typ)
    		res := NewVar(nopos, nil, "", Typ[String])
    		sig := NewSignatureType(recv, nil, nil, nil, NewTuple(res), false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top