Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 867 for Supplied (0.14 sec)

  1. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/IvyDescriptorFileGeneratorTest.groovy

            }
        }
    
        def "writes supplied status"() {
            when:
            descriptor.status = "my-status"
    
            then:
            ivyXml.info.@status == "my-status"
        }
    
        def "writes supplied branch"() {
            when:
            descriptor.branch = "someBranch"
    
            then:
            ivyXml.info.@branch == "someBranch"
        }
    
        def "writes supplied licenses" () {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

         * <p>Adds the given projects to the build. Each path in the supplied list is treated as the path of a project to
         * add to the build. Note that these path are not file paths, but instead specify the location of the new project in
         * the project hierarchy. As such, the supplied paths must use the ':' character as separator (and NOT '/').</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/Jvm.java

         * This method is intended to be used for user supplied java homes.
         *
         * @param javaHome - location of your jdk or jre (jdk is safer), cannot be null
         * @return jvm for given java home
         * @throws org.gradle.internal.jvm.JavaHomeException when supplied javaHome does not seem to be a valid jdk or jre location
         * @throws IllegalArgumentException when supplied javaHome is not a valid folder
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:57:34 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/modular_filesystem_registration.cc

            "operations on them have been supplied.");
    
      if ((ops->filesystem_ops->new_writable_file != nullptr ||
           ops->filesystem_ops->new_appendable_file != nullptr) &&
          ops->writable_file_ops == nullptr)
        return errors::FailedPrecondition(
            "Filesystem allows creation of writable files but no "
            "operations on them have been supplied.");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 07 22:08:43 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publisher/ValidatingMavenPublisherTest.groovy

            "group-mod" | "artifact"     | "version"     | "supplied groupId (group) does not match value from POM file (group-mod). Cannot edit groupId directly in the POM file."
            "group"     | "artifact-mod" | "version"     | "supplied artifactId (artifact) does not match value from POM file (artifact-mod). Cannot edit artifactId directly in the POM file."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/componentconfigs/configset.go

    		if gvk.Group == h.GroupVersion.Group {
    			cfg := h.CreateEmpty()
    			if err := cfg.Unmarshal(docmap); err != nil {
    				return nil, err
    			}
    			// consider all successfully loaded configs from a document map as user supplied
    			cfg.SetUserSupplied(true)
    			return cfg, nil
    		}
    	}
    	return nil, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

         * <ul>
         *     <li>A {@link org.gradle.api.artifacts.PublishArtifact} instance. Name, type, extension and classifier values are taken from the supplied instance.</li>
         *     <li>An {@link org.gradle.api.tasks.bundling.AbstractArchiveTask} instance. Name, type, extension and classifier values are taken from the supplied instance.</li>
         *     <li>Anything that can be resolved to a {@link java.io.File} via the {@link org.gradle.api.Project#file(Object)} method.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_compiler_options_util_test.cc

      EXPECT_EQ(options.graph_def_version, TF_GRAPH_DEF_VERSION);
      EXPECT_FALSE(options.allow_cpu_custom_calls);
      EXPECT_FALSE(options.alias_passthrough_params);
      // Check if options have the supplied shape determination functions set.
      TF_ASSERT_OK_AND_ASSIGN(
          auto shape, options.shape_determination_fns.shape_representation_fn(
                          TensorShape(), DT_FLOAT, false,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 29 01:41:20 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/IvyArtifactRepository.java

         * for example, you can pass in a File object or a relative path which is evaluated relative to the project directory.
         *
         * File are resolved based on the supplied URL and the configured {@link #layout(String)} for this repository.
         *
         * @param url The base URL.
         */
        @Override
        void setUrl(Object url);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 02 20:32:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r48/PhasedBuildActionCrossVersionSpec.groovy

                    .build()
    
                collectOutputs(action)
                action.run()
            }
    
            then:
            BuildActionFailureException e = thrown()
            e.message == "The supplied phased action failed with an exception."
            e.cause instanceof RuntimeException
            e.cause.message == "actionFailure"
            projectsLoadedHandler.getResult() == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top