Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,905 for Consumes (0.12 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/ctrlflow/ctrlflow.go

    	return c.funcLits[lit].cfg
    }
    
    func run(pass *analysis.Pass) (interface{}, error) {
    	inspect := pass.ResultOf[inspect.Analyzer].(*inspector.Inspector)
    
    	// Because CFG construction consumes and produces noReturn
    	// facts, CFGs for exported FuncDecls must be built before 'run'
    	// returns; we cannot construct them lazily.
    	// (We could build CFGs for FuncLits lazily,
    	// but the benefit is marginal.)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/tensorflow/transforms/parallel_execute_to_islands.cc

            parallel_execute_op_islands.push_back(island_op);
        }
      });
    
      // This number is unique within each function which is sufficient for
      // `UpdateControlDependenciesPass` which consumes the related attributes.
      // However, this assumes that we don't inline functions between this pass
      // and `UpdateControlDependenciesPass`.
      // If we need globally unique parallel group IDs in the future,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/regexp/backtrack.go

    				arg = false
    				pc = inst.Arg
    				goto CheckAndLoop
    			} else {
    				b.push(re, pc, pos, true)
    				pc = inst.Out
    				goto CheckAndLoop
    			}
    
    		case syntax.InstAltMatch:
    			// One opcode consumes runes; the other leads to match.
    			switch re.prog.Inst[inst.Out].Op {
    			case syntax.InstRune, syntax.InstRune1, syntax.InstRuneAny, syntax.InstRuneAnyNotNL:
    				// inst.Arg is the match.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K 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