Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 687 for FILE (0.05 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuild.kt

    import org.gradle.internal.build.BuildState
    import org.gradle.util.Path
    import java.io.File
    
    
    interface ConfigurationCacheBuild {
    
        val gradle: GradleInternal
    
        val state: BuildState
    
        fun registerRootProject(rootProjectName: String, projectDir: File, buildDir: File)
    
        fun registerProject(projectPath: Path, dir: File, buildDir: File)
    
        fun getProject(path: String): ProjectInternal
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. manifests/addons/gen.sh

        --dry-run=client -oyaml \
        --from-file=istio-workload-dashboard.json="${TMP}/istio-workload-dashboard.json" \
        --from-file=istio-service-dashboard.json="${TMP}/istio-service-dashboard.json" \
        --from-file=istio-mesh-dashboard.json="${TMP}/istio-mesh-dashboard.json" \
        --from-file=istio-extension-dashboard.json="${TMP}/istio-extension-dashboard.json"
    } > "${ADDONS}/grafana.yaml"
    
    # Set up loki
    {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/AbstractInitIntegrationSpec.groovy

            targetDir.file(".gitignore").assertIsFile()
            targetDir.file(".gitattributes").assertIsFile()
            mavenCentralRepositoryDeclared(scriptDsl)
        }
    
        protected void commonJvmFilesGenerated(BuildInitDsl scriptDsl) {
            commonFilesGenerated(scriptDsl)
            subprojectDir.file("src/main/resources").assertIsDir()
            subprojectDir.file("src/test/resources").assertIsDir()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:17:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/transfer/TransferResourceIdentifier.java

    /*
     * Licensed to the Apache Software Foundation (ASF) under one
     * or more contributor license agreements.  See the NOTICE file
     * distributed with this work for additional information
     * regarding copyright ownership.  The ASF licenses this file
     * to you under the Apache License, Version 2.0 (the
     * "License"); you may not use this file except in compliance
     * with the License.  You may obtain a copy of the License at
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 20:50:56 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtOriginalPsiProvider.kt

        }
    
        /**
         * Records [file] as an original file for [this].
         */
        @KaAnalysisApiInternals
        public fun KtFile.recordOriginalKtFile(file: KtFile) {
            withValidityAssertion { analysisSession.originalPsiProvider.recordOriginalKtFile(this, file) }
        }
    }
    
    @KaAnalysisApiInternals
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInInitScriptIntegrationTest.groovy

                if (file.endsWith(".gradle.kts")) {
                    withProblem("Initialization script '${relativePath(file)}': external process started")
                } else {
                    withProblem("Initialization script '${relativePath(file)}': line 5: external process started")
                }
            }
    
            where:
            snippetsFactory             | file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec3InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromString(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'}, file('$pwd'))", pwd, "foobar"],
                [fromGroovyString(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'}, file('$pwd'))", pwd, "foobar"],
                [fromStringArray(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'}, file('$pwd'))", pwd, "foobar"],
                // Null argument handling
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginIntegrationTest.groovy

            given:
            def snippets = snippetsFactory.newSnippets(execOperationsFixture)
            testDirectory.file("buildSrc/build.gradle.kts") << """
                plugins {
                    `$plugin`
                }
    
                ${mavenCentralRepository(GradleDsl.KOTLIN)}
            """
            def conventionPluginFile = testDirectory.file(file)
            conventionPluginFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildProfileIntegrationTest.groovy

    import org.gradle.test.fixtures.file.TestFile
    import spock.lang.Issue
    
    class ConfigurationCacheBuildProfileIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        @Issue("https://github.com/gradle/gradle/issues/18386")
        def "can profile a build with cc enabled"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
    
            file("build.gradle") << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDirIntegrationTest.groovy

        def "configuration cache dir is not created unless needed"() {
            when:
            run 'help'
    
            then:
            !file('.gradle/configuration-cache').exists()
    
            when:
            configurationCacheRun 'help'
    
            then:
            file('.gradle/configuration-cache').isDirectory()
        }
    
        def "configuration cache honours --project-cache-dir"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top