Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 663 for isarchive (0.23 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/TarCopyActionSpec.groovy

    import org.gradle.api.internal.file.archive.compression.GzipArchiver
    import org.gradle.api.internal.file.archive.compression.SimpleCompressor
    import org.gradle.api.internal.file.copy.CopyActionProcessingStream
    import org.gradle.api.internal.file.copy.FileCopyDetailsInternal
    import org.gradle.test.fixtures.archive.TarTestFixture
    import org.gradle.test.fixtures.file.CleanupTestDirectory
    import org.gradle.test.fixtures.file.TestFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 14:26:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/gccgo.go

    				return fmt.Errorf(`importcfg:%d: invalid packagefile: syntax is "packagefile path=filename": %s`, lineNum, line)
    			}
    			archive := gccgoArchive(root, before)
    			if err := sh.Mkdir(filepath.Dir(archive)); err != nil {
    				return err
    			}
    			if err := sh.Symlink(after, archive); err != nil {
    				return err
    			}
    		case "importmap":
    			if before == "" || after == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/bugreport/flags.go

    			"only the logs captured so far are saved to the archive.")
    	// include / exclude specs
    	cmd.PersistentFlags().StringSliceVar(&included, "include", bugReportDefaultInclude,
    		"Spec for which pod's proxy logs to include in the archive. See above for format and examples.")
    	cmd.PersistentFlags().StringSliceVar(&excluded, "exclude", bugReportDefaultExclude,
    		"Spec for which pod's proxy logs to exclude from the archive, after the include spec "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. api/go1.23.txt

    pkg archive/tar, type FileInfoNames interface { Gname, IsDir, ModTime, Mode, Name, Size, Sys, Uname } #50102
    pkg archive/tar, type FileInfoNames interface, Gname() (string, error) #50102
    pkg archive/tar, type FileInfoNames interface, IsDir() bool #50102
    pkg archive/tar, type FileInfoNames interface, ModTime() time.Time #50102
    pkg archive/tar, type FileInfoNames interface, Mode() fs.FileMode #50102
    pkg archive/tar, type FileInfoNames interface, Name() string #50102
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/resources/DefaultTextResourceFactory.java

        public TextResource fromArchiveEntry(Object archive, String entryPath, String charset) {
            return new FileCollectionBackedArchiveTextResource(fileOperations, taskDependencyFactory, tempFileProvider, fileOperations.immutableFiles(archive), entryPath, Charset.forName(charset));
        }
    
        @Override
        public TextResource fromArchiveEntry(Object archive, String entryPath) {
            return fromArchiveEntry(archive, entryPath, Charset.defaultCharset().name());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 30 08:26:30 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/file/MaybeCompressedFileResource.java

     */
    
    package org.gradle.api.internal.file;
    
    import org.apache.commons.io.FilenameUtils;
    import org.gradle.api.internal.file.archive.compression.Bzip2Archiver;
    import org.gradle.api.internal.file.archive.compression.CompressedReadableResource;
    import org.gradle.api.internal.file.archive.compression.GzipArchiver;
    import org.gradle.api.resources.MissingResourceException;
    import org.gradle.api.resources.ReadableResource;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  7. internal/config/lambda/target/webhook.go

    }
    
    // ID - returns target ID.
    func (target *WebhookTarget) ID() event.TargetID {
    	return target.id
    }
    
    // IsActive - Return true if target is up and active
    func (target *WebhookTarget) IsActive() (bool, error) {
    	if err := target.init(); err != nil {
    		return false, err
    	}
    	return target.isActive()
    }
    
    // errNotConnected - indicates that the target connection is not active.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/AbstractArchiveFileTree.java

    import org.gradle.api.provider.Provider;
    
    import java.io.File;
    
    /**
     * Abstract base class for a {@link org.gradle.api.file.FileTree FileTree} that is backed by an archive file.
     *
     * Will decompress the archive file to the given cache.
     */
    /* package */ abstract class AbstractArchiveFileTree implements FileSystemMirroringFileTree, TaskDependencyContainer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CacheTaskArchiveErrorIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "fails build when packing archive fails"() {
            when:
            file("input.txt") << "data"
    
            // Just a way to induce a packing error, i.e. corrupt/partial archive
            buildFile << """
                apply plugin: "base"
                task customTask {
                    inputs.file "input.txt"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/DecompressionCoordinator.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.file.archive;
    
    import java.io.Closeable;
    import java.io.File;
    
    /**
     * A coordinator that can be used to manage access to decompressed data extracted from archive files like zip and tars.
     *
     * <p>
     * For a given build tree, only a single process is allowed write access to extract archives at a time.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top