Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 379 for createfing (0.17 sec)

  1. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/internal/daemon/serialization/DaemonSidePayloadClassLoaderFactoryTest.groovy

            then:
            cl instanceof VisitableURLClassLoader
            cl.URLs == [url1, url2] as URL[]
        }
    
        def "creates ClassLoader for jar classpath"() {
            def jarFile = tmpDir.createFile("file1.jar")
            def cachedJar = tmpDir.createFile("cached/file1.jar")
            def url1 = jarFile.toURI().toURL()
            def cached = cachedJar.toURI().toURL()
            def url2 = tmpDir.createDir("classes-dir").toURI().toURL()
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

                    def result = $expression
                    doLast {
                        println(result)
                    }
                }
            """
            def file1 = file("file1").createFile()
            def file2 = file("file2").createFile()
            def fixture = newConfigurationCacheFixture()
    
            when:
            configurationCacheRun("report")
    
            then:
            fixture.assertStateStored()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            """
            buildFile << """
                apply plugin: 'cpp-application'
            """
            def headerDir = file('src/main/headers')
            def src1 = file('src/main/cpp/app.cpp').createFile()
            def src2 = file('src/main/cpp/app-impl.cpp').createFile()
    
            when:
            def project = withConnection { connection -> connection.getModel(CppProject.class) }
    
            then:
            project.projectIdentifier.projectPath == ':'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  4. pkg/controller/apis/config/zz_generated.deepcopy.go

    func (in *KubeControllerManagerConfiguration) DeepCopy() *KubeControllerManagerConfiguration {
    	if in == nil {
    		return nil
    	}
    	out := new(KubeControllerManagerConfiguration)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/test/groovy/org/gradle/StartParameterTest.groovy

            parameter.allInitScripts.empty
    
            when:
            def userMainInit = gradleUserHomeDir.createFile("init.gradle")
            then:
            parameter.allInitScripts == [userMainInit]
    
            when:
            def userInit1 = gradleUserHomeDir.createFile("init.d/1.gradle")
            def userInit2 = gradleUserHomeDir.createFile("init.d/2.gradle")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryConcurrencyTest.groovy

                    return value.toString()
                }
    
                @Provides
                Integer createInteger() {
                    return 12
                }
    
                @Provides
                Long createLong(BigDecimal value) {
                    return value.longValue()
                }
    
                @Provides
                BigDecimal createBigDecimal() {
                    return 123
                }
            })
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/build.gradle.kts

    sourceSets {
        main {
            // Incremental Groovy joint-compilation doesn't work with the Error Prone annotation processor
            errorprone.enabled = false
        }
    }
    
    val reports by configurations.creating
    val flamegraph by configurations.creating
    configurations.compileOnly { extendsFrom(flamegraph) }
    
    repositories {
        googleApisJs()
    }
    
    dependencies {
        reports("jquery:jquery.min:3.5.1@js")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced-published/kotlin/buildSrc/src/main/kotlin/com/acme/InstrumentedJarsPlugin.kt

    import org.gradle.api.component.AdhocComponentWithVariants
    import org.gradle.api.component.SoftwareComponentFactory
    import org.gradle.api.tasks.bundling.Jar
    import org.gradle.kotlin.dsl.creating
    import org.gradle.kotlin.dsl.getValue
    import org.gradle.kotlin.dsl.register
    import org.gradle.kotlin.dsl.named
    import javax.inject.Inject
    
    // tag::inject_software_component_factory[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. pkg/kubelet/certificate/kubelet_test.go

    			useRename: true,
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			createFn := createCertAndKeyFiles
    			if tt.useRename {
    				createFn = createCertAndKeyFilesUsingRename
    			}
    
    			certDir := t.TempDir()
    			certPath, keyPath, err := createFn(certDir)
    			if err != nil {
    				t.Fatalf("Unable to setup cert files: %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:40 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. platforms/core-execution/hashing/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = "Tools for creating secure hashes for files and other content"
    
    gradlebuildJava.usedInWorkers() // org.gradle.internal.nativeintegration.filesystem.Stat is used in workers
    
    dependencies {
        api(projects.stdlibJavaExtensions)
    
        implementation(libs.guava)
        api(libs.jsr305)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 400 bytes
    - Viewed (0)
Back to top