Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 170 for evacuatedX (0.21 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/MavenArtifactRepository.java

         * #setArtifactUrls(Iterable)}.
         *
         * <p>The provided value is evaluated as per {@link org.gradle.api.Project#uri(Object)}. This means, for example, you can pass in a {@code File} object, or a relative path to be evaluated relative
         * to the project directory.
         *
         * @param url The base URL.
         */
        @Override
        void setUrl(Object url);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/ProjectConfigurationIntegrationTest.groovy

            failure.assertHasCause("Cannot run Project.afterEvaluate(Closure) when the project is already evaluated.")
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects, evaluationDependsOn")
        def "shows deprecation warning when calling Project#afterEvaluate(Action) after the project was evaluated"() {
            buildFile '''
                allprojects { p ->
                    println "[1] Adding afterEvaluate for $p.name"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/CopySourceSpec.java

         * org.gradle.api.Project#files(Object...)}.
         *
         * @param sourcePaths Paths to source files for the copy
         */
        CopySourceSpec from(Object... sourcePaths);
    
        /**
         * Specifies the source files or directories for a copy and creates a child {@code CopySourceSpec}. The given source
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/audit/context_test.go

    	}{{
    		description: "no audit",
    		ctx:         context.Background(),
    		validator:   func(_ *testing.T, _ context.Context) {},
    	}, {
    		description: "context initialized, policy not evaluated",
    		// Audit context is initialized, but the policy has not yet been evaluated (no level).
    		// Annotations should be retained.
    		ctx: WithAuditContext(context.Background()),
    		validator: func(t *testing.T, ctx context.Context) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/resources/TextResourceFactory.java

         * @return a text resource backed by the given string
         */
        TextResource fromString(String string);
    
        /**
         * Creates a text resource backed by the given file.
         *
         * @param file a text file evaluated as per {@link org.gradle.api.Project#files(Object...)}
         * @param charset the file's character encoding (e.g. {@code "utf-8"})
         * @return a text resource backed by the given file
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 15 19:10:41 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/ProjectState.java

     */
    @HasInternalProtocol
    public interface ProjectState {
        /**
         * <p>Returns true if this project has been evaluated.</p>
         *
         * @return true if this project has been evaluated.
         */
        boolean getExecuted();
    
        /**
         * Returns the exception describing the project failure, if any.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 22 14:45:40 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/FlatDirectoryArtifactRepository.java

         *
         * <p>The provided value are evaluated as per {@link org.gradle.api.Project#file(Object)}.
         *
         * @param dir the directory
         */
        void dir(Object dir);
    
        /**
         * Adds some directories where this repository will look for artifacts.
         *
         * <p>The provided values are evaluated as per {@link org.gradle.api.Project#files(Object...)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 2.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conversion/AnalysisAndConversionStepRunner.kt

                    applyReflectionToJvmObjectConversion(step.evaluationSchemaForStep, step, stepContext.targetObject, topLevelObjectReflection)
                    EvaluationResult.Evaluated(ConversionStepResult.ConversionSucceeded(analysisResult.stepResult))
                } else EvaluationResult.Evaluated(ConversionStepResult.ConversionNotApplicable(analysisResult.stepResult))
        }
    
        private
        fun <R : Any> applyReflectionToJvmObjectConversion(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:40 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r41/InitScriptCrossVersionSpec.groovy

        def "init scripts see the root project before it is evaluated"() {
            given:
            settingsFile << """
                rootProject.name = 'root'
            """
            def initScript = file("init.gradle") << """
                rootProject { root ->
                    if (root.state.executed) {
                        throw new IllegalStateException("Root project should not be evaluated too early")
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultDevelocityBuildLifecycleService.java

            // - `allprojects` executes eagerly before any project has been evaluated, allowing its effects
            //   to be observable from other eager configuration blocks (e.g., `subprojects { ... }`).
            // - `lifecycle.beforeProject` executes just before each project is evaluated. Therefore, its effects
            //   are not observable from eager configuration blocks, which would anyway be incompatible with
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 21:44:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top