Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 209 for getDirs (0.14 sec)

  1. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/TestKitDirProvider.java

     * limitations under the License.
     */
    
    package org.gradle.testkit.runner.internal;
    
    import java.io.File;
    
    public interface TestKitDirProvider {
        File getDir();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 743 bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/ProgressListenerAdapter.java

        @Override
        public void onOperationEnd() {
            stack.removeFirst();
            fireChangeEvent();
        }
    
        private void fireChangeEvent() {
            final String description = stack.isEmpty() ? "" : stack.getFirst();
            listeners.getSource().statusChanged(new ProgressEvent() {
                @Override
                public String getDescription() {
                    return description;
                }
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/AbstractHeaderExportingDependentSourceSet.java

        private final List<Object> libs = new ArrayList<Object>();
        private String preCompiledHeader;
        private File prefixHeaderFile;
    
        @Override
        public Collection<?> getLibs() {
            return libs;
        }
    
        @Override
        public void lib(Object library) {
            if (library instanceof Iterable<?>) {
                Iterable<?> iterable = (Iterable) library;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultConfigurableFileTree.java

            return patternSet;
        }
    
        @Override
        public DefaultConfigurableFileTree setDir(Object dir) {
            from(dir);
            return this;
        }
    
        @Override
        public File getDir() {
            if (dir == null) {
                throw new InvalidUserDataException("A base directory must be specified in the task or via a method argument!");
            }
            return resolver.resolve(dir);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/InstallExecutable.java

                return null;
            }
        }
    
        /**
         * The library files that should be installed.
         */
        @PathSensitive(PathSensitivity.RELATIVE)
        @InputFiles
        public FileCollection getLibs() {
            return libs;
        }
    
        public void setLibs(FileCollection libs) {
            this.libs.setFrom(libs);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/user/exbhv/GroupBhv.java

                result.setAttributes(source.entrySet().stream().filter(e -> !"name".equals(e.getKey()))
                        .map(e -> new Pair<>(e.getKey(), (String) e.getValue())).collect(Collectors.toMap(Pair::getFirst, Pair::getSecond)));
                return result;
            } catch (InstantiationException | IllegalAccessException e) {
                final String msg = "Cannot create a new instance: " + entityType.getName();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeBinarySpecInternal.java

        void setResolver(NativeDependencyResolver resolver);
    
        void setFileCollectionFactory(FileCollectionFactory fileCollectionFactory);
    
        File getPrimaryOutput();
    
        Collection<NativeDependencySet> getLibs(DependentSourceSet sourceSet);
    
        Collection<NativeLibraryBinary> getDependentBinaries();
    
        /**
         * Adds some files to include as input to the link/assemble step of this binary.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/FileArchOnlyBinaryInfo.groovy

            throw new UnsupportedOperationException("Only getting the architecture is supported using the file utility")
        }
    
        static ArchitectureInternal readArch(Collection<String> lines) {
            String header = Iterables.getFirst(lines, "")
            if (header.contains("x86-64")) {
                return Architectures.forInput("x86_64")
            } else if (header.contains("80386")) {
                return Architectures.forInput("x86")
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/initialization/layout/GlobalCacheDir.java

        public GlobalCacheDir(GradleUserHomeDirProvider userHomeDirProvider) {
            this.globalCacheDir = new File(userHomeDirProvider.getGradleUserHomeDirectory(), GLOBAL_CACHE_DIR_NAME);
        }
    
        public File getDir() {
            return globalCacheDir;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/user/exbhv/RoleBhv.java

                result.setAttributes(source.entrySet().stream().filter(e -> !"name".equals(e.getKey()))
                        .map(e -> new Pair<>(e.getKey(), (String) e.getValue())).collect(Collectors.toMap(Pair::getFirst, Pair::getSecond)));
                return result;
            } catch (InstantiationException | IllegalAccessException e) {
                final String msg = "Cannot create a new instance: " + entityType.getName();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top