Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Depends (0.58 sec)

  1. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Success.java

     */
    package org.gradle.launcher.daemon.protocol;
    
    /**
     * Signifies that the command completed successfully.
     * <p>
     * The value of the result is whatever the command produced on the server.
     * Its meaning depends on the original command.
     * <p>
     * This result type does permit {@code null} values. If it is an error for a certain
     * command to produce a {@code null} value that must be handled externally to this class.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/ProducerGuard.java

         * This means that in some cases two different keys can block on the same lock. The benefit of
         * this strategy is that it uses only a fixed amount of memory. If your code depends on
         * different keys always getting different locks, use a {@link #adaptive()} guard instead.
         */
        public static <T> ProducerGuard<T> striped() {
            return new StripedProducerGuard<T>();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:31 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

             */
            ExecutionOutcome getOutcome();
    
            /**
             * Get the object representing the produced output.
             * The type of value returned here depends on the {@link UnitOfWork} implmenetation.
             */
            // TODO Parametrize UnitOfWork with this generated result
            @Nullable
            Object getOutput(File workspace);
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ValidateStep.java

                public void visitImplementation(ImplementationSnapshot implementation) {
                }
            });
            // It doesn't matter whether we use cacheable true or false, since none of the warnings depends on the cacheability of the task.
            Class<?> workType = workClass.get();
            TypeValidationContext workValidationContext = validationContext.forType(workType, true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/util/Path.java

            this.segments = segments;
            this.absolute = absolute;
        }
    
        @Override
        public String toString() {
            return getPath();
        }
    
        /**
         * Appends the supplied path to this path, returning the new path.
         * The resulting path with be absolute or relative based on the path being appended _to_.
         * It makes no difference if the _appended_ path is absolute or relative.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 13:03:23 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

                    NodeAtState predecessor = new NodeAtState(getPath(), getTargetState().previous());
                    dependencies.add(graph.nodeAtState(predecessor));
                    // Transition any other nodes that depend on the predecessor state
                    dependencies.add(new TransitionDependents(predecessor));
                    seenPredecessor = true;
                    return false;
                }
                if (node == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  7. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/Hashable.java

     * limitations under the License.
     */
    
    package org.gradle.internal.hash;
    
    /**
     * A snapshot of the state of some thing.
     */
    public interface Hashable {
        /**
         * Appends the snapshot to the given hasher.
         */
        void appendToHasher(Hasher hasher);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 837 bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionInternal.java

        /**
         * Returns the display name of this file collection. Used in log and error messages.
         *
         * @return the display name
         */
        String getDisplayName();
    
        /**
         * Appends diagnostic information about the contents of this collection to the given formatter.
         */
        TreeFormatter describeContents(TreeFormatter formatter);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/xml/XmlFactories.java

            }
        }
    
        private static String errorMessageFor(String factory) {
            return "Unable to create secure " + factory + ", please make sure that your build does not depend on an old XML parser.";
        }
    
        private XmlFactories() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 25 23:24:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

                    currentRoot = file;
                }
            }
            return result;
        }
    
        /**
         * Checks if one path is a prefix to another.
         * <p>
         * Conceptually, it appends a file separator to both paths before doing a prefix check.
         *
         * @param path a path to check a prefix against, without a trailing file separator
         * @param startsWithPath a prefix path without a trailing file separator
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top