Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,083 for withZip (0.11 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. staging/src/k8s.io/client-go/applyconfigurations/core/v1/hostalias.go

    	return &HostAliasApplyConfiguration{}
    }
    
    // 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 *HostAliasApplyConfiguration) WithIP(value string) *HostAliasApplyConfiguration {
    	b.IP = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  7. .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)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podip.go

    func PodIP() *PodIPApplyConfiguration {
    	return &PodIPApplyConfiguration{}
    }
    
    // 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 *PodIPApplyConfiguration) WithIP(value string) *PodIPApplyConfiguration {
    	b.IP = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/client-go/applyconfigurations/core/v1/endpointaddress.go

    	return &EndpointAddressApplyConfiguration{}
    }
    
    // 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 *EndpointAddressApplyConfiguration) WithIP(value string) *EndpointAddressApplyConfiguration {
    	b.IP = &value
    	return b
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top