Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for subfolder1 (0.17 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r68/CompositeBuildModuleNamesCrossVersionSpec.groovy

                includeBuild('subfolder1/module-b') { name = 'module-b-1' }
                includeBuild('subfolder2/module-b') { name = 'module-b-2' }
            """
            file('subfolder1/module-b').mkdirs()
            file('subfolder2/module-b').mkdirs()
    
            when:
            def allProjects = withConnection {c -> c.action(new IdeaProjectUtil.GetAllIdeaProjectsAction()).run() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

                }
    
                File[] subfolders = location.listFiles(File::isDirectory);
                if (subfolders != null) {
                    for(File subfolder : subfolders) {
                        if (new File(subfolder, MAC_OS_JAVA_HOME_FOLDER).exists()) {
                            return new File(subfolder, MAC_OS_JAVA_HOME_FOLDER);
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/ACE.java

                case 0x02:
                    return "This folder and subfolders";
                case 0x0A:
                    return "Subfolders only";
                case 0x01:
                    return "This folder and files";
                case 0x09:
                    return "Files only";
            }
            return "Invalid";
        }
        /**
         * Returns the access mask accociated with this ACE. Use the
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/FolderBasedTest.kt

    
    fun File.withFolders(folders: FoldersDslExpression) =
        apply { FoldersDsl(this).folders() }
    
    
    class FoldersDsl(val root: File) {
    
        operator fun String.invoke(subFolders: FoldersDslExpression): File =
            (+this).withFolders(subFolders)
    
        operator fun String.unaryPlus(): File =
            canonicalFile(this).apply { mkdirs() }
    
        fun withFile(fileName: String, content: String = ""): File =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/dtyp/ACE.java

            case 0x00:
                return "This folder only";
            case 0x03:
                return "This folder, subfolders and files";
            case 0x0B:
                return "Subfolders and files only";
            case 0x02:
                return "This folder and subfolders";
            case 0x0A:
                return "Subfolders only";
            case 0x01:
                return "This folder and files";
            case 0x09:
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.4K bytes
    - Viewed (0)
  6. build-logic/integration-testing/src/main/kotlin/gradlebuild.distribution-testing.gradle.kts

            // The actual user home dir will be a subfolder using the name of the distribution.
            gradleUserHomeDir = intTestHomeDir
            // The user home dir is not wiped out by clean. Move the daemon working space underneath the build dir so they don't pile up on CI.
            // The actual daemon registry dir will be a subfolder using the name of the distribution.
            daemonRegistry = repoRoot().dir("build/daemon")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 14:05:00 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. ci/README.md

    and deploy TensorFlow. This folder is typically used by continuous integration
    (CI) tools to build and test TensorFlow whenever there is a change to the
    code. This folder is broken into subfolders that represent the level of support
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 21:00:01 UTC 2023
    - 825 bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/components/internal/SourceSetRendererTest.groovy

        def builder = new DefaultTextReportBuilder(output, resolver)
    
        File srcFolder1 = new File("src/folder1")
        File srcFolder2 = new File("src/folder2")
    
        def setup() {
            _ * languageSourceSet.displayName >> "acme:sample"
            _ * languageSourceSet.source >> sourceDirectorySet
            _ * sourceDirectorySet.srcDirs >> [srcFolder1, srcFolder2]
            _ * sourceDirectorySet.filter >> filter
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 08 05:52:01 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/readme-templates/native-application-body.adoc.template

    == Run the application
    
    Look inside the `build` folder and you will notice the appearance of an `exe` folder.
    By convention, Gradle will place all applications in subfolders named according to the component name.
    In this case, you will find your assembled executable in `build/exe/main/debug` and it will be called `${subprojectName.raw}` (or `${subprojectName.raw}.exe` under Windows).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/test/util.go

    		}
    		newFile.Close()
    	}
    }
    
    // SetupPkiDirWithCertificateAuthority is a utility function for kubeadm testing that creates a
    // CertificateAuthority cert/key pair into /pki subfolder of a given temporary directory.
    // The function returns the path of the created pki.
    func SetupPkiDirWithCertificateAuthority(t *testing.T, tmpdir string) string {
    	caCert, caKey := certtestutil.SetupCertificateAuthority(t)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 3.8K bytes
    - Viewed (0)
Back to top