Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 270 for consuming (0.14 sec)

  1. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features-external/common/repo/org/gradle/demo/producer/1.0/producer-1.0.pom

      <!-- which should be used instead. Do not delete the following line which  -->
      <!-- is to indicate to Gradle or any Gradle module metadata file consumer  -->
      <!-- that they should prefer consuming it instead. -->
      <!-- do-not-remove: published-with-gradle-metadata -->
      <modelVersion>4.0.0</modelVersion>
      <groupId>org.gradle.demo</groupId>
      <artifactId>producer</artifactId>
      <version>1.0</version>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1001 bytes
    - Viewed (0)
  2. pkg/kubelet/config/file_unsupported.go

    	"k8s.io/klog/v2"
    )
    
    func (s *sourceFile) startWatch() {
    	klog.ErrorS(nil, "Watching source file is unsupported in this build")
    }
    
    func (s *sourceFile) consumeWatchEvent(e *watchEvent) error {
    	return fmt.Errorf("consuming watch event is unsupported in this build")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 908 bytes
    - Viewed (0)
  3. pkg/config/validation/header_value_validator.go

    	VariableNameParserState                                 // consuming a %VAR% name
    	ExpectArrayParserState                                  // expect starting [ in %VAR([...])%
    	ExpectStringParserState                                 // expect starting " in array of strings
    	StringParserState                                       // consuming an array element string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 15 21:37:52 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/CancellableOperationManager.java

    package org.gradle.execution;
    
    import org.gradle.api.Action;
    import org.gradle.initialization.BuildCancellationToken;
    
    public interface CancellableOperationManager {
    
        /**
         * Executes the operation, while consuming System.in, watching for closure or EOT.
         */
        void monitorInput(Action<? super BuildCancellationToken> operation);
    
        /**
         * Perform clean-up work after build
         */
        void closeInput();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 28 06:12:41 UTC 2017
    - 1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/readme-templates/library-summary.adoc.template

    From here, you may be interested in:
    
     - link:{userManualPath}/building_java_projects.html[Building Java & JVM projects]
     - link:{userManualPath}/java_library_plugin.html[Java Library Plugin documentation]
     - Consuming JVM libraries using link:{userManualPath}/core_dependency_management.html[dependency management]
     - link:{userManualPath}/publishing_setup.html[Publishing JVM libraries]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 781 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/plugins/pluginVersions/common/maven-repo/com/example/sample-plugins/1.0.0/sample-plugins-1.0.0.pom

      <!-- which should be used instead. Do not delete the following line which  -->
      <!-- is to indicate to Gradle or any Gradle module metadata file consumer  -->
      <!-- that they should prefer consuming it instead. -->
      <!-- do_not_remove: published-with-gradle-metadata -->
      <modelVersion>4.0.0</modelVersion>
      <groupId>com.example</groupId>
      <artifactId>sample-plugins</artifactId>
      <version>1.0.0</version>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 755 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/plugins/resolutionRules/common/maven-repo/com/example/sample-plugins/1.0.0/sample-plugins-1.0.0.pom

      <!-- which should be used instead. Do not delete the following line which  -->
      <!-- is to indicate to Gradle or any Gradle module metadata file consumer  -->
      <!-- that they should prefer consuming it instead. -->
      <!-- do_not_remove: published-with-gradle-metadata -->
      <modelVersion>4.0.0</modelVersion>
      <groupId>com.example</groupId>
      <artifactId>sample-plugins</artifactId>
      <version>1.0.0</version>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 755 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/plugins/readme.xml

                </para>
            </listitem>
            <listitem>
                <para>
                    The <filename>consuming</filename> directory contains an example of resolving plugins from custom repositories instead the Gradle Plugin Portal.
                </para>
            </listitem>
        </itemizedlist>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_constraints.adoc

    This means that currently they are only fully supported if Gradle is used for publishing and consuming (i.e. they are 'lost' when consuming modules with Maven or Ivy).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/IdeArtifactStore.java

    /**
     * This is separate from {@link DefaultIdeArtifactRegistry} so that the data can be shared across a build tree, while the {@link DefaultIdeArtifactRegistry} is scoped to a particular consuming project.
     */
    @ServiceScope(Scope.BuildTree.class)
    public class IdeArtifactStore implements HoldsProjectState {
        private final ListMultimap<ProjectComponentIdentifier, IdeProjectMetadata> metadata = ArrayListMultimap.create();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top