Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 4,460 for sinhe5 (0.27 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/CompilationOutputsFixture.groovy

            }
        }
    
        //asserts none of the files changed/added since last snapshot
        void noneRecompiled() {
            recompiledFiles([])
        }
    
        //asserts file changed/added since last snapshot
        void recompiledFile(File file) {
            recompiledFiles([file])
        }
    
        //asserts files changed/added since last snapshot
        void recompiledFiles(File... files) {
            recompiledFiles(files as List)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemId.java

     *
     * @since 8.8
     */
    @Incubating
    public interface ProblemId {
    
        /**
         * The name of the problem.
         *
         * @since 8.8
         */
        String getName();
    
        /**
         * A human-readable label describing the problem ID.
         *
         * @since 8.8
         */
        String getDisplayName();
    
        /**
         * The parent group.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 12:38:33 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/HierarchicalEclipseProject.java

         * @since 1.0-milestone-3
         */
        DomainObjectSet<? extends EclipseProjectDependency> getProjectDependencies();
    
        /**
         * Returns the source directories for this project.
         *
         * @return The source directories. Returns an empty set if the project has no source directories.
         * @since 1.0-milestone-3
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

         * Returns the build cache configuration.
         *
         * @since 3.5
         */
        BuildCacheConfiguration getBuildCache();
    
        /**
         * Configures build cache.
         *
         * @since 3.5
         */
        void buildCache(Action<? super BuildCacheConfiguration> action);
    
        /**
         * Configures plugin management.
         *
         * @since 3.5
         */
        @Configuring
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemOperations.java

         * @param action Action to configure the CopySpec
         * @return The CopySpec
         * @since 8.5
         */
        @Incubating
        CopySpec copySpec(Action<? super CopySpec> action);
    
        /**
         * Creates a {@link CopySpec} which can later be used to copy files or create an archive.
         *
         * @return a newly created copy spec
         * @since 8.5
         */
        @Incubating
        CopySpec copySpec();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencySubstitutions.java

         * @param detailsAction the variant selection details configuration
         * @since 6.6
         */
        ComponentSelector variant(ComponentSelector selector, Action<? super VariantSelectionDetails> detailsAction);
    
        /**
         * Transforms the provided selector into a platform selector.
         *
         * @param selector the original selector
         * @since 6.6
         */
        ComponentSelector platform(ComponentSelector selector);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 24 20:12:31 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CheckstyleExtension.java

        /**
         * The Checkstyle configuration to use. Replaces the {@code configFile} property.
         *
         * @since 2.2
         */
        public TextResource getConfig() {
            return config;
        }
    
        /**
         * The Checkstyle configuration to use. Replaces the {@code configFile} property.
         *
         * @since 2.2
         */
        public void setConfig(TextResource config) {
            this.config = config;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Ticker.java

     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public abstract class Ticker {
      /** Constructor for use by subclasses. */
      protected Ticker() {}
    
      /** Returns the number of nanoseconds elapsed since this ticker's fixed point of reference. */
      public abstract long read();
    
      /**
       * A ticker that reads the current time using {@link System#nanoTime}.
       *
       * @since 10.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 23 23:27:53 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/AbstractCache.java

     * UnsupportedOperationException}.
     *
     * @author Charles Fry
     * @since 10.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public abstract class AbstractCache<K, V> implements Cache<K, V> {
    
      /** Constructor for use by subclasses. */
      protected AbstractCache() {}
    
      /** @since 11.0 */
      @Override
      public V get(K key, Callable<? extends V> valueLoader) throws ExecutionException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/SwiftcPlatformToolChain.java

         *
         * @since 4.5
         */
        CommandLineToolConfiguration getStaticLibArchiver();
    
        /**
         * Returns the tool for extracting symbols.
         *
         * @since 4.5
         */
        CommandLineToolConfiguration getSymbolExtractor();
    
        /**
         * Returns the tool for stripping symbols.
         *
         * @since 4.5
         */
        CommandLineToolConfiguration getStripper();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top