Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 253 for _run (0.14 sec)

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

            withWorkaroundsFor("files") {
                isBuildScanPlugin(from)
            }
    
        fun canAccessProjectAtExecutionTime(task: TaskInternal) =
            withWorkaroundsFor("task-project") {
                task.javaClass.name.run {
                    startsWith("com.android.build.gradle.tasks.ShaderCompile")
                        || startsWith("com.android.build.gradle.tasks.MapSourceSetPathsTask")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/JavaPluginImplementation.groovy

                        // Inside a lambda body
                        lambda("apply").run();
    
                        project.getTasks().register("thing", t -> {
                            t.doLast(new Action<Task>() {
                                public void execute(Task t) {
                                    lambda("task").run();
                                }
                            });
                        });
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/AbstractConfigurationCacheIntegrationTest.groovy

            buildKotlinFile << script
        }
    
        void configurationCacheRun(String... tasks) {
            run(ENABLE_CLI_OPT, LOG_REPORT_LINK_AS_WARNING, *tasks)
        }
    
        void configurationCacheRunLenient(String... tasks) {
            run(ENABLE_CLI_OPT, LOG_REPORT_LINK_AS_WARNING, WARN_PROBLEMS_CLI_OPT, *tasks)
        }
    
        void configurationCacheFails(String... tasks) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. cni/pkg/cmd/root.go

    	registerStringParameter(constants.LogUDSAddress, "/var/run/istio-cni/log.sock", "The UDS server address which CNI plugin will copy log output to")
    	registerStringParameter(constants.CNIEventAddress, "/var/run/istio-cni/pluginevent.sock",
    		"The UDS server address which CNI plugin will forward ambient pod creation events to")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. pkg/kube/kclient/client_test.go

    					return nil
    				}
    				time.Sleep(time.Millisecond * 2)
    			}
    			cl.Delete("name", "default")
    			return fmt.Errorf("expected one item in list")
    		})
    		tracker.WaitOrdered("add/name")
    	})
    	t.Run("watcher not run ready", func(t *testing.T) {
    		stop := test.NewStop(t)
    		c := kube.NewFakeClient()
    
    		// Client created before CRDs are ready
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSupportedTypesIntegrationTest.groovy

                    SomeTask() {
                        value = ${reference}
                        bean.value = ${reference}
                    }
    
                    @TaskAction
                    void run() {
                        println "this.value = " + value
                        println "bean.value = " + bean.value
                    }
                }
    
                task ok(type: SomeTask)
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsBuildFeatureIntegrationTest.groovy

                }
            """
    
            when:
            run "something"
            then:
            fixture.assertNoConfigurationCache()
            outputContains("configurationCache.requested=null")
            outputContains("configurationCache.active=false")
            outputContains("isolatedProjects.requested=null")
            outputContains("isolatedProjects.active=false")
    
            when:
            run "something", "-Dorg.gradle.unsafe.isolated-projects=false"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationInDynamicGroovyIntegrationTest.groovy

    import org.gradle.test.fixtures.file.TestFile
    import spock.lang.Shared
    
    /**
     * Base class for tests that invoke external process with the dynamic Groovy code.
     * There are many different ways to run a process in Groovy, and all are producing different byte code.
     * The class supports compiling Groovy code in both indy and old-school CallSite modes.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

    class ConfigurationCacheIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "configuration cache is out of incubation"() {
            given:
            settingsFile << ""
    
            when:
            run("help", "--configuration-cache")
    
            then:
            result.assertHasPostBuildOutput("Configuration cache entry stored.")
            !output.contains("Configuration cache is an incubating feature.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

        }
    
        /**
         * @return <code>true</code> if the Mojo needs reports to run, <code>false</code> otherwise.
         */
        public boolean isRequiresReports() {
            return requiresReports;
        }
    
        /**
         * @param requiresReports <code>true</code> if the Mojo needs reports to run, <code>false</code> otherwise.
         */
        public void setRequiresReports(boolean requiresReports) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top