Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 896 for Consumes (0.18 sec)

  1. src/runtime/debuglog.go

    // the log as it gets overwritten. That reader state is where an
    // actual log reader would start.
    type debugLogWriter struct {
    	_     sys.NotInHeap
    	write uint64
    	data  debugLogBuf
    
    	// tick and nano are the time bases from the most recently
    	// written sync record.
    	tick, nano uint64
    
    	// r is a reader that consumes records as they get overwritten
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. src/runtime/tracebuf.go

    	buf.pos += copy(buf.arr[buf.pos:], s)
    }
    
    func (buf *traceBuf) available(size int) bool {
    	return len(buf.arr)-buf.pos >= size
    }
    
    // varintAt writes varint v at byte position pos in buf. This always
    // consumes traceBytesPerNumber bytes. This is intended for when the caller
    // needs to reserve space for a varint but can't populate it until later.
    // Use varintReserve to reserve this space.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. src/text/template/parse/parse.go

    func (t *Tree) error(err error) {
    	t.errorf("%s", err)
    }
    
    // expect consumes the next token and guarantees it has the required type.
    func (t *Tree) expect(expected itemType, context string) item {
    	token := t.nextNonSpace()
    	if token.typ != expected {
    		t.unexpected(token, context)
    	}
    	return token
    }
    
    // expectOneOf consumes the next token and guarantees it has one of the required types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go

    	}
    
    	// Build consume media types
    	if httpMethod == "PATCH" {
    		supportedTypes := []string{
    			string(types.JSONPatchType),
    			string(types.MergePatchType),
    			string(types.ApplyPatchType),
    		}
    		route.Consumes(supportedTypes...)
    	} else {
    		route.Consumes(runtime.ContentTypeJSON, runtime.ContentTypeYAML)
    	}
    
    	// Build option parameters
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

    import javax.tools.Diagnostic;
    import javax.tools.DiagnosticListener;
    import javax.tools.JavaFileObject;
    import java.util.Locale;
    import java.util.function.Function;
    
    /**
     * A {@link DiagnosticListener} that consumes {@link Diagnostic} messages, and reports them as Gradle {@link Problems}.
     */
    // If this annotation is not present, all diagnostic messages would be wrapped in a ClientCodeWrapper.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/CompactLinkedHashSet.java

     * good job of distributing the elements to the buckets to a distribution not far from uniform), and
     * amortized since some operations can trigger a hash table resize.
     *
     * <p>This implementation consumes significantly less memory than {@code java.util.LinkedHashSet} or
     * even {@code java.util.HashSet}, and places considerably less load on the garbage collector. Like
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 21:38:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/CompactLinkedHashSet.java

     * good job of distributing the elements to the buckets to a distribution not far from uniform), and
     * amortized since some operations can trigger a hash table resize.
     *
     * <p>This implementation consumes significantly less memory than {@code java.util.LinkedHashSet} or
     * even {@code java.util.HashSet}, and places considerably less load on the garbage collector. Like
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 21:38:59 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go

    	cbor "k8s.io/apimachinery/pkg/runtime/serializer/cbor/direct"
    	"k8s.io/klog/v2"
    )
    
    // 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
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder_test.go

    							expected := []string{"application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml"}
    							assert.Equal(t, expected, operation.Consumes)
    						} else {
    							assert.Equal(t, []string{"application/json", "application/yaml"}, operation.Consumes)
    						}
    					}
    				}
    				assert.Equal(t, expected.expectedActions, actions)
    			})
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. docs/en/docs/deployment/manually.md

        It is equivalent to:
    
        ```Python
        from main import app
        ```
    
    !!! warning
        Uvicorn and others support a `--reload` option that is useful during development.
    
        The `--reload` option consumes much more resources, is more unstable, etc.
    
        It helps a lot during **development**, but you **shouldn't** use it in **production**.
    
    ## Hypercorn with Trio
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top