Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,905 for Consumes (0.13 sec)

  1. pkg/kubelet/metrics/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"lifecycle", "config", "static"},
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/parse.go

    		if tok == '#' {
    			// A leftover wisp of a #include/#define/etc,
    			// to let us know that p.sawCode should be true now.
    			// Otherwise ignored.
    			continue
    		}
    		return tok
    	}
    }
    
    // line consumes a single assembly line from p.lex of the form
    //
    //	{label:} WORD[.cond] [ arg {, arg} ] (';' | '\n')
    //
    // It adds any labels to p.pendingLabels and returns the word, cond,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/coderepo.go

    		// If r.codeDir is non-empty, then the go.mod file must exist: the module
    		// author — not the module consumer, — gets to decide how to carve up the repo
    		// into modules.
    		//
    		// Conversely, if the go.mod file exists, the module author — not the module
    		// consumer — gets to determine the module's path
    		//
    		// r.findDir verifies both of these conditions. Execute it now so that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  4. pilot/pkg/xds/eds_test.go

    	wg := &sync.WaitGroup{}
    	errChan := make(chan error, nclients)
    
    	// Bad client - will not read any response. This triggers Write to block, which should
    	// be detected
    	// This is not using adsc, which consumes the events automatically.
    	ads := s.ConnectADS()
    	ads.Request(t, nil)
    
    	n := nclients
    	wg.Add(n)
    	wgConnect.Add(n)
    	rcvPush := uatomic.NewInt32(0)
    	rcvClients := uatomic.NewInt32(0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/integTest/resources/org/gradle/scala/compile/ScalaCompileWithJavaLibraryIntegrationTest/javaLibraryCanDependOnScalaLibraryProject/src/main/java/com/acme/consumer/Consumer.java

    package com.acme.consumer;
    
    import com.acme.lib.Person;
    
    public class Consumer {
        private final Person person;
    
        public Consumer(Person person) {
            this.person = person;
        }
    
        public Person getPerson() {
            return person;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 252 bytes
    - Viewed (0)
  6. api/maven-api-meta/src/main/java/org/apache/maven/api/annotations/Consumer.java

     * <p>
     * A type can be marked {@link Consumer} or {@link Provider} but not both. A type is assumed to be
     * {@link Consumer} if it is not marked either {@link Consumer} or {@link Provider}.
     * <p>
     * A package can be marked {@link Consumer}. In this case, all types in the package are considered
     * to be a provider type regardless of whether they are marked {@link Consumer} or {@link Provider}.
     *
     * @see Provider
     * @since 4.0.0
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. src/net/lookup_test.go

    	if !*testDNSFlood {
    		t.Skip("test disabled; use -dnsflood to enable")
    	}
    
    	defer dnsWaitGroup.Wait()
    
    	var N = 5000
    	if runtime.GOOS == "darwin" || runtime.GOOS == "ios" {
    		// On Darwin this test consumes kernel threads much
    		// than other platforms for some reason.
    		// When we monitor the number of allocated Ms by
    		// observing on runtime.newm calls, we can see that it
    		// easily reaches the per process ceiling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/pe.go

    			dr = d
    			m = new(Imp)
    		}
    
    		// Because external link requires properly stdcall decorated name,
    		// all external symbols in runtime use %n to denote that the number
    		// of uinptrs this function consumes. Store the argsize and discard
    		// the %n suffix if any.
    		m.argsize = -1
    		extName := ldr.SymExtname(s)
    		if i := strings.IndexByte(extName, '%'); i >= 0 {
    			var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/CharMatcher.java

       *
       * <p>This method has no effect (returns {@code this}) when called in GWT: it's unclear whether a
       * precomputed matcher is faster, but it certainly consumes more memory, which doesn't seem like a
       * worthwhile tradeoff in a browser.
       */
      public CharMatcher precomputed() {
        return Platform.precomputeCharMatcher(this);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/CharMatcher.java

       *
       * <p>This method has no effect (returns {@code this}) when called in GWT: it's unclear whether a
       * precomputed matcher is faster, but it certainly consumes more memory, which doesn't seem like a
       * worthwhile tradeoff in a browser.
       */
      public CharMatcher precomputed() {
        return Platform.precomputeCharMatcher(this);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top