Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 112 for predefined (2.08 sec)

  1. src/internal/syscall/windows/registry/key.go

    )
    
    // Key is a handle to an open Windows registry key.
    // Keys can be obtained by calling OpenKey; there are
    // also some predefined root keys such as CURRENT_USER.
    // Keys can be used directly in the Windows API.
    type Key syscall.Handle
    
    const (
    	// Windows defines some predefined root keys that are always open.
    	// An application can use these keys as entry points to the registry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. 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)
  3. src/internal/zstd/fse.go

    			basebits := matchLengthBase[idx]
    			be.baseline = basebits & 0xffffff
    			be.basebits = uint8(basebits >> 24)
    		}
    		baselineTable[i] = be
    	}
    	return nil
    }
    
    // predefinedLiteralTable is the predefined table to use for literal lengths.
    // Generated from table in RFC 3.1.1.3.2.2.1.
    // Checked by TestPredefinedTables.
    var predefinedLiteralTable = [...]fseBaselineEntry{
    	{0, 0, 4, 0}, {0, 0, 4, 16}, {1, 0, 5, 32},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/flags/flags.go

    }
    
    var (
    	D        MultiFlag
    	I        MultiFlag
    	PrintOut int
    	DebugV   bool
    )
    
    func init() {
    	flag.Var(&D, "D", "predefined symbol with optional simple value -D=identifier=value; can be set multiple times")
    	flag.Var(&I, "I", "include directory; can be set multiple times")
    	flag.BoolVar(&DebugV, "v", false, "print debug output")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:23 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenModule.groovy

         */
        MavenModule variant(String variant, Map<String, String> attributes, @DelegatesTo(value= VariantMetadataSpec, strategy=Closure.DELEGATE_FIRST) Closure<?> variantConfiguration)
    
        /**
         * Clears all predefined variants
         */
        MavenModule adhocVariants()
    
        String getPublishArtifactVersion()
    
        String getGroupId()
    
        String getArtifactId()
    
        String getVersion()
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/html/template/escape_test.go

    	}
    	for _, test := range [...]struct {
    		desc, input, output string
    	}{
    		// covering issue 20323
    		{
    			"field with predefined escaper name 1",
    			`{{.html | print}}`,
    			`&lt;h1&gt;Hi!&lt;/h1&gt;`,
    		},
    		// covering issue 20323
    		{
    			"field with predefined escaper name 2",
    			`{{.urlquery | print}}`,
    			`http://www.foo.com/index.html?title=main`,
    		},
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/test_lift_quantizable_spots_as_functions_with_quantization_specs.cc

      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(
          TestLiftQuantizableSpotsAsFunctionsWithQuantizationSpecsPass)
    
     private:
      void runOnOperation() override;
    };
    
    // `TestQuantizationSpecs` -> predefined `QuantizationSpecs` textproto.
    absl::string_view GetQuantizationSpecsTextProto(
        const TestQuantizationSpecs test_specs) {
      switch (test_specs) {
        case TestQuantizationSpecs::kEmpty:
          return kSpecsEmpty;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:21:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. src/cmd/internal/goobj/mkbuiltin.go

    			log.Fatal("unhandled decl type", decl)
    		}
    	}
    
    	// The list above only contains ones that are used by the frontend.
    	// The backend may create more references of builtin functions.
    	// We also want to include predefined types.
    	// Add them.
    	extras := append(fextras[:], enumerateBasicTypes()...)
    	for _, b := range extras {
    		prefix := ""
    		if !strings.HasPrefix(b.name, "type:") {
    			prefix = pkg + "."
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. tools/packaging/common/istio-start.sh

    CA_ADDR=${CA_ADDR:-${CUSTOM_PILOT_ADDRESS:-${DEFAULT_PILOT_ADDRESS}}}
    PROV_CERT=${PROV_CERT-./etc/certs}
    OUTPUT_CERTS=${OUTPUT_CERTS-./etc/certs}
    
    export PROV_CERT
    export OUTPUT_CERTS
    export CA_ADDR
    
    # If predefined ISTIO_AGENT_FLAGS is null, make it an empty string.
    ISTIO_AGENT_FLAGS=${ISTIO_AGENT_FLAGS:-}
    # Split ISTIO_AGENT_FLAGS by spaces.
    IFS=' ' read -r -a ISTIO_AGENT_FLAGS_ARRAY <<< "$ISTIO_AGENT_FLAGS"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. pkg/kube/inject/webhook_test.go

    			// :ENV:=, these two are not correct variables.
    			name: "no-predefined-kv-with-values-contain-ENV-separator-invalid-format",
    			in:   "/inject/:ENV:rootpage1=efgh:ENV:=abb:ENV:=",
    			want: map[string]string{"ROOTPAGE1": "efgh"},
    		},
    		{
    			// this is to test that the path is an url encoded string, still using
    			// slash as separators
    			name: "no-predefined-kv-with-mixed-values",
    			in: func() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 39K bytes
    - Viewed (1)
Back to top