Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for defaulttarg (0.35 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. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                withProblem("Task `:problems` of type `org.gradle.api.DefaultTask`: cannot deserialize object of type 'org.gradle.api.Project' as these are not supported with the configuration cache.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * link:{javadocPath}/org/gradle/api/DefaultTask.html#newOutputDirectory--[DefaultTask.newOutputDirectory()] now returns a `DirectoryProperty` instead of a `DirectoryVar`.
     * link:{javadocPath}/org/gradle/api/DefaultTask.html#newOutputFile--[DefaultTask.newOutputFile()] now returns a `RegularFileProperty` instead of a `RegularFileVar`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                    public void incrementIndirectly() {
                        counter.get().increment()
                    }
                }
                abstract class Consumer extends DefaultTask {
                    @${ServiceReference.name}('wrapper')
                    abstract Property<WrapperService> getWrapper()
                    @TaskAction
                    def go() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.DefaultTask.configure(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (DefaultTask.java:0)
    Method <org.gradle.api.DefaultTask.configure(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (DefaultTask.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                        }
                        bar {
                           attributes { $paid } // no match on `flavor`
                        }
                    }
                    task defaultJar(type: Jar) {
                       archiveBaseName = 'b-default'
                    }
                    task fooJar(type: Jar) {
                       archiveBaseName = 'b-foo'
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            }
            this.defaultTasks = new ArrayList<String>();
            for (String defaultTask : defaultTasks) {
                if (defaultTask == null) {
                    throw new InvalidUserDataException("Default tasks must not be null!");
                }
                this.defaultTasks.add(defaultTask);
            }
        }
    
        @Override
        public File getProjectDir() {
            return projectDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            @InputDirectory
            File inputDirectory
        }
    
        static class BrokenTask extends DefaultTask {
            @OutputFiles
            FileCollection getOutputFiles() {
                throw new Exception("BOOM!")
            }
        }
    
        static class FailingTask extends DefaultTask {
            @TaskAction
            void execute() {
                throw new RuntimeException("BOOM!")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

        extendsFrom(sourceFiles)
        isCanBeConsumed = false
        isCanBeResolved = true
        attributes {
            attribute(summarized, true)
        }
    }
    
    abstract class CombineSummaries : DefaultTask() {
    
        @get:InputFiles
        abstract val inputSummaries: ConfigurableFileCollection
    
        @get:OutputFile
        abstract val outputFile: RegularFileProperty
    
        @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		// parameters.  This can happen when parsing a class
    		// that is local to a function.
    		if q, ok := a.(*Qualified); ok && q.LocalName {
    			p := &q.Name
    			if da, ok := (*p).(*DefaultArg); ok {
    				p = &da.Arg
    			}
    			if mwq, ok := (*p).(*MethodWithQualifiers); ok {
    				*p = mwq.Method
    			}
    		}
    
    		return a
    	}
    
    	if len(st.str) == 0 || st.str[0] == 'E' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top