Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 663 for isarchive (0.28 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPomMailingList.java

        private final Property<String> name;
        private final Property<String> subscribe;
        private final Property<String> unsubscribe;
        private final Property<String> post;
        private final Property<String> archive;
        private final SetProperty<String> otherArchives;
    
        @Inject
        public DefaultMavenPomMailingList(ObjectFactory objectFactory) {
            name = objectFactory.property(String.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. lib/time/README

    The zoneinfo.zip archive contains time zone files compiled using
    the code and data maintained as part of the IANA Time Zone Database.
    The IANA asserts that the database is in the public domain.
    
    For more information, see
    https://www.iana.org/time-zones
    ftp://ftp.iana.org/tz/code/tz-link.html
    https://datatracker.ietf.org/doc/html/rfc6557
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Aug 15 02:18:46 UTC 2021
    - 390 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/README

    or shorten files. It is also acceptable to write module archives by hand: 
    they need not be backed by some public git repo.
    
    Each module archive is named path_vers.txt, where slashes in path
    have been replaced with underscores. The archive must contain
    two files ".info" and ".mod", to be served as the info and mod files
    in the proxy protocol (see https://research.swtch.com/vgo-module).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/internal/objfile/goobj.go

    package objfile
    
    import (
    	"cmd/internal/archive"
    	"cmd/internal/goobj"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"debug/dwarf"
    	"debug/gosym"
    	"errors"
    	"fmt"
    	"io"
    	"os"
    )
    
    type goobjFile struct {
    	goobj *archive.GoObj
    	r     *goobj.Reader
    	f     *os.File
    	arch  *sys.Arch
    }
    
    func openGoFile(f *os.File) (*File, error) {
    	a, err := archive.Parse(f, false)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/AbstractArchiveFileTreeTest.java

            // Concurrently visit the archive
            ExecutorService executorService = Executors.newFixedThreadPool(numThreads);
            List<Future<List<Long>>> results = executorService.invokeAll(callables);
    
            // And check that each visitor counted the complete number of lines in each file in the archive
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/build_gcflags.txt

    [compiler:gccgo] skip  # gccgo does not use -gcflags
    [!cgo] skip
    [!GOOS:linux] skip  # test only works if c-archive implies -shared
    [short] skip
    
    env GOCACHE=$WORK/gocache  # Looking for compile commands, so need a clean cache.
    go build -x -n -buildmode=c-archive -gcflags=all=-shared=false ./override.go
    stderr '^.*/compile (.* )?-shared (.* )?-shared=false'
    
    -- override.go --
    package main
    
    import "C"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 541 bytes
    - Viewed (0)
  7. internal/event/target/mysql.go

    func (target *MySQLTarget) Store() event.TargetStore {
    	return target.store
    }
    
    // IsActive - Return true if target is up and active
    func (target *MySQLTarget) IsActive() (bool, error) {
    	if err := target.init(); err != nil {
    		return false, err
    	}
    	return target.isActive()
    }
    
    func (target *MySQLTarget) isActive() (bool, error) {
    	if err := target.db.Ping(); err != nil {
    		if IsConnErr(err) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/resource/BrokenTextResourceIntegrationTest.groovy

        def "reports read of missing archive entry"() {
            given:
            buildFile << """
                task jar(type: Jar) {
                    destinationDirectory = buildDir
                }
                text.text = resources.text.fromArchiveEntry(jar, 'config.txt')
            """
    
            expect:
            fails("text")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/FeaturePreviews.java

            private static EnumSet<Feature> activeFeatures() {
                EnumSet<Feature> activeFeatures = EnumSet.noneOf(Feature.class);
                for (Feature feature : Feature.values()) {
                    if (feature.isActive()) {
                        activeFeatures.add(feature);
                    }
                }
                return activeFeatures;
            }
    
            private final boolean active;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 14 08:15:13 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  10. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/Ear.java

        }
    
        /**
         * A location for dependency libraries to include in the 'lib' directory of the EAR archive.
         */
        @Internal
        public CopySpec getLib() {
            return ((CopySpecInternal) lib).addChild();
        }
    
        /**
         * Adds dependency libraries to include in the 'lib' directory of the EAR archive.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top