Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 566 for parsable (0.79 sec)

  1. src/unsafe/unsafe.go

    // The return value of Sizeof is a Go constant if the type of the argument x
    // does not have variable size.
    // (A type has variable size if it is a type parameter or if it is an array
    // or struct type with elements of variable size).
    func Sizeof(x ArbitraryType) uintptr
    
    // Offsetof returns the offset within the struct of the field represented by x,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/environment/base.go

    // runtime cost limits appropriate CEL as it is used in Kubernetes.
    //
    // The returned environment contains no CEL variable definitions or custom type declarations and
    // should be extended to construct environments with the appropriate variable definitions,
    // type declarations and any other needed configuration.
    // strictCost is used to determine whether to enforce strict cost calculation for CEL expressions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 15:51:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. pkg/test/env/istio.go

    	"strings"
    
    	"istio.io/istio/pkg/log"
    )
    
    var (
    	// TARGET_OUT environment variable
    	// nolint: revive, stylecheck
    	TARGET_OUT Variable = "TARGET_OUT"
    
    	// LOCAL_OUT environment variable
    	// nolint: revive, stylecheck
    	LOCAL_OUT Variable = "LOCAL_OUT"
    
    	// REPO_ROOT environment variable
    	// nolint: revive, stylecheck
    	REPO_ROOT Variable = "REPO_ROOT"
    
    	// HUB is the Docker hub to be used for images.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 16:24:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/environment/environment_test.go

    			opts: []VersionedOptions{
    				{IntroducedVersion: version.MajorMinor(1, 28), EnvOptions: []cel.EnvOption{cel.Variable("fizz", cel.StringType)}},
    			},
    		},
    		{
    			name: "user defined variable enabled",
    			typeVersionCombinations: []envTypeAndVersion{
    				{version.MajorMinor(1, 28), NewExpressions},
    				{version.MajorMinor(1, 27), StoredExpressions},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtDataFlowInfoProvider.kt

        )
    
        /**
         * Represents a local variable reassignment.
         */
        public class VariableReassignment(
            /** The reassignment expression. */
            public val expression: KtExpression,
    
            /** Reassigned variable symbol. */
            public val variable: KaVariableLikeSymbol,
    
            /** `true` if the variable is both read and set (as in `x += y` or `x++`). */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/pointers/KtFirPsiBasedPropertySymbolPointer.kt

        override fun restoreSymbol(analysisSession: KaSession): KaKotlinPropertySymbol? =
            when (val variable = with(analysisSession) { variableSymbolPointer.restoreSymbol() }) {
                is KaKotlinPropertySymbol -> variable
                is KaValueParameterSymbol -> variable.generatedPrimaryConstructorProperty
                else -> null
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. tensorflow/c/kernels_experimental.cc

                                 }));
      tensorflow::mutex_lock ml(*variable->mu());
    
      if (validate_shape) {
        OP_REQUIRES(cc_ctx,
                    (!variable->is_initialized ||
                     variable->tensor()->shape().IsSameSize(value.shape())),
                    InvalidArgument(
                        "Trying to assign to variable with tensor with wrong shape."
                        " Expected ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:12:29 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  8. doc/next/7-ports.md

    <!-- go.dev/issue/60905, CL 559555 -->
    Go 1.23 introduces a new `GOARM64` environment variable, which specifies the minimum target version of the ARM64 architecture at compile time. Allowed values are `v8.{0-9}` and `v9.{0-5}`. This may be followed by an option specifying extensions implemented by target hardware. Valid options are `,lse` and `,crypto`.
    
    The `GOARM64` environment variable defaults to `v8.0`.
    
    ### RISC-V {#riscv}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. test/alias2.go

    	var _ A0 = T0{}
    	var _ T0 = A0{}
    
    	var _ N0 = T0{} // ERROR "cannot use T0{} \(value of type T0\) as N0 value in variable declaration"
    	var _ N0 = A0{} // ERROR "cannot use A0{} \(value of type A0\) as N0 value in variable declaration"
    
    	var _ A5 = Value{} // ERROR "cannot use Value{} \(value of type reflect\.Value\) as A5 value in variable declaration"
    }
    
    // Invalid type alias declarations.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:09:14 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/split_merged_operands.cc

    // been converted to constants, all the assign ops are gone, etc.). However,
    // TFLite has these variable tensors semantics. So the variable mapping from TF
    // to TFLite is actually broken here, we sort of hard-code the variable tensors
    // based on the actual ops using them, such as unidirectional_sequence_lstm.
    //
    // MLIRConverter also benefits from lots of typical compiler optimization like
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top