Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,059 for createfing (0.19 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DirectoryPropertyTest.groovy

        }
    
        def "can view directory as a file tree"() {
            given:
            def dir1 = baseDir.createDir("dir1")
            def file1 = dir1.createFile("sub-dir/file1")
            def file2 = dir1.createFile("file2")
            def dir2 = baseDir.createDir("dir2")
            def file3 = dir2.createFile("other/file3")
    
            expect:
            def tree1 = baseDirectory.asFileTree
            tree1.files == [file1, file2, file3] as Set
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/apis/cr/v1/zz_generated.deepcopy.go

    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Example.
    func (in *Example) DeepCopy() *Example {
    	if in == nil {
    		return nil
    	}
    	out := new(Example)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *Example) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/project/ProjectFactoryTest.groovy

        def setup() {
            owner.buildIdentifier >> buildId
        }
    
        def "creates a project with build script"() {
            def buildFile = tmpDir.createFile("build.gradle")
            def projectDir = tmpDir.createFile("project")
    
            given:
            projectDescriptor.name >> "name"
            projectDescriptor.projectDir >> projectDir
            projectDescriptor.buildFile >> buildFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 06 10:41:06 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SymlinkContinuousIntegrationTest.groovy

            // need an existing sibling of the symlink to ensure the parent directory of
            // the symlink is watched between builds.
            linkdir.file("existing").createFile()
            buildFile << """
        task echo {
            def symlink = file("${symlink.toURI()}")
            inputs.files symlink
            inputs.files "src/linkdir/existing"
            outputs.file "build/outputs"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs-asciidoctor-extensions-base/src/test/groovy/org/gradle/docs/asciidoctor/GuidesContributeIncludeProcessorTest.groovy

        }
    
        def "can use guide-name attribute on document to customize the issue and repository urls"() {
            given:
            String asciidocContent = """
                |:guide-name: creating-build-scans
                |= Doctitle
                |
                |include::contribute[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/certificates/v1alpha1/zz_generated.deepcopy.go

    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterTrustBundle.
    func (in *ClusterTrustBundle) DeepCopy() *ClusterTrustBundle {
    	if in == nil {
    		return nil
    	}
    	out := new(ClusterTrustBundle)
    	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: Thu Mar 16 03:10:59 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/objectivecpp/tasks/ObjectiveCppCompileTest.groovy

            pch.includeString >> "header"
            pch.prefixHeaderFile >> temporaryFolder.file("prefixHeader").createFile()
            pch.objectFile >> temporaryFolder.file("pchObjectFile").createFile()
            pch.pchObjects >> TestFiles.empty()
            1 * objCppCompiler.execute({ ObjectiveCppCompileSpec spec ->
                assert spec.sourceFiles*.name == ["sourceFile"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/installation/GradleRuntimeShadedJarDetectorTest.groovy

                writeClass(contents)
                contents.createFile(GradleRuntimeShadedJarDetector.MARKER_FILENAME)
            }
        }
    
        private void createJarWithoutMarkerFile(TestFile jar) {
            handleAsJarFile(jar) { TestFile contents ->
                writeClass(contents)
                contents.createFile('content.txt')
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 06 01:29:26 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/certificates/v1beta1/zz_generated.deepcopy.go

    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateSigningRequest.
    func (in *CertificateSigningRequest) DeepCopy() *CertificateSigningRequest {
    	if in == nil {
    		return nil
    	}
    	out := new(CertificateSigningRequest)
    	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: Tue Aug 24 19:47:49 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  10. pkg/apis/node/zz_generated.deepcopy.go

    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RuntimeClass.
    func (in *RuntimeClass) DeepCopy() *RuntimeClass {
    	if in == nil {
    		return nil
    	}
    	out := new(RuntimeClass)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *RuntimeClass) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4K bytes
    - Viewed (0)
Back to top