Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,905 for Consumes (0.31 sec)

  1. staging/src/k8s.io/api/discovery/v1beta1/types.go

    type EndpointHints struct {
    	// forZones indicates the zone(s) this endpoint should be consumed by to
    	// enable topology aware routing. May contain a maximum of 8 entries.
    	// +listType=atomic
    	ForZones []ForZone `json:"forZones,omitempty" protobuf:"bytes,1,name=forZones"`
    }
    
    // ForZone provides information about which zones should consume this endpoint.
    type ForZone struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/discovery/v1/types.go

    // EndpointHints provides hints describing how an endpoint should be consumed.
    type EndpointHints struct {
    	// forZones indicates the zone(s) this endpoint should be consumed by to
    	// enable topology aware routing.
    	// +listType=atomic
    	ForZones []ForZone `json:"forZones,omitempty" protobuf:"bytes,1,name=forZones"`
    }
    
    // ForZone provides information about which zones should consume this endpoint.
    type ForZone struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/services/internal/BuildServiceProvider.java

            BuildServiceRegistryInternal buildServiceRegistry = (BuildServiceRegistryInternal) serviceLookup.get(BuildServiceRegistry.class);
            BuildServiceProvider<T, P> consumer = Cast.uncheckedCast(buildServiceRegistry.consume(buildServiceName, property.getType()));
            property.convention(consumer);
        }
    
        public abstract BuildServiceDetails<T, P> getServiceDetails();
    
        public abstract String getName();
    
        @Override
        @Nonnull
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    Method in class org.hamcrest.Condition N next() - Method in class org.hamcrest.internal.ArrayIterator next() - Method in class org.hamcrest.internal.SelfDescribingValueI NONE - Static variable in interface org.hamcrest.Description A description that consumes input but does nothing. not(Matcher<T>) - Static method in class org.hamcrest.core.IsNot Creates a matcher that wraps an existing matcher, but inverts the logic by which it will match. not(T) - Static method in class org.hamcrest.core.IsNot A shortcut...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/library_vs_application.adoc

    Gradle makes the difference between different kinds of consumer even within a single project: the Java compile task, for example, is a different consumer than the Java exec task.
    
    More details on the segregation of API and runtime dependencies in the Java world <<java_library_plugin.adoc#java_library_plugin,can be found here>>.
    
    [[sub:being-respectful-consumers]]
    == Being respectful of consumers
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_workers.go

    		delete(p.startedStaticPodsByFullname, status.fullname)
    	}
    }
    
    // startPodSync is invoked by each pod worker goroutine when a message arrives on the pod update channel.
    // This method consumes a pending update, initializes a context, decides whether the pod is already started
    // or can be started, and updates the cached pod state so that downstream components can observe what the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    			// asking cmd/cover for a static meta-data file as part of
    			// the package build. This static meta-data file is then
    			// consumed by a pseudo-action (writeCoverMetaAct) that
    			// adds it to a summary file, then this summary file is
    			// consumed by the various "run test" actions. Below we
    			// add a dependence edge between the build action and the
    			// "write meta files" pseudo-action, and then another dep
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/GlobalLoggingManipulationIntegrationTest.groovy

            int read() {
                throw new RuntimeException("Input stream should not be consumed");
            }
    
            def invokeMethod(String name, args) {
                throw new RuntimeException("Input stream should not be consumed");
            }
        }
    
        def "tooling api should never consume the std in"() {
            given:
            System.in = new FailingInputStream()
            buildFile << "task hey"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomArtifactTransformer.java

                }
                for (Artifact consumer : consumers) {
                    result.remove(consumer);
                    result.add(new DefaultArtifact(
                            consumer.getGroupId(),
                            consumer.getArtifactId(),
                            "",
                            consumer.getExtension(),
                            consumer.getVersion(),
                            consumer.getProperties(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. test/fixedbugs/issue19201.go

    	want = binary.BigEndian.Uint32(bin)
    
    	c consumer = noopConsumer{}
    )
    
    type msg struct {
    	code uint32
    }
    
    type consumer interface {
    	consume(msg)
    }
    
    type noopConsumer struct{}
    
    func (noopConsumer) consume(msg) {}
    
    func init() {
    	close(ch1)
    }
    
    func main() {
    	var m msg
    	m.code = binary.BigEndian.Uint32(bin)
    
    	select {
    	case <-ch1:
    		c.consume(m)
    		if m.code != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 19:07:23 UTC 2017
    - 765 bytes
    - Viewed (0)
Back to top