Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,059 for createfing (0.34 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectorySnapshotTest.groovy

            def sourceDir = testDirectory.createDir("source-directory")
            def childDir = sourceDir.createDir("child")
            def childFile = childDir.createFile("child.txt")
            def parentFile = sourceDir.createFile("parent.txt")
            def targetDir = testDirectory.file("target-directory")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. pkg/apis/storagemigration/zz_generated.deepcopy.go

    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageVersionMigration.
    func (in *StorageVersionMigration) DeepCopy() *StorageVersionMigration {
    	if in == nil {
    		return nil
    	}
    	out := new(StorageVersionMigration)
    	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: Fri Mar 08 04:18:56 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storagemigration/v1alpha1/zz_generated.deepcopy.go

    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageVersionMigration.
    func (in *StorageVersionMigration) DeepCopy() *StorageVersionMigration {
    	if in == nil {
    		return nil
    	}
    	out := new(StorageVersionMigration)
    	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: Fri Mar 08 04:18:56 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/zz_generated.deepcopy.go

    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AdmissionConfiguration.
    func (in *AdmissionConfiguration) DeepCopy() *AdmissionConfiguration {
    	if in == nil {
    		return nil
    	}
    	out := new(AdmissionConfiguration)
    	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 Dec 18 20:54:24 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/testing/zz_generated.deepcopy.go

    		}
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Simple.
    func (in *Simple) DeepCopy() *Simple {
    	if in == nil {
    		return nil
    	}
    	out := new(Simple)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *Simple) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authentication/v1beta1/zz_generated.deepcopy.go

    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SelfSubjectReview.
    func (in *SelfSubjectReview) DeepCopy() *SelfSubjectReview {
    	if in == nil {
    		return nil
    	}
    	out := new(SelfSubjectReview)
    	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: Wed Mar 08 23:42:33 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/PCHUtilsTest.groovy

            given:
            def tempDir = tmpDirProvider.createDir("temp")
            def objectDir = tmpDirProvider.createDir("pch")
            def prefixFile = tempDir.createFile("header.h")
            def objectFile = tempDir.createFile("header.o")
            prefixFile << "#include <stdio.h>"
            objectFile << "some content"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. pkg/apis/certificates/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: Thu Mar 16 03:10:59 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/AbstractIdeProjectIntegrationTest.groovy

            String applyTo = allProjects ? "allprojects" : "subprojects"
            buildFile.createFile().text = """
    $applyTo {
        apply plugin:'java'
        apply plugin:'$ideName'
    }
    """
            settingsFile.createFile().text = "rootProject.name='$projectName'\n"
            def proj = new Project(name: projectName, path: "", projectDir: getTestDirectory())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltSharedLibraryBinaryTest.groovy

            binary.sharedLibraryLinkFile == sharedLibraryLinkFile
        }
    
        def "uses specified link file and library file"() {
            given:
            def sharedLibraryFile = createFile()
            def sharedLibraryLinkFile = createFile()
    
            when:
            binary.sharedLibraryFile = sharedLibraryFile
            binary.sharedLibraryLinkFile = sharedLibraryLinkFile
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top