Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for withName (0.34 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/DefaultConfigurationMetadata.java

            private ImmutableCapabilities capabilities;
            private ImmutableAttributes attributes;
            private ImmutableList<? extends ModuleComponentArtifactMetadata> artifacts;
    
            Builder withName(String name) {
                this.name = name;
                return this;
            }
    
            public Builder withArtifacts(ImmutableList<? extends ModuleComponentArtifactMetadata> artifacts) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/initialization/DefaultSettings.java

        }
    
        @Override
        @Inject
        public abstract SourceControl getSourceControl();
    
        @Override
        public void enableFeaturePreview(String name) {
            Feature feature = Feature.withName(name);
            if (feature.isActive()) {
                services.get(FeatureFlags.class).enable(feature);
            } else {
                DeprecationLogger
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  3. pkg/kube/krt/collection.go

    	}
    	for _, handler := range handlers {
    		handler(slices.Clone(events), false)
    	}
    }
    
    // WithName allows explicitly naming a controller. This is a best practice to make debugging easier.
    // If not set, a default name is picked.
    func WithName(name string) CollectionOption {
    	return func(c *collectionOptions) {
    		c.name = name
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. hack/golangci.yaml

              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
    - 9.8K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppLibraryPluginTest.groovy

        @Rule
        TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
        def projectDir = tmpDir.createDir("project")
        def project = ProjectBuilder.builder().withProjectDir(projectDir).withName("testLib").build()
    
        def "adds extension with convention for source layout and base name"() {
            given:
            def src = projectDir.file("src/main/cpp/main.cpp").createFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftLibraryPluginTest.groovy

        @Rule
        TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
        def projectDir = tmpDir.createDir("project")
        def project = ProjectBuilder.builder().withProjectDir(projectDir).withName("testLib").build()
    
        def "adds extension with convention for source layout and module name"() {
            given:
            def src = projectDir.file("src/main/swift/main.swift").createFile()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime.go

    // errors may be sent to a remote server for analysis. The context is used to
    // determine how to log the error.
    //
    // If contextual logging is enabled, the default log output is equivalent to
    //
    //	logr.FromContext(ctx).WithName("UnhandledError").Error(err, msg, keysAndValues...)
    //
    // Without contextual logging, it is equivalent to:
    //
    //	klog.ErrorS(err, msg, keysAndValues...)
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    		if tt, found := gateway.Labels[constants.AmbientWaypointForTrafficTypeLabel]; found {
    			trafficType = tt
    		}
    
    		return makeWaypoint(gateway, gatewayClass, serviceAccounts, trafficType)
    	}, krt.WithName("Waypoints"))
    }
    
    func makeInboundBinding(gateway *v1beta1.Gateway, gatewayClass *v1beta1.GatewayClass) InboundBinding {
    	annotation, ok := getGatewayOrGatewayClassAnnotation(gateway, gatewayClass)
    	if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

        @Rule
        TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
        def projectDir = tmpDir.createDir("project")
        def project = ProjectBuilder.builder().withProjectDir(projectDir).withName("testComponent").build()
    
        def "registers each binary of a component as it becomes known"() {
            def b1 = Stub(SoftwareComponent)
            b1.name >> "b1"
            def b2 = Stub(SoftwareComponent)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/controllermanager.go

    	if controllerCtx.Cloud != nil {
    		controllerCtx.Cloud.Initialize(controllerCtx.ClientBuilder, ctx.Done())
    	}
    
    	// Each controller is passed a context where the logger has the name of
    	// the controller set through WithName. That name then becomes the prefix of
    	// of all log messages emitted by that controller.
    	//
    	// In StartController, an explicit "controller" key is used instead, for two reasons:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top