Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 3,426 for directory1 (0.15 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/VisualCpp.java

     */
    @Incubating
    public interface VisualCpp extends NativeToolChain {
        /**
         * The directory where Visual Studio or Visual C++ is installed.
         */
        File getInstallDir();
    
        /**
         * The directory where Visual Studio or Visual C++ is installed.
         */
        void setInstallDir(Object installDir);
    
        /**
         * The directory where Windows SDK is installed.
         */
        File getWindowsSdkDir();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/reset/cleanupnode_test.go

    	if _, err := os.Stat(path); os.IsNotExist(err) {
    		t.Errorf("file/directory does not exist; error: %s", err)
    		t.Errorf("file/directory does not exist: %s", path)
    	}
    }
    
    func assertNotExists(t *testing.T, path string) {
    	if _, err := os.Stat(path); err == nil {
    		t.Errorf("file/dir exists: %s", path)
    	}
    }
    
    // assertDirEmpty verifies a directory either does not exist, or is empty.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    The directory `buildSrc` is treated as an <<composite_builds.adoc#composite_build_intro,included build>>. Upon discovery of the directory, Gradle automatically compiles this code and puts it in the classpath of your build script.
    For multi-project builds there can be only one `buildSrc` directory, which has to sit in the root project directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. pkg/volume/git_repo/git_repo.go

    	}
    	if err := validateNonFlagArgument(src.Directory, "directory"); err != nil {
    		return err
    	}
    	if (src.Revision != "") && (src.Directory != "") {
    		cleanedDir := filepath.Clean(src.Directory)
    		if strings.Contains(cleanedDir, "/") || (strings.Contains(cleanedDir, "\\")) {
    			return fmt.Errorf("%q is not a valid directory, it must not contain a directory separator", src.Directory)
    		}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/IdeaCompilerOutput.java

        /**
         * whether current module should inherit project's output directory.
         *
         * @return inherit output dirs flag
         * @see #getOutputDir()
         * @see #getTestOutputDir()
         */
        boolean getInheritOutputDirs();
    
        /**
         * directory to store module's production classes and resources.
         *
         * @return directory to store production output. non-<code>null</code> if
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/pom-inheritance/pom.xml

        <defaultGoal>initialize</defaultGoal>
        <directory>out</directory>
        <sourceDirectory>src/main</sourceDirectory>
        <scriptSourceDirectory>src/scripts</scriptSourceDirectory>
        <testSourceDirectory>src/test</testSourceDirectory>
        <outputDirectory>out/main</outputDirectory>
        <testOutputDirectory>out/test</testOutputDirectory>
        <resources>
          <resource>
            <directory>res/main</directory>
          </resource>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 5K bytes
    - Viewed (0)
  7. doc/README.md

    ## For developers
    
    Release notes should be added to `next` by editing existing files or creating
    new files. **Do not add RELNOTE=yes comments in CLs.** Instead, add a file to
    the CL (or ask the author to do so).
    
    At the end of the development cycle, the files will be merged by being
    concatenated in sorted order by pathname. Files in the directory matching the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpResourceLister.java

        }
    
        @Override
        public List<String> list(ExternalResourceName directory) {
            LockableSftpClient client = sftpClientFactory.createSftpClient(directory.getUri(), credentials);
    
            try {
                @SuppressWarnings("unchecked")
                Vector<ChannelSftp.LsEntry> entries = client.getSftpClient().ls(directory.getPath());
                List<String> list = new ArrayList<String>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/UndefinedBuildExecutionIntegrationTest.groovy

        }
    
        def "fails when attempting to execute tasks #tasks in directory with no settings or build file"() {
            when:
            fails(*tasks)
    
            then:
            failure.assertHasDescription("Directory '$testDirectory' does not contain a Gradle build.")
            failure.assertHasResolutions(
                "Run gradle init to create a new Gradle build in this directory.",
                STACKTRACE_MESSAGE,
                INFO_DEBUG,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/CleanupTestDirectory.groovy

    /**
     * Instructs Spock to use {@link CleanupTestDirectoryExtension} to clean up the test directory provided by a
     * {@link org.gradle.test.fixtures.file.TestDirectoryProvider}.  This is to work around the fact that using
     * a test directory provider as a TestRule causes spock to swallow any test failures and the test directory
     * is cleaned up even for failed tests.  {@link CleanupTestDirectoryExtension} on the other hand, registers
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top