Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 114 for someDir (0.16 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultAntBuilderTest.groovy

        }
    
        @Issue('GRADLE-3511')
        def 'Filename #filename is properly masked when adding it as #antType to an ant task'(String filename, antType) {
            given:
            def dirname = 'somedir$$with'
            def dirAndFile = "${dirname}/${filename}"
            project.file(dirname).mkdir()
            File fileWithDollars = project.file(dirAndFile)
            fileWithDollars << "Some Text"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 16:17:40 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  2. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/UriTextResourceTest.groovy

            e.message == "Could not read <display-name> '$file' as it does not exist." as String
        }
    
        def hasNoContentWhenFileIsADirectory() {
            when:
            TestFile dir = testDir.file('somedir').createDir()
            UriTextResource resource = new UriTextResource('<display-name>', dir, resolver)
    
            then:
            resource.exists
    
            when:
            resource.text
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. src/net/http/serve_test.go

    	msg     string
    }{
    	{"/", "Default"},
    	{"/someDir/", "someDir"},
    	{"/#/", "hash"},
    	{"someHost.com/someDir/", "someHost.com/someDir"},
    }
    
    var vtests = []struct {
    	url      string
    	expected string
    }{
    	{"http://localhost/someDir/apage", "someDir"},
    	{"http://localhost/%23/apage", "hash"},
    	{"http://localhost/otherDir/apage", "Default"},
    	{"http://someHost.com/someDir/apage", "someHost.com/someDir"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/test/groovy/org/gradle/api/plugins/BasePluginTest.groovy

            then:
            def someZip = project.tasks.create('someZip', Zip)
            someZip.destinationDirectory.get().asFile == project.distsDirectory.get().asFile
            someZip.archiveVersion.get() == project.version
            someZip.archiveBaseName.get() == project.archivesBaseName
    
            and:
            def someTar = project.tasks.create('someTar', Tar)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. tests/postgres_test.go

    	}
    
    	type Thing struct {
    		gorm.Model
    		SomeID  string
    		OtherID string
    		Data    string
    	}
    
    	DB.Migrator().DropTable(&Thing{})
    	DB.Migrator().CreateTable(&Thing{})
    	if err := DB.Exec("ALTER TABLE things ADD CONSTRAINT some_id_other_id_unique UNIQUE (some_id, other_id)").Error; err != nil {
    		t.Error(err)
    	}
    
    	thing := Thing{
    		SomeID:  "1234",
    		OtherID: "1234",
    		Data:    "something",
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Oct 08 09:16:32 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PlatformNativeComponentReportIntegrationTest.groovy

        C source 'someLib:c'
            srcDir: src/someLib/c
        C++ source 'someLib:cpp'
            srcDir: src/someLib/cpp
    
    Binaries
        Shared library 'someLib:amd64:free:sharedLibrary'
            build using task: :someLibAmd64FreeSharedLibrary
            build type: build type 'debug'
            flavor: flavor 'free'
            target platform: platform 'amd64'
            tool chain: Tool chain 'clang' (Clang)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. platforms/software/security/src/main/java/org/gradle/security/internal/gnupg/GnupgSettings.java

            this.useLegacyGpg = useLegacyGpg;
        }
    
        public boolean getUseLegacyGpg() {
            return useLegacyGpg;
        }
    
        public void setHomeDir(File homeDir) {
            this.homeDir = homeDir;
        }
    
        public File getHomeDir() {
            return homeDir;
        }
    
        public void setOptionsFile(File optionsFile) {
            this.optionsFile = optionsFile;
        }
    
        public File getOptionsFile() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. src/os/user/lookup_stubs.go

    	// See issue 27524 for more information.
    	u, err := lookupUserId(uid)
    	if err == nil {
    		return u, nil
    	}
    
    	homeDir, _ := os.UserHomeDir()
    	u = &User{
    		Uid:      uid,
    		Gid:      currentGID(),
    		Username: os.Getenv("USER"),
    		Name:     "", // ignored
    		HomeDir:  homeDir,
    	}
    	// On Android, return a dummy user instead of failing.
    	switch runtime.GOOS {
    	case "android":
    		if u.Uid == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 07 16:09:09 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. platforms/software/security/src/main/java/org/gradle/security/internal/gnupg/GnupgSignatory.java

                return input;
            }
        }
    
        private List<String> buildArgumentList() {
            final List<String> args = new ArrayList<String>();
            if (homeDir != null) {
                args.add("--homedir");
                args.add(homeDir.getAbsolutePath());
            }
            if (optionsFile != null) {
                args.add("--options");
                args.add(optionsFile.getAbsolutePath());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

    idea.project {
        def lib = new org.gradle.plugins.ide.idea.model.ProjectLibrary()
        lib.name = "someLib"
        lib.classes << file("someClasses.jar")
        lib.javadoc << file("someJavadoc.jar")
        lib.sources << file("someSources.jar")
        projectLibraries << lib
    }
    """)
    
            hasProjectLibrary("root.ipr", "someLib", ["someClasses.jar"], ["someJavadoc.jar"], ["someSources.jar"], [])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top