Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for Consumes (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	// Backwards compatibility, we accepted objects with empty content-type at V1.
    	// If we stop using go-restful, we can default empty content-type to application/json on an
    	// endpoint by endpoint basis
    	ws.Consumes("*/*")
    	mediaTypes, streamMediaTypes := negotiation.MediaTypesForSerializer(a.group.Serializer)
    	ws.Produces(append(mediaTypes, streamMediaTypes...)...)
    	ws.ApiVersion(a.group.GroupVersion.String())
    
    	return ws
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. src/time/format.go

    			return 0, errors.New("time: invalid duration " + quote(orig))
    		}
    		// Consume [0-9]*
    		pl := len(s)
    		v, s, err = leadingInt(s)
    		if err != nil {
    			return 0, errors.New("time: invalid duration " + quote(orig))
    		}
    		pre := pl != len(s) // whether we consumed anything before a period
    
    		// Consume (\.[0-9]*)?
    		post := false
    		if s != "" && s[0] == '.' {
    			s = s[1:]
    			pl := len(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    If one task produces an output in a location and another task consumes that location by referring to it as an input, then Gradle checks that the consumer task depends on the producer task.
    When the producer and the consumer tasks are executing at the same time, the build fails to avoid capturing an incorrect state.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. src/bufio/bufio_test.go

    type eofReader struct {
    	buf []byte
    }
    
    func (r *eofReader) Read(p []byte) (int, error) {
    	read := copy(p, r.buf)
    	r.buf = r.buf[read:]
    
    	switch read {
    	case 0, len(r.buf):
    		// As allowed in the documentation, this will return io.EOF
    		// in the same call that consumes the last of the data.
    		// https://godoc.org/io#Reader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  5. src/go/parser/parser.go

    	}
    }
    
    // advance consumes tokens until the current token p.tok
    // is in the 'to' set, or token.EOF. For error recovery.
    func (p *parser) advance(to map[token.Token]bool) {
    	for ; p.tok != token.EOF; p.next() {
    		if to[p.tok] {
    			// Return only if parser made some progress since last
    			// sync or if it has not reached 10 advance calls without
    			// progress. Otherwise consume at least one token to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/cmd/compile/internal/syntax/parser.go

    	1<<_Select |
    	1<<_Switch |
    	1<<_Type |
    	1<<_Var
    
    // advance consumes tokens until it finds a token of the stopset or followlist.
    // The stopset is only considered if we are inside a function (p.fnest > 0).
    // The followlist is the list of valid tokens that can follow a production;
    // if it is empty, exactly one (non-EOF) token is consumed to ensure progress.
    func (p *parser) advance(followlist ...token) {
    	if trace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.BoolValue stableValidationPolicy = 1;
    }
    
    // IntOrString is a type that can hold an int32 or a string.  When used in
    // JSON or YAML marshalling and unmarshalling, it produces or consumes the
    // inner type.  This allows you to have, for example, a JSON field that can
    // accept a name or number.
    // TODO: Rename to Int32OrString
    //
    // +protobuf=true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. 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)
Back to top