Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 142 for predefined (0.24 sec)

  1. src/internal/zstd/fse_test.go

    import (
    	"slices"
    	"testing"
    )
    
    // literalPredefinedDistribution is the predefined distribution table
    // for literal lengths. RFC 3.1.1.3.2.2.1.
    var literalPredefinedDistribution = []int16{
    	4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1,
    	2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 1, 1, 1, 1, 1,
    	-1, -1, -1, -1,
    }
    
    // offsetPredefinedDistribution is the predefined distribution table
    // for offsets. RFC 3.1.1.3.2.2.3.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. tests/integration/security/fuzz/README.md

    large number of fuzzed requests. The mutation is based on a predefined path (`/private/secret.html`) that should be
    rejected by either the request authentication or the authorization policy.
    
    The test backend uses real Web servers (`apache`, `nginx` and `tomcat`) configured to serve at the above predefined path.
    If a fuzzer generated request successfully gets the data at the predefined path, it means a policy bypass has happened
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 09 02:34:11 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. test/fixedbugs/gcc61273.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // PR61273: gccgo failed to compile a SendStmt in the PostStmt of a ForClause
    // that involved predefined constants.
    
    package main
    
    func main() {
    	c := make(chan bool, 1)
    	for ; false; c <- false {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 375 bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/Resources.java

       *
       * @param url the URL to read from
       * @param charset the charset used to decode the input stream; see {@link Charsets} for helpful
       *     predefined constants
       * @return a string containing all the characters from the URL
       * @throws IOException if an I/O error occurs.
       */
      public static String toString(URL url, Charset charset) throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. 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)
  9. guava/src/com/google/common/io/Resources.java

       *
       * @param url the URL to read from
       * @param charset the charset used to decode the input stream; see {@link Charsets} for helpful
       *     predefined constants
       * @return a string containing all the characters from the URL
       * @throws IOException if an I/O error occurs.
       */
      public static String toString(URL url, Charset charset) throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. 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)
Back to top