Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,352 for withZip (0.21 sec)

  1. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/TestWithTempFiles.kt

        protected
        fun newFolder(vararg folderNames: String): File =
            tempFolder.testDirectory.createDir(folderNames.joinToString(File.separator))
    
        protected
        fun withZip(fileName: String, entries: Sequence<Pair<String, ByteArray>>): File =
            newFile(fileName).also {
                zipTo(it, entries)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/AbstractKotlinIntegrationTest.kt

            build(taskName).assertTaskExecuted(":compileKotlin")
    
        protected
        fun withClassJar(fileName: String, vararg classes: Class<*>) =
            withZip(fileName, classEntriesFor(*classes))
    
        protected
        fun withZip(fileName: String, entries: Sequence<Pair<String, ByteArray>>): File =
            newFile(fileName).also {
                zipTo(it, entries)
            }
    
        protected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 16:44:39 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginIntegrationTest.kt

        @ToBeImplemented
        fun `can compile precompiled scripts with compileOnly dependency`() {
    
            fun withPluginJar(fileName: String, versionString: String): File =
                withZip(
                    fileName,
                    classEntriesFor(MyPlugin::class.java, MyTask::class.java) + sequenceOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

        fun `given a script from a jar, file paths are resolved relative to root project dir`() {
    
            val scriptFromJar = """
    
                apply(from = "./gradle/answer.gradle.kts")
    
            """
    
            withZip(
                "fixture.jar",
                sequenceOf("common.gradle.kts" to scriptFromJar.toByteArray())
            )
    
            withFile(
                "gradle/answer.gradle.kts",
                """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/linuxcontaineruser.go

    	return &LinuxContainerUserApplyConfiguration{}
    }
    
    // WithUID sets the UID field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the UID field is set to the value of the last call.
    func (b *LinuxContainerUserApplyConfiguration) WithUID(value int64) *LinuxContainerUserApplyConfiguration {
    	b.UID = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. .idea/inspectionProfiles/Gradle.xml

            <constraint name="__context__" within="" contains="" />
            <constraint name="TYPE" within="" contains="" />
            <constraint name="ARR" nameOfExprType=".*\[\]" within="" contains="" />
            <constraint name="RES" nameOfExprType="boolean" exprTypeWithinHierarchy="true" within="" contains="" />
            <constraint name="ITEM" within="" contains="" />
            <constraint name="TARGET" within="" contains="" />
          </replaceConfiguration>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/hostip.go

    	return &HostIPApplyConfiguration{}
    }
    
    // WithIP sets the IP field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the IP field is set to the value of the last call.
    func (b *HostIPApplyConfiguration) WithIP(value string) *HostIPApplyConfiguration {
    	b.IP = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:43:16 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/loadbalanceringress.go

    	return &LoadBalancerIngressApplyConfiguration{}
    }
    
    // WithIP sets the IP field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the IP field is set to the value of the last call.
    func (b *LoadBalancerIngressApplyConfiguration) WithIP(value string) *LoadBalancerIngressApplyConfiguration {
    	b.IP = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 14 04:33:54 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/PluginDetectionIntegrationTest.groovy

        def "core plugins are detectable - applied by #appliedBy, detected by #detectedBy"() {
            buildFile << """
                def operations = []
                plugins.withId("$detectedBy") {
                    operations << 'withId for ' + it.class.simpleName
                }
                pluginManager.withPlugin("$detectedBy") {
                    // assert we are using our closure decoration and not closure coercion
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. .idea/inspectionProfiles/idea_default.xml

            <constraint name="prefix" within="" contains="" />
            <constraint name="suffix" within="" contains="" />
            <constraint name="dir" within="" contains="" />
          </replaceConfiguration>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 09 20:59:03 UTC 2023
    - 32.4K bytes
    - Viewed (0)
Back to top