Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 258 for defaulttarg (1.07 sec)

  1. src/cmd/dist/build.go

    			"Go needs a system C compiler for use with cgo.\n"+
    			"To set a C compiler, set CC=the-compiler.\n"+
    			"To disable cgo, set CGO_ENABLED=0.\n%s%s", cc, err, outputHdr, output)
    	}
    }
    
    func defaulttarg() string {
    	// xgetwd might return a path with symlinks fully resolved, and if
    	// there happens to be symlinks in goroot, then the hasprefix test
    	// will never succeed. Instead, we use xrealwd to get a canonical
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/default_tag.yaml

    Xiaopeng Han <******@****.***> 1704821024 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 17:23:44 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTaskIntegrationTest.groovy

            testDirectory.file("buildSrc/src/main/java/SneakyTask.java") << """
                import ${DefaultTask.name};
                import ${ExecOperations.name};
                import ${Inject.name};
                import ${TaskAction.name};
                ${snippets.imports}
    
                public abstract class SneakyTask extends DefaultTask {
                    @Inject
                    protected abstract ExecOperations getExecOperations();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            container.create("task", DefaultTask)
    
            when:
            container.withType(DefaultTask).named("task")
    
            then:
            noExceptionThrown()
        }
    
        void "can get() if task is lazily created before"() {
            given:
            container.register("task", DefaultTask)
    
            when:
            container.withType(DefaultTask).named("task")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskPropertiesIntegrationTest.groovy

                import org.gradle.api.file.ConfigurableFileCollection;
                import org.gradle.api.DefaultTask;
                import org.gradle.api.tasks.InputFiles;
    
                abstract class AbstractCustomTask extends DefaultTask {
                    private final ConfigurableFileCollection sourceFiles = getProject().files();
    
                    @InputFiles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_tasks.adoc

    // limitations under the License.
    
    [[writing_tasks]]
    = Writing Tasks
    
    Gradle tasks are created by extending link:{javadocPath}/org/gradle/api/DefaultTask.html[`DefaultTask`].
    
    However, the generic `DefaultTask` provides no action for Gradle.
    If users want to extend the capabilities of Gradle and their build script, they must either use a *built-in task* or create a *custom task*:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/providers/services/kotlin/build.gradle.kts

    import org.gradle.api.Plugin
    import org.gradle.api.Project
    import org.gradle.api.file.FileSystemOperations
    import org.gradle.api.provider.ProviderFactory
    import org.gradle.api.DefaultTask
    import org.gradle.api.tasks.Input
    import org.gradle.api.tasks.TaskAction
    import org.gradle.workers.WorkAction
    import org.gradle.workers.WorkParameters
    import org.gradle.workers.WorkerExecutor
    import org.gradle.tooling.provider.model.ToolingModelBuilder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskInputFilePropertiesIntegrationTest.groovy

                    fqid == 'validation:configuration-cache-cannot-serialize-object-of-type-org-gradle-api-defaulttask-a-subtype-of-org-gradle-api-task-as-these-are-not-supported-with-the-configuration-cache'
                    contextualLabel == 'cannot serialize object of type \'org.gradle.api.DefaultTask\', a subtype of \'org.gradle.api.Task\', as these are not supported with the configuration cache.'
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                    ext.custom = 'repository'
                }
                defaultTask.custom = 'another value'
                javaTask.custom = 'another value'
                groovyTask.custom = 'another value'
                assert !project.hasProperty('custom')
                assert defaultTask.hasProperty('custom')
                assert defaultTask.custom == 'another value'
                assert javaTask.custom == 'another value'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/DefaultTypeMetadataStoreTest.groovy

        }
    
        class ClasspathPropertyTask extends DefaultTask {
            @Classpath
            FileCollection classpathOnly
            @Classpath
            @InputFiles
            FileCollection classpathInputFiles
            @InputFiles
            @Classpath
            FileCollection inputFilesClasspath
        }
    
        class CompileClasspathPropertyTask extends DefaultTask {
            @CompileClasspath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top