Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 133 for predefined (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/lite/ir/tfl_op_enums.td

    def TFL_AFAttr : TFL_AnyStrAttrOf<[
          TFL_AFEnum_None.symbol,  TFL_AFEnum_Relu.symbol, TFL_AFEnum_Relu1.symbol,
          TFL_AFEnum_Relu6.symbol, TFL_AFEnum_Tanh.symbol, TFL_AFEnum_Sign.symbol
        ]>;
    
    // Predefined constant attributes of activation function
    def TFL_AF_None  : ConstantStrAttr<TFL_AFAttr, TFL_AFEnum_None.symbol>;
    def TFL_AF_Relu  : ConstantStrAttr<TFL_AFAttr, TFL_AFEnum_Relu.symbol>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 20 00:05:24 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/universe.go

    		NewField(src.NoXPos, nil, Types[TSTRING]),
    	})
    	method := NewField(src.NoXPos, LocalPkg.Lookup("Error"), sig)
    	return NewInterface([]*Field{method})
    }
    
    // makeComparableInterface makes the predefined "comparable" interface in the
    // built-in package. It has a unique name, but no methods.
    func makeComparableInterface() *Type {
    	return NewInterface(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. docs/batch-jobs/README.md

    	retry:
    	  attempts: 10 # number of retries for the job before giving up
    	  delay: "500ms" # least amount of delay between each retry
    ```
    
    You can create and run multiple 'replication' jobs at a time there are no predefined limits set.
    
    ## Batch Jobs Terminology
    
    ### Job
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 06 06:00:43 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  10. src/main/assemblies/files/fess

        pidpath=$1
        daemonized=$2
        props=$3
        fess_parms="-Dfess"
    
        if [ "x$pidpath" != "x" ]; then
            fess_parms="$fess_parms -Dfess.pidfile=$pidpath"
        fi
    
        # Make sure we don't use any predefined locale, as we check some exception message strings and rely on english language
        # As those strings are created by the OS, they are dependent on the configured locale
        LANG=en_US.UTF-8
        LC_ALL=en_US.UTF-8
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top