Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 295 for evacuated (0.81 sec)

  1. src/cmd/go/testdata/script/mod_find.txt

    go mod init
    rm go.mod
    
    # GOPATH/src/link where GOPATH and link are both symlinks
    cd $GOPATH/src/link
    go mod init
    stderr link
    rm go.mod
    
    # Too hard: doesn't match unevaluated nor completely evaluated. (Only partially evaluated.)
    # Whether this works depends on which OS we are running on.
    # cd $WORK/gopath/src/link
    # ! go mod init
    
    -- $WORK/x/x.go --
    package x // import "x"
    
    -- $GOPATH/src/example.com/x/y/y.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:14 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/process-services/src/main/java/org/gradle/process/ProcessForkOptions.java

        /**
         * Sets the working directory for the process. The supplied argument is evaluated as per {@link
         * org.gradle.api.Project#file(Object)}.
         *
         * @param dir The working directory. Must not be null.
         */
        void setWorkingDir(Object dir);
    
        /**
         * Sets the working directory for the process. The supplied argument is evaluated as per {@link
         * org.gradle.api.Project#file(Object)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildLogger.java

        }
    
        @Override
        public void settingsEvaluated(Settings settings) {
            SettingsInternal settingsInternal = (SettingsInternal) settings;
            if (logger.isInfoEnabled()) {
                logger.info("Settings evaluated using {}.",
                    settingsInternal.getSettingsScript().getDisplayName());
            }
        }
    
        @Override
        public void projectsLoaded(Gradle gradle) {
            if (logger.isInfoEnabled()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Feb 04 18:57:43 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/cel/mapper.go

    	}
    	return results[0], nil
    }
    
    // EvalClaimMappings evaluates the given expressions and returns a list of EvaluationResult.
    func (m *mapper) EvalClaimMappings(ctx context.Context, claims *unstructured.Unstructured) ([]EvaluationResult, error) {
    	return m.eval(ctx, map[string]interface{}{claimsVarName: claims.Object})
    }
    
    // EvalUser evaluates the given user expressions and returns a list of EvaluationResult.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 20:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-substitutionRule/groovy/build.gradle

    // Need to have at least one configuration declared, otherwise the rules are never evaluated
    configurations {
        conf
    }
    
    // tag::module_to_project_substitution[]
    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute module("org.utils:api") using project(":api") because "we work with the unreleased development version"
            substitute module("org.utils:util:2.5") using project(":util")
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 754 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/buildlifecycle/projectEvaluateEvents/kotlin/build.gradle.kts

    // tag::after-evaluate[]
    gradle.beforeProject {
        // Set a default value
        project.ext.set("hasTests", false)
    }
    
    gradle.afterProject {
        if (project.ext.has("hasTests") && project.ext.get("hasTests") as Boolean) {
            val projectString = project.toString()
            println("Adding test task to $projectString")
            tasks.register("test") {
                doLast {
                    println("Running tests for $projectString")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 492 bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/SetSystemPropertiesTest.groovy

            properties[TEST_PROPERTY] = "baz"
            SetSystemProperties setSystemProperties = new SetSystemProperties(properties)
    
            when:
            setSystemProperties.apply(base, Stub(Description)).evaluate()
    
            then:
            1 * base.evaluate() >> { assert System.getProperty(TEST_PROPERTY) == "baz" }
    
            and:
            System.getProperty(TEST_PROPERTY) == "bar"
        }
    
        def "cannot set java.io.tmpdir"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompileTimeConstantProvider.kt

    import org.jetbrains.kotlin.analysis.api.components.KaCompileTimeConstantProvider
    import org.jetbrains.kotlin.analysis.api.fir.KaFirSession
    import org.jetbrains.kotlin.analysis.api.fir.evaluate.FirAnnotationValueConverter
    import org.jetbrains.kotlin.analysis.api.fir.evaluate.FirCompileTimeConstantEvaluator
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeToken
    import org.jetbrains.kotlin.analysis.low.level.api.fir.api.getOrBuildFir
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftApplicationPluginTest.groovy

            given:
            def src = projectDir.file("src/main/swift/main.swift").createFile()
    
            when:
            project.pluginManager.apply(SwiftApplicationPlugin)
            project.evaluate()
    
            then:
            project.application instanceof SwiftApplication
            project.application.module.get() == "TestApp"
            project.application.swiftSource.files == [src] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (1)
  10. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/logging/custom-logger-init.gradle

        public void beforeEvaluate(Project project) {
            logger.lifecycle("LOGGER: evaluating $project.path")
        }
    
        public void afterEvaluate(Project project, ProjectState state) {
            logger.info("LOGGER: evaluated project $project.path")
        }
    
        public void beforeExecute(Task task) {
            logger.lifecycle("LOGGER: executing $task.path")
        }
    
        public void afterExecute(Task task, TaskState state) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top