Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for predefined (0.22 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/passes.td

      let summary = "Test-only pass for testing the LiftQuantizableSpotsAsFunctionsPass with a predefined QuantizationSpecs.";
      let description = [{
        This test-only pass is the same as `LiftQuantizableSpotsAsFunctionsPass` but
        has predefined `QuantizationSpecs` to make FileCheck testing easier.
      }];
      let options = [
        Option<"quantization_specs_", "quantization-specs",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:21:42 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/html/template/escape.go

    		return c
    	}
    	c = nudge(c)
    	// Check for disallowed use of predefined escapers in the pipeline.
    	for pos, idNode := range n.Pipe.Cmds {
    		node, ok := idNode.Args[0].(*parse.IdentifierNode)
    		if !ok {
    			// A predefined escaper "esc" will never be found as an identifier in a
    			// Chain or Field node, since:
    			// - "esc.x ..." is invalid, since predefined escapers return strings, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/ConfigurationRolesSpec.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts.configurations
    
    import spock.lang.Specification
    
    class ConfigurationRolesSpec extends Specification {
        def "can find predefined role #role"() {
            when:
            def result = ConfigurationRoles.byUsage(consumable, resolvable, declarable)
    
            then:
            result.isPresent()
            result.get() == role
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/additional-responses.md

    ```
    
    It will all be combined and included in your OpenAPI, and shown in the API docs:
    
    <img src="/img/tutorial/additional-responses/image01.png">
    
    ## Combine predefined responses and custom ones
    
    You might want to have some predefined responses that apply to many *path operations*, but you want to combine them with custom responses needed by each *path operation*.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. src/html/template/error.go

    	ErrSlashAmbig
    
    	// ErrPredefinedEscaper: "predefined escaper ... disallowed in template"
    	// Example:
    	//   <div class={{. | html}}>Hello<div>
    	// Discussion:
    	//   Package html/template already contextually escapes all pipelines to
    	//   produce HTML output safe against code injection. Manually escaping
    	//   pipeline output using the predefined escapers "html" or "urlquery" is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/Files.java

       *
       * @param file the file to read from
       * @param charset the charset used to decode the input stream; see {@link StandardCharsets} for
       *     helpful predefined constants
       * @return the buffered reader
       */
      public static BufferedReader newReader(File file, Charset charset) throws FileNotFoundException {
        checkNotNull(file);
        checkNotNull(charset);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/passes.h

    #define TENSORFLOW_COMPILER_MLIR_QUANTIZATION_STABLEHLO_PASSES_TESTING_PASSES_H_
    
    #include "mlir/Pass/Pass.h"  // from @llvm-project  // IWYU pragma: keep
    
    namespace mlir::quant::stablehlo::testing {
    
    // Identifies predefined `QuantizationSpecs` for
    // `TestLiftQuantizableSpotsAsFunctionsWithQuantizationSpecsPass`. The pass
    // option argument is specified in line comments for each enum value.
    enum class TestQuantizationSpecs {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:21:42 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. pkg/proxy/util/nfacct/nfacct_linux_test.go

    }
    
    // newRequest creates a request object with the given cmd, flags, predefined response and error.
    // It additionally records the created request object.
    func (fh *fakeHandler) newRequest(cmd int, flags uint16) request {
    	var response [][]byte
    	if fh.responses != nil && len(fh.responses) > 0 {
    		response = fh.responses[0]
    		// remove the response from the list of predefined responses and add it to request object for mocking.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/path-params.md

    Similarly, you cannot redefine a path operation:
    
    ```Python hl_lines="6  11"
    {!../../../docs_src/path_params/tutorial003b.py!}
    ```
    
    The first one will always be used since the path matches first.
    
    ## Predefined values
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. hack/make-rules/update.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # A single script that runs a predefined set of update-* scripts, as they often go together.
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    SILENT=${SILENT:-true}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top