Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for withName (0.29 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

            }
            hasDependency('simple-with-rich1') {
                withGroup 'foo'
                withName 'bar'
                withVersion {
                    prefer '1.0'
                }
            }
            hasDependency('simple-with-rich2') {
                withGroup 'foo'
                withName 'bar'
                withVersion {
                    prefer '1.0'
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/policies.go

    			LabelSelector: model.NewSelector(i.Spec.GetSelector().GetMatchLabels()),
    		}
    	}, krt.WithName("PeerAuthDerivedPolicies"))
    
    	ImplicitWaypointPolicies := krt.NewCollection(Waypoints, func(ctx krt.HandlerContext, waypoint Waypoint) *model.WorkloadAuthorization {
    		return implicitWaypointPolicy(ctx, MeshConfig, waypoint)
    	}, krt.WithName("DefaultAllowFromWaypointPolicies"))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    	Services := krt.NewInformerFiltered[*v1.Service](options.Client, filter, krt.WithName("Services"))
    	Nodes := krt.NewInformerFiltered[*v1.Node](options.Client, kclient.Filter{
    		ObjectFilter:    options.Client.ObjectFilter(),
    		ObjectTransform: kubeclient.StripNodeUnusedFields,
    	}, krt.WithName("Nodes"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/services.go

    			Source:        kind.Service,
    			Waypoint:      waypointKey,
    		}
    	}, krt.WithName("ServicesInfo"))
    	ServiceEntriesInfo := krt.NewManyCollection(ServiceEntries, a.serviceEntryServiceBuilder(Waypoints, Namespaces), krt.WithName("ServiceEntriesInfo"))
    	WorkloadServices := krt.JoinCollection([]krt.Collection[model.ServiceInfo]{ServicesInfo, ServiceEntriesInfo}, krt.WithName("WorkloadServices"))
    	// workloadapi services NOT workloads x services somehow
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/meshconfig.go

    				n, err := mesh.ApplyMeshConfig(meshConfigMapData(c), meshCfg)
    				if err != nil {
    					log.Error(err)
    					continue
    				}
    				meshCfg = n
    			}
    			return &MeshConfig{meshCfg}
    		}, krt.WithName("MeshConfig"),
    	)
    }
    
    func meshConfigMapData(cm *v1.ConfigMap) string {
    	if cm == nil {
    		return ""
    	}
    
    	cfgYaml, exists := cm.Data["mesh"]
    	if !exists {
    		return ""
    	}
    
    	return cfgYaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    		krt.WithName("PodWorkloads"),
    	)
    	WorkloadEntryWorkloads := krt.NewCollection(
    		WorkloadEntries,
    		a.workloadEntryWorkloadBuilder(MeshConfig, AuthorizationPolicies, PeerAuths, Waypoints, WorkloadServices, WorkloadServicesNamespaceIndex, Namespaces),
    		krt.WithName("WorkloadEntryWorkloads"),
    	)
    	ServiceEntryWorkloads := krt.NewManyCollection(
    		ServiceEntries,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. hack/logcheck.conf

    contextual k8s.io/kubernetes/pkg/controller/.*
    contextual k8s.io/kubernetes/pkg/scheduler/.*
    contextual k8s.io/kubernetes/test/e2e/dra/.*
    
    # As long as contextual logging is alpha or beta, all WithName, WithValues,
    # NewContext calls have to go through klog. Once it is GA, we can lift
    # this restriction. Whether we then do a global search/replace remains
    # to be decided.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/containerstatus.go

    	return &ContainerStatusApplyConfiguration{}
    }
    
    // WithName sets the Name field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Name field is set to the value of the last call.
    func (b *ContainerStatusApplyConfiguration) WithName(value string) *ContainerStatusApplyConfiguration {
    	b.Name = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/util/TestUtil.groovy

                .withName("test-project")
            if (userHomeDir != null) {
                builder.withGradleUserHomeDir(userHomeDir)
            }
            return builder.build()
        }
    
        static ProjectInternal createChildProject(ProjectInternal parent, String name, File projectDir = null) {
            return ProjectBuilder
                .builder()
                .withName(name)
                .withParent(parent)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/ProjectBuilder.java

            return this;
        }
    
        /**
         * Specifies the name for the project
         *
         * @param name project name
         * @return The builder
         */
        public ProjectBuilder withName(String name) {
            this.name = name;
            return this;
        }
    
        /**
         * Specifies the parent project. Use it to create multi-module projects.
         *
         * @param parent parent project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top