Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,406 for buildop (0.33 sec)

  1. src/cmd/dist/buildgo.go

    	return buf.String()
    }
    
    // mkzcgo writes zcgo.go for the go/build package:
    //
    //	package build
    //	const defaultCGO_ENABLED = <CGO_ENABLED>
    //
    // It is invoked to write go/build/zcgo.go.
    func mkzcgo(dir, file string) {
    	var buf strings.Builder
    	writeHeader(&buf)
    	fmt.Fprintf(&buf, "package build\n")
    	fmt.Fprintln(&buf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 20:44:00 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-api/src/main/java/org/gradle/declarative/dsl/model/annotations/Builder.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    @Target(ElementType.METHOD)
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 927 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/ide/problems-api-usage/groovy/reporters/model-builder-plugin/build.gradle

    plugins {
        id 'java-gradle-plugin'
    }
    
    group = 'reporters'
    
    repositories {
        mavenCentral()
    }
    
    gradlePlugin {
        plugins {
            'model-builder-plugin' {
                id = 'reporters.model.builder'
                implementationClass = 'reporters.ModelBuilderPlugin'
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 287 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/customModel/internalViews/groovy/build.gradle

    // tag::type-registration[]
    // tag::internal-view-mutation[]
    class MyPlugin extends RuleSource {
    // end::internal-view-mutation[]
        @ComponentType
        void registerMyComponent(TypeBuilder<MyComponent> builder) {
            builder.internalView(MyComponentInternal)
        }
    // end::type-registration[]
    // tag::internal-view-mutation[]
        @Mutate
        void mutateMyComponents(ModelMap<MyComponentInternal> components) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/gc.go

    		// the binary's build ID, so it is the same hash used in
    		// compiling and linking.
    		// When compiling, we use actionID/actionID (instead of
    		// actionID/contentID) as a temporary build ID to compute
    		// the hash. Do the same here. (See buildid.go:useCache)
    		// The build ID matters because it affects the overall hash
    		// in the plugin's pseudo-import path returned below.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/assignmentValue.kt

    fun test() {
        buildFoo {
            value = <expr>produceString()</expr>
        }
    }
    
    fun buildFoo(builder: Foo.() -> Unit): Foo {
        val foo = Foo()
        foo.builder()
        return foo
    }
    
    fun Foo {
        var value: String? = null
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 258 bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/assignmentTarget.kt

    fun test() {
        buildFoo {
            <expr>value</expr> = produceString()
        }
    }
    
    fun buildFoo(builder: Foo.() -> Unit): Foo {
        val foo = Foo()
        foo.builder()
        return foo
    }
    
    class Foo {
        var value: String? = null
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 06:40:43 UTC 2024
    - 260 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/ide/problems-api-usage/groovy/build.gradle

    plugins {
        id 'reporters.model.builder'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 45 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/ide/problems-api-usage/groovy/sample-ide/build.gradle

        maven {
            url = 'https://repo.gradle.org/artifactory/libs-releases'
        }
    }
    
    application {
        mainClass = 'org.gradle.sample.SampleIde'
    }
    
    dependencies {
        implementation('reporters:model-builder-plugin')
        implementation('org.gradle:gradle-tooling-api:8.6-milestone-1')
    }
    
    tasks.run.configure {
        args = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 735 bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/action.go

    }
    
    // BuildActionID returns the action ID section of a's build ID.
    func (a *Action) BuildActionID() string { return actionID(a.buildID) }
    
    // BuildContentID returns the content ID section of a's build ID.
    func (a *Action) BuildContentID() string { return contentID(a.buildID) }
    
    // BuildID returns a's build ID.
    func (a *Action) BuildID() string { return a.buildID }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top