Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 95 for Piece (0.07 sec)

  1. apache-maven/README.txt

      What is it?
      -----------
    
      Maven is a software project management and comprehension tool. Based on
      the concept of a Project Object Model (POM), Maven can manage a project's
      build, reporting and documentation from a central piece of information.
    
      Documentation
      -------------
    
      The most up-to-date documentation can be found at https://maven.apache.org/.
    
      Release Notes
      -------------
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Mar 13 20:21:20 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/AboutTheStubs.html

    assert using expected values from the stubs. Normally, when you try to use data from the stubs that
    have not been properly populated, you'll get a nullpointer in your test and you then have to
    identify which stub creates that specific piece of data.
    
    The most important stubs are:
    LifecycleExecutionPlanCalculatorStub
    ProjectDependencyGraphStub
    
    Since they define the primary structure of the project/build.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jul 02 16:47:10 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/README.md

    suitable for use as a test input, since it is not human-readable. Even just the
    text proto for the SavedModel proto is difficult to use as a test input, since a
    small piece of Python code (e.g. just a tf.Add) generates thousands of lines of
    text proto.
    
    That points to a solution though: write our tests starting from the Python API's
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 02 03:37:19 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  4. maven-artifact/src/main/java/org/apache/maven/repository/legacy/metadata/ArtifactMetadata.java

        /**
         * Get the filename of this metadata on the remote repository.
         *
         * @return the filename
         */
        String getRemoteFilename();
    
        /**
         * Merge a new metadata set into this piece of metadata.
         * TODO this should only be needed on the repository metadata {@link org.apache.maven.artifact.metadata.ArtifactMetadata}
         *
         * @param metadata the new metadata
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkQueue.java

    /**
     * Represents a queue of work items with a uniform set of worker requirements.
     *
     * Note that this object is not thread-safe.
     *
     * @since 5.6
     */
    public interface WorkQueue {
        /**
         * Submits a piece of work to be executed asynchronously.
         *
         * Execution of the work may begin immediately.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/dataflow_actions.adoc

    What if you want to play a cheerful sound when the build succeeds and a sad one when it fails?
    This work piece has to process the task execution result, so it cannot be a task itself.
    
    The Dataflow Actions API provides a way to schedule this type of work.
    A dataflow action is a parameterized isolated piece of work that becomes eligible for execution as soon as all input parameters become available.
    
    == Implementing a dataflow action
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowAction.java

    import org.gradle.api.file.ArchiveOperations;
    import org.gradle.api.file.FileSystemOperations;
    import org.gradle.process.ExecOperations;
    
    /**
     * A dataflow action.
     *
     * <p>
     * A parameterized and isolated piece of work that becomes eligible for execution within a
     * {@link FlowScope dataflow scope} as soon as all of its input {@link FlowParameters parameters}
     * become available.
     * </p>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 20:51:35 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    NOTE: The word "configuration" is an overloaded term and has a different meaning outside of the context of dependency management.
    
    [[sub:terminology_dependency]]
    == Dependency
    
    A dependency is a pointer to another piece of software required to build, test or run a <<#sub:terminology_module,module>>.
    For more information, see the section on <<declaring_dependencies.adoc#declaring-dependencies,declaring dependencies>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_basics.adoc

    Gradle *automates building, testing, and deployment of software* from information in *build scripts*.
    
    image::gradle-basic-1.png[]
    
    == Gradle core concepts
    
    === Projects
    
    A Gradle *project* is a piece of software that can be built, such as an application or a library.
    
    *Single project* builds include a single project called the *root project*.
    
    *Multi-project* builds include *one root project* and *any number of subprojects*.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime.go

    		}).OnError()
    	},
    }
    
    type ErrorHandler func(ctx context.Context, err error, msg string, keysAndValues ...interface{})
    
    // HandlerError is a method to invoke when a non-user facing piece of code cannot
    // return an error and needs to indicate it has been ignored. Invoking this method
    // is preferable to logging the error - the default behavior is to log but the
    // errors may be sent to a remote server for analysis.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top