Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 596 for limiting (0.23 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/DirectorySnapshotBuilder.java

    import javax.annotation.Nullable;
    
    /**
     * A builder for {@link DirectorySnapshot}.
     *
     * In order to build a directory snapshot, you need to call the methods for entering/leaving a directory
     * and for visiting leaf elements.
     * The visit methods need to be called in depth-first order.
     * When leaving a directory, the builder will create a {@link DirectorySnapshot} for the directory,
     * calculating the combined hash of the entries.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/readme-templates/library-body.adoc.template

    == Assemble the library JAR
    
    To build the project, run the `build` task. You can use the regular `gradle` command, but when a project includes a wrapper script, it is considered good form to use it instead.
    
    [listing.terminal.sample-command]
    ----
    \$ ./gradlew build
    
    BUILD SUCCESSFUL in 0s
    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/Types.java

            TypeVisitResult visitType(Class<? super T> type);
        }
    
        public static enum TypeVisitResult {
            /**
             * Continue visiting.
             */
            CONTINUE,
    
            /**
             * Terminate visiting immediately.
             */
            TERMINATE
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/selection_predicate_test.go

    			indexLabels:   []string{},
    			indexFields:   []string{"uid"},
    			ctx:           context.Background(),
    			expected:      []MatchValue{{IndexName: FieldIndex("uid"), Value: "12345"}},
    		},
    		"Match field for listing namespace pods without metadata.namespace field selector": {
    			labelSelector: "",
    			fieldSelector: "",
    			indexLabels:   []string{},
    			indexFields:   []string{"metadata.namespace"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 30 10:39:09 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/composite-builds/plugin-dev/README.adoc

    Without ever publishing the `greeting-plugin` project to a repository, it is possible to build the project with the locally developed 'org.sample.greeting' plugin.
    
    [listing.terminal]
    ----
    > gradle --include-build ../greeting-plugin greeting
    [composite-build] Configuring build: /home/user/gradle/sample/compositeBuilds/plugin-dev/greeting-plugin
    :greeting-plugin:compileJava
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/travis-ci.adoc

    First, we'll get the project set up on your local machine before covering the same steps on CI.
    
    Just follow these steps:
    
    === Clone the https://github.com/gradle/gradle-site-plugin[Gradle Site Plugin] repository
    
    [listing.terminal.sample-command]
    ----
    $ git clone https://github.com/gradle/gradle-site-plugin.git
    Cloning into 'gradle-site-plugin'...
    $ cd gradle-site-plugin
    ----
    
    === Build the project
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentMetadataVersionLister.java

     * numbers.
     *
     * @since 4.9
     */
    public interface ComponentMetadataVersionLister extends Action<ComponentMetadataListerDetails> {
        /**
         * Perform a version listing query
         * @param details the details of the version listing query
         *
         * @since 4.9
         */
        @Override
        void execute(ComponentMetadataListerDetails details);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  8. hack/tools/README.md

    This directory contains a stub go module used to track version of development
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 26 20:57:10 UTC 2022
    - 129 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

    ==============================================================================*/
    
    include "mlir/Pass/PassBase.td"
    
    // TF device dialect passes.
    
    def ResourceOpLiftingPass : Pass<"tf-resource-op-lifting", "ModuleOp"> {
      let summary = "Lifting resource operations out of device computation";
      let description = [{
        This pass lifts resource variable operations outside of device computation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. src/cmd/pack/doc.go

    The archive argument to the c command must be non-existent or a
    valid archive file, which will be cleared before adding new entries. It
    is an error if the file exists but is not an archive.
    
    For the p, t, and x commands, listing no names on the command line
    causes the operation to apply to all files in the archive.
    
    In contrast to Unix ar, the r operation always appends to the archive,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top