Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 256 for halse (0.32 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ScalarCollectionNodeInitializerExtractionStrategy.java

            }
    
            @Override
            public int size() {
                return getDelegate(false).size();
            }
    
            @Override
            public Object[] toArray() {
                return getDelegate(false).toArray();
            }
    
            @Override
            public <E> E[] toArray(E[] a) {
                return getDelegate(false).toArray(a);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/BuildFinishedFileSystemWatchingBuildOperationType.java

                public boolean isWatchingEnabled() {
                    return false;
                }
    
                @Override
                public boolean isStoppedWatchingDuringTheBuild() {
                    return false;
                }
    
                @Override
                public boolean isStateInvalidatedAtStartOfBuild() {
                    return false;
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/InputNormalizer.java

    //      The latter should be moved to :normalization-java
    public enum InputNormalizer implements FileNormalizer {
        ABSOLUTE_PATH(false),
        RELATIVE_PATH(false),
        NAME_ONLY(false),
        IGNORE_PATH(true),
        RUNTIME_CLASSPATH(true),
        COMPILE_CLASSPATH(true);
    
        private final boolean ignoreDirectories;
        private final String description;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/RemoteBuildCacheServiceHandle.java

         *
         * If canLoad() returns false, then this method will do nothing and will return empty result.
         */
        Optional<BuildCacheLoadResult> maybeLoad(BuildCacheKey key, File toFile, Function<File, BuildCacheLoadResult> unpackFunction);
    
        boolean canStore();
    
        /**
         * Stores the file to the cache.
         *
         * If canStore() returns false, then this method will do nothing and will return false.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/filelock/Version1LockStateSerializer.java

            public boolean isDirty() {
                return dirty;
            }
    
            @Override
            public boolean canDetectChanges() {
                return false;
            }
    
            @Override
            public boolean isInInitialState() {
                return false;
            }
    
            @Override
            public LockState beforeUpdate() {
                return new DirtyFlagLockState(true);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/AbsolutePathChangeDetector.java

                            return false;
                        }
                    }
                    // else, unchanged; check next file
                } else {
                    Change added = changeFactory.added(currentAbsolutePath, propertyTitle, currentItem);
                    if (!visitor.visitChange(added)) {
                        return false;
                    }
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperties.java

            if (violation.getHumanExplanation().startsWith(SINCE_ERROR_MESSAGE)) {
                // We still want to report the violation if @since is not added to a method
                return false;
            }
    
            Map<AccessorKey, UpgradedProperty> currentAccessors = context.getUserData(CURRENT_ACCESSORS_OF_UPGRADED_PROPERTIES);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/IgnoredPathCompareStrategy.java

                    if (!visitor.visitChange(added)) {
                        return false;
                    }
                } else {
                    previousFilesForContent.remove(0);
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/CompositeFileCollection.java

                if (collection.contains(file)) {
                    return true;
                }
            }
            return false;
        }
    
        @Override
        public boolean isEmpty() {
            for (FileCollection collection : getSourceCollections()) {
                if (!collection.isEmpty()) {
                    return false;
                }
            }
            return true;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/util/ClosureBackedAction.java

        public ClosureBackedAction(Closure closure) {
            this(closure, Closure.DELEGATE_FIRST, true);
        }
    
        public ClosureBackedAction(Closure closure, int resolveStrategy) {
            this(closure, resolveStrategy, false);
        }
    
        public ClosureBackedAction(Closure closure, int resolveStrategy, boolean configurableAware) {
            this.closure = closure;
            this.resolveStrategy = resolveStrategy;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top