Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,295 for parsable (0.21 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/PathFactory.java

            Variable match = null;
            for (Variable variable : variables) {
                if (file.getAbsolutePath().equals(variable.getDir().getAbsolutePath())) {
                    match = variable;
                    break;
                }
                if (file.getAbsolutePath().startsWith(variable.getPrefix())) {
                    if (match == null || variable.getPrefix().startsWith(match.getPrefix())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. src/internal/types/testdata/spec/range.go

    	// but there is no gofmt-friendly way to write the error pattern in the right place.
    	m1 := T.M
    	for range m1 /* ERROR "cannot range over m1 (variable of type func(T)): func must be func(yield func(...) bool): argument is not func" */ {
    	}
    	m2 := (*T).PM
    	for range m2 /* ERROR "cannot range over m2 (variable of type func(*T)): func must be func(yield func(...) bool): argument is not func" */ {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 04:31:42 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/ProcessEnvironment.java

        /**
         * Removes the given environment variable.
         *
         * @param name The name of the environment variable.
         * @throws NativeIntegrationException If the environment variable cannot be removed.
         */
        void removeEnvironmentVariable(String name) throws NativeIntegrationException;
    
        /**
         * Removes the given environment variable, if possible.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue62157.go

    	f(A, b /* ERROR "cannot use b (variable of type chan<- int) as namedA value in argument to f" */)
    	f(b /* ERROR "cannot use b (variable of type chan<- int) as namedA value in argument to f" */, A)
    
    	f(a, b /* ERROR "cannot use b (variable of type chan<- int) as namedA value in argument to f" */, A)
    	f(a, A, b /* ERROR "cannot use b (variable of type chan<- int) as namedA value in argument to f" */)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 23:22:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

              LOG(WARNING) << "Restoring non-variable objects has not been "
                              "implemented yet. (Kind="
                           << bundle->saved_object_graph().nodes(node).kind_case()
                           << ")";
              return absl::OkStatus();
            }
    
            Variable* variable = revived_objects.variables.at(node).get();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/os/env.go

    }
    
    // Getenv retrieves the value of the environment variable named by the key.
    // It returns the value, which will be empty if the variable is not present.
    // To distinguish between an empty value and an unset value, use [LookupEnv].
    func Getenv(key string) string {
    	testlog.Getenv(key)
    	v, _ := syscall.Getenv(key)
    	return v
    }
    
    // LookupEnv retrieves the value of the environment variable named
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top