Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for METHOD (0.08 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGroovyClosureIntegrationTest.groovy

            where:
            expression      | _
            "version"       | _
            "this.version"  | _
            "owner.version" | _
        }
    
        def "from-cache build fails when task action closure invokes a project method"() {
            given:
            buildFile << """
                tasks.register("some") {
                    doFirst {
                        println(file("broken"))
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java

            return resolve(DependencyResolverRequest.build(
                    session, DependencyResolverRequest.RequestType.RESOLVE, dependencies, scope));
        }
    
        /**
         * This method collects, flattens and resolves the dependencies.
         *
         * @param request the request to resolve
         * @return the result of the resolution
         * @throws DependencyResolverException
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. pkg/kube/krt/informer.go

    // NewInformer creates a Collection[I] sourced from
    // the results of kube.Client querying resources of type I
    // from the API Server.
    //
    // Resources must have their GVR and GVK registered in the
    // kube.Client before this method is called, otherwise
    // NewInformer will panic.
    func NewInformer[I controllers.ComparableObject](c kube.Client, opts ...CollectionOption) Collection[I] {
    	return NewInformerFiltered[I](c, kubetypes.Filter{}, opts...)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 11:01:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    	rest "k8s.io/client-go/rest"
    	consistencydetector "k8s.io/client-go/util/consistencydetector"
    	watchlist "k8s.io/client-go/util/watchlist"
    	"k8s.io/klog/v2"
    )
    
    // ExamplesGetter has a method to return a ExampleInterface.
    // A group's client should implement this interface.
    type ExamplesGetter interface {
    	Examples(namespace string) ExampleInterface
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top