Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 566 for parsable (0.16 sec)

  1. src/cmd/compile/internal/types2/operand.go

    	typexpr                      // operand is a type
    	constant_                    // operand is a constant; the operand's typ is a Basic type
    	variable                     // operand is an addressable variable
    	mapindex                     // operand is a map index expression (acts like a variable on lhs, commaok on rhs of an assignment)
    	value                        // operand is a computed value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. internal/config/ilm/help.go

    const (
    	transitionWorkers = "transition_workers"
    	expirationWorkers = "expiration_workers"
    	// EnvILMTransitionWorkers env variable to configure number of transition workers
    	EnvILMTransitionWorkers = "MINIO_ILM_TRANSITION_WORKERS"
    	// EnvILMExpirationWorkers env variable to configure number of expiration workers
    	EnvILMExpirationWorkers = "MINIO_ILM_EXPIRATION_WORKERS"
    )
    
    var (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/NMToolFixture.groovy

        }
    
        private findExe(String exe) {
            // *nix OS correctly handle search inside the process's PATH environment variable
            if (!OperatingSystem.current().windows) {
                return [exe]
            }
    
            // Windows need to use cmd /c to correctly search inside the process's PATH environment variable
            return ["cmd.exe", "/d", "/c", exe]
        }
    
        List<BinaryInfo.Symbol> listSymbols(File binaryFile) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.td

      let summary = "Loads a variable tensor as an IFRT array for mlrt";
    
      let description = [{
        This is the MLRT version of tf.IfrtLoadVariableOp.
    
        This op loads a variable tensor as an IFRT array and binds it with the specified name.
    
        This op is an replacement of `tf.ReadVariableOp` in the case that a constant
        variable tensor is an input to the tpu program invoked by `tf.IfrtCall`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:35:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump.cc

        return absl::FailedPreconditionError(
            "Environment variable not set: TF_QUANT_MLIR_DUMP_PREFIX, "
            "IR dump file for TF quantization is not created.");
      }
    
      if (absl::EqualsIgnoreCase(dump_dir, "sponge")) {
        if (!tsl::io::GetTestUndeclaredOutputsDir(&dump_dir)) {
          return absl::FailedPreconditionError(
              "Environment variable TF_QUANT_MLIR_DUMP_PREFIX=sponge but "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:38:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. docs/en/docs/python-types.md

    #### List
    
    For example, let's define a variable to be a `list` of `str`.
    
    === "Python 3.9+"
    
        Declare the variable, with the same colon (`:`) syntax.
    
        As the type, put `list`.
    
        As the list is a type that contains some internal types, you put them in square brackets:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/ifrt/lower_to_ifrt_restore_variable.mlir

    // RUN: tf-tfrt-opt -split-input-file -verify-diagnostics -lower-to-ifrt-restore-variable %s | FileCheck %s
    
    
    // -----
    // single variable
    
    // CHECK-LABEL:   func.func @restore_single() {
    // CHECK-NEXT:     [[PREFIX:%.*]] = "tf.Const"() <{value = dense<"restore_ariables"> : tensor<!tf_type.string>}> : () -> tensor<!tf_type.string>
    // CHECK-NEXT:     [[SLICE:%.*]] = "tf.Const"() <{value = dense<""> : tensor<1x!tf_type.string>}> : () -> tensor<1x!tf_type.string>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtInitializerValue.kt

    import org.jetbrains.kotlin.analysis.api.base.KaConstantValue
    import org.jetbrains.kotlin.psi.KtExpression
    
    /**
     * Value representing some property or variable initializer
     */
    public sealed class KaInitializerValue {
        /**
         * [com.intellij.psi.PsiElement] of initializer. May be null if property/variable came from non-source file.
         */
        public abstract val initializerPsi: KtExpression?
    }
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/object.go

    		return obj != t.obj
    	default:
    		return true
    	}
    }
    
    // A Variable represents a declared variable (including function parameters and results, and struct fields).
    type Var struct {
    	object
    	embedded bool // if set, the variable is an embedded struct field, and name is the type name
    	isField  bool // var is struct field
    	used     bool // set if the variable was used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/settings.md

    An <a href="https://en.wikipedia.org/wiki/Environment_variable" class="external-link" target="_blank">environment variable</a> (also known as "env var") is a variable that lives outside of the Python code, in the operating system, and could be read by your Python code (or by other programs as well).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top