Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,426 for directory1 (0.13 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/cache/MarkingStrategy.java

         */
        MarkingStrategy CACHEDIR_TAG = new CacheDirTagMarkingStrategy();
    
        /**
         * Marking strategy that does not mark the cache directory.
         */
        MarkingStrategy NONE = new NoMarkingStrategy();
    
        /**
         * Try to mark the given cache directory. If an I/O error occurs, this method should not throw an error,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 25 20:35:25 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/work_module_not_in_go_work.txt

    ! go list ./...
    stderr 'pattern ./...: directory prefix . does not contain modules listed in go.work or their selected dependencies'
    
    ! go list ./a/c
    stderr 'directory a[\\/]c is contained in a module that is not one of the workspace modules listed in go.work. You can add the module to the workspace using:\n\tgo work use a'
    
    ! go install ./a/c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 18:09:53 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/ClasspathBuilder.java

         */
        void jar(File destinationFile, Action action);
    
        /**
         * Creates a directory using the given action to add entries to it. If the directory already exists, it will be cleared first.
         *
         * @param destinationDir the directory to place entries into
         * @param action the action to populate the directory
         */
        void directory(File destinationDir, Action action);
    
        @FunctionalInterface
        interface Action {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:05:09 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/static/css/all.css

        width: 100%;
        font-size: 85%
    }
    
    .sidebar .directory li .current {
        color: #de7d40;
        font-weight: 500
    }
    
    .sidebar .directory li.sublist {
        padding-left: 0
    }
    
    .sidebar .directory li.sublist i {
        width: 12px
    }
    
    .sidebar .directory .card-body {
        padding: .5em .1em
    }
    
    .sidebar .directory .card-body > ul {
        padding-left: 0
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_init_tidy.txt

    # (one that contains no non-hidden .go files or subdirectories).
    cd empty
    go mod init m
    ! stderr tidy
    cd ..
    
    # 'go mod init' should recommend 'go mod tidy' if the directory has a .go file.
    cd pkginroot
    go mod init m
    stderr '^go: to add module requirements and sums:\n\tgo mod tidy$'
    cd ..
    
    # 'go mod init' should recommend 'go mod tidy' if the directory has a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 06 18:54:25 UTC 2021
    - 955 bytes
    - Viewed (0)
  6. build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/Cleanup.kt

                        logger.lifecycle("Removing old cache directory : $stateDir")
                        delete { delete(stateDir) }
                    }
                }
            }
        }
    }
    
    
    /**
     * Clean up daemon log files produced in integration tests.
     */
    fun FileSystemOperations.removeDaemonLogFiles(dir: Directory) {
        if (dir.asFile.isDirectory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 12:45:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/file/DefaultProjectLayout.java

                }
            });
        }
    
        @Override
        public Provider<Directory> dir(Provider<File> provider) {
            return new MappingProvider<>(Directory.class, Providers.internal(provider), new Transformer<Directory, File>() {
                @Override
                public Directory transform(File file) {
                    return fileFactory.dir(fileResolver.resolve(file));
                }
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  8. build-logic-commons/basics/src/test/kotlin/gradlebuild/basics/tasks/PackageListGeneratorIntegrationTest.kt

        }
    
        private
        fun someClasses(): Sequence<Path> {
            val directory = projectDir.resolve("classes")
    
            touchFile(directory.resolve("com/acme/Foo.class"))
            touchFile(directory.resolve("com/acme/internal/FooInternal.class"))
            touchFile(directory.resolve("com/foo/internal/FooInternal.class"))
            touchFile(directory.resolve("javax/servlet/http/HttpServletRequest.class"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/MerkleDirectorySnapshotBuilder.java

                collectEntry(snapshot);
            }
            return snapshot;
        }
    
        private void collectEntry(FileSystemLocationSnapshot snapshot) {
            Directory directory = directoryStack.peekLast();
            if (directory != null) {
                directory.collectEntry(snapshot);
            } else {
                assert result == null;
                result = snapshot;
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. cmd/config-dir.go

    	// Points to current configuration directory -- deprecated, to be removed in future.
    	globalConfigDir = defaultConfigDir
    	// Points to current certs directory set by user with --certs-dir
    	globalCertsDir = defaultCertsDir
    	// Points to relative path to certs directory and is <value-of-certs-dir>/CAs
    	globalCertsCADir = defaultCertsCADir
    )
    
    // Get - returns current directory.
    func (dir *ConfigDir) Get() string {
    	return dir.path
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 3K bytes
    - Viewed (0)
Back to top