Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,935 for parsable (0.2 sec)

  1. platforms/documentation/docs/src/snippets/maven-publish/javaProject/groovy/build.gradle

        }
    }
    // end::publish-modify-component[]
    
    // tag::repo-url-from-variable[]
    // tag::repo-url-from-project-property[]
    publishing {
        repositories {
            maven {
                def releasesRepoUrl = layout.buildDirectory.dir('repos/releases')
                def snapshotsRepoUrl = layout.buildDirectory.dir('repos/snapshots')
    // end::repo-url-from-variable[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/saved_variable_loading_test.cc

      DataType dtype = std::get<0>(test_params);
      std::vector<int64_t> shape_vector = std::get<1>(test_params);
      TensorShape shape(shape_vector);
    
      // Create the variable.
      Status status;
      std::unique_ptr<Variable> var;
      TF_EXPECT_OK(Variable::CreateUninitialized(context(), dtype, shape,
                                                 absl::nullopt, nullptr, {}, &var));
    
      // Create a TensorHandle
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/jit/variable_info_util.h

    // Snapshot of resource variables for a TF kernel invocation, mapping from
    // parameter number to values at execution time. If the resource variable is not
    // initialized, the value will not be present.
    using ResourceVarsSnapshot = absl::flat_hash_map<int, std::optional<Tensor>>;
    
    // Takes a snapshot of the values of resource variable arguments, whose indices
    // are specified in `variable_indices` argument. We snapshot tensors that back
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 14 21:57:02 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/maven-publish/javaProject/kotlin/build.gradle.kts

        }
    }
    // end::publish-modify-component[]
    
    // tag::repo-url-from-variable[]
    // tag::repo-url-from-project-property[]
    publishing {
        repositories {
            maven {
                val releasesRepoUrl = layout.buildDirectory.dir("repos/releases")
                val snapshotsRepoUrl = layout.buildDirectory.dir("repos/snapshots")
    // end::repo-url-from-variable[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. test/prove.go

    	for i := 0; i < n; i++ { // ERROR "Induction variable: limits \[0,\?\), increment 1"
    		s[i] = 1 // ERROR "Proved IsInBounds$"
    	}
    	return s
    }
    
    func make2(n int) []int {
    	s := make([]int, n)
    	for i := range s { // ERROR "Induction variable: limits \[0,\?\), increment 1"
    		s[i] = 1 // ERROR "Proved IsInBounds$"
    	}
    	return s
    }
    
    // The range tests below test the index variable of range loops.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/sources/EnvironmentVariableValueSourceTest.groovy

    class EnvironmentVariableValueSourceTest extends ValueSourceBasedSpec {
    
        def "environment variable has no value when variable name has no value"() {
            given:
            def provider = createProviderOf(EnvironmentVariableValueSource) {
                // give variable name no value
            }
    
            expect:
            !provider.isPresent()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/decls1.go

    	t1 int = i + j
    	t2 int = i /* ERROR "mismatched types" */ + x
    	t3 int = c /* ERRORx `cannot use .* variable declaration` */ + d
    	t4 string = s + t
    	t5 string = s /* ERROR "invalid operation" */ / t
    	t6 byte = array[t1]
    	t7 byte = array[x /* ERROR "must be integer" */]
    	t8 *int = & /* ERRORx `cannot use .* variable declaration` */ a
    	t10 *int = &42 /* ERROR "cannot take address" */
    	t11 *complex64 = &v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.h

    // placed in 'filepath'.
    //
    // If the TF_DUMP_GRAPH_PREFIX environment variable is kCrashReproducerStdErr,
    // then the LOG(INFO) macro is used instead.
    //
    // This will create a file name via prefixing `name` with the value of the
    // TF_DUMP_GRAPH_PREFIX environment variable if `dirname` is empty and
    // suffixing `name` with ".mlir".
    Status CreateFileForDumping(llvm::StringRef name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. 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)
Back to top