Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for Piece (0.04 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ProgressEvent.java

     * limitations under the License.
     */
    package org.gradle.tooling;
    
    /**
     * Some information about a piece of work of a long running operation.
     * @since 1.0-milestone-3
     */
    public interface ProgressEvent {
        /**
         * A description of the current piece of work.
         *
         * @return The description.
         * @since 1.0-milestone-3
         */
        String getDescription();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 950 bytes
    - Viewed (0)
  2. architecture/README.md

    As Gradle executes, it acts on various pieces of the build definition, such as each project in the build.
    Gradle tracks the state of each piece and transitions each piece through its lifecycle as the build runs.
    
    A central part of the Gradle architecture is the "build state model", which holds the state for each piece and coordinates state transitions and other mutations. 
    Most source code in Gradle is arranged by which part(s) of the build state model it acts on.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/WebPlatformUrlTestData.kt

                else -> unescape(base)
              }
    
            while (i < parts.size) {
              val piece = parts[i]
              if (piece.startsWith("#")) {
                i++
                continue
              }
              val nameAndValue = piece.split(Regex(":"), 2).toTypedArray()
              element[nameAndValue[0]] = unescape(nameAndValue[1])
              i++
            }
    
            list += element
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. cmd/object-api-utils.go

    	}
    
    	// Split on dot and check each piece conforms to rules.
    	allNumbers := true
    	pieces := strings.Split(bucket, dnsDelimiter)
    	for _, piece := range pieces {
    		if len(piece) == 0 || piece[0] == '-' ||
    			piece[len(piece)-1] == '-' {
    			// Current piece has 0-length or starts or
    			// ends with a hyphen.
    			return false
    		}
    		// Now only need to check if each piece is a valid
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. docs/fr/docs/tutorial/index.md

    $ pip install fastapi[all]
    
    ---> 100%
    ```
    
    </div>
    
    ... qui comprend également `uvicorn`, que vous pouvez utiliser comme serveur pour exécuter votre code.
    
    !!! note
        Vous pouvez également l'installer pièce par pièce.
    
        C'est ce que vous feriez probablement une fois que vous voudrez déployer votre application en production :
    
        ```
        pip install fastapi
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:55 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/timeout/Timeout.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.timeout;
    
    /**
     * Represents a timeout for some piece of work.
     */
    public interface Timeout {
        /**
         * Stops the timeout and returns whether the work did time out.
         */
        boolean stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 854 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top