Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,655 for buildFor (0.4 sec)

  1. 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)
  2. src/strings/builder.go

    package strings
    
    import (
    	"internal/abi"
    	"internal/bytealg"
    	"unicode/utf8"
    	"unsafe"
    )
    
    // A Builder is used to efficiently build a string using [Builder.Write] methods.
    // It minimizes memory copying. The zero value is ready to use.
    // Do not copy a non-zero Builder.
    type Builder struct {
    	addr *Builder // of receiver, to detect copies by value
    
    	// External users should never get direct access to this buffer, since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/Builder.java

    /**
     * <p>
     * A {@link Builder} encapsulates a strategy for building a set of Maven projects. The default strategy in Maven builds
     * the projects serially, but a {@link Builder} can employ any type of concurrency model to build the projects.
     * </p>
     * <strong>Note:</strong> This interface is part of work in progress and can be changed or removed without notice.
     */
    public interface Builder {
        //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/builder.go

    John Howard <******@****.***> 1717711954 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. ci/official/containers/linux_arm64/builder.packages.txt

    Michael Hudgins <******@****.***> 1695946903 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 430 bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleInvocationSpec.groovy

            builder.cleanTasks.addAll(cleanTasks)
            builder.useDaemon = useDaemon
            builder.useToolingApi = useToolingApi
            builder.expectFailure = expectFailure
            builder.buildLog(buildLog)
            builder.useAndroidStudio = useAndroidStudio
            builder.studioJvmArguments.addAll(studioJvmArgs)
            builder.studioIdeaProperties.addAll(studioIdeaProperties)
            builder.studioInstallDir = studioInstallDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/kotlinDsl/interoperability-groovy-builder/tests/groovy-builder.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/documentation/docs/src/snippets/customModel/languageType/groovy/buildSrc/src/main/groovy/sample/documentation/DocumentationPlugin.groovy

        @ComponentBinaries
        void generateDocBinaries(ModelMap<DocumentationBinary> binaries, VariantComponentSpec component, @Path("buildDir") File buildDir) {
            binaries.create("exploded") { binary ->
                outputDir = new File(buildDir, "${component.name}/${binary.name}")
            }
        }
    // end::binaries-generation[]
    
    // tag::text-tasks-generation[]
        @BinaryTasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top