Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 771 for createfing (0.18 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiBuildActionIntegrationTest.groovy

                projectConfigured(":buildSrc")
                projectConfigured(":b")
                buildModelCreated()
                modelsCreated(":", ":a")
            }
            outputContains("creating model for root project 'root'")
            outputContains("creating model for project ':a'")
    
            when:
            executer.withArguments(ENABLE_CLI)
            def model2 = runBuildAction(new FetchCustomModelForEachProject())
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.deepcopy.go

    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConversionReview.
    func (in *ConversionReview) DeepCopy() *ConversionReview {
    	if in == nil {
    		return nil
    	}
    	out := new(ConversionReview)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *ConversionReview) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/zz_generated.deepcopy.go

    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CredentialProviderConfig.
    func (in *CredentialProviderConfig) DeepCopy() *CredentialProviderConfig {
    	if in == nil {
    		return nil
    	}
    	out := new(CredentialProviderConfig)
    	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 Feb 09 11:19:11 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. pkg/apis/batch/zz_generated.deepcopy.go

    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CronJob.
    func (in *CronJob) DeepCopy() *CronJob {
    	if in == nil {
    		return nil
    	}
    	out := new(CronJob)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *CronJob) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsKitWindowsSdkLocatorTest.groovy

        }
    
        def kitDir(String name, String... versions) {
            def dir = tmpDir.createDir(name)
            PLATFORMS.each { dir.createFile("bin/${it}/rc.exe") }
            versions.each { version ->
                dir.createFile("Include/${version}/um/windows.h")
                PLATFORMS.each { dir.createFile("Lib/${version}/um/${it}/kernel32.lib") }
            }
            return dir
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

                fileCollection.from(sourceDirs.srcDirTrees)
                println("files = \${fileCollection.files.name.sort()}")
            """
    
            given:
            file("dir1/file1").createFile()
            file("dir1/file2").createFile()
            file("dir2/sub/file3").createFile()
    
            expect:
            succeeds()
            outputContains("files = [file1, file2, file3]")
        }
    
        def "can view the elements of file collection as a Provider"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-local/src/integTest/groovy/org/gradle/caching/local/internal/AbstractBuildCacheCleanupIntegrationTest.groovy

            long lastCleanupCheck = initializeHome()
    
            when:
            def newTrashFile = temporaryFolder.file("0" * hashStringLength).createFile()
            def oldTrashFile = temporaryFolder.file("1" * hashStringLength).createFile()
            createBuildCacheEntry("0" * hashStringLength, newTrashFile, System.currentTimeMillis())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiModelQueryIntegrationTest.groovy

                modelsCreated(":")
            }
            outputContains("creating model for root project 'root'")
    
            when:
            executer.withArguments(ENABLE_CLI)
            def model2 = fetchModel()
    
            then:
            model2.message == "It works from project :"
    
            and:
            fixture.assertStateLoaded()
            outputDoesNotContain("creating model")
    
            when:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

        }
    
        def "detects changes in filtered file tree inputs"() {
            def sources = file("sources").createDir()
            def excludedFile = sources.file("sub/some/excluded").createFile()
            def includedFile = sources.file("sub/some/included.txt").createFile()
    
            buildFile << taskOnlyIncludingTxtFiles
    
            when:
            succeeds("myTask")
            then:
            outputContains("includedFiles: 1")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/egressselector/config_test.go

    		name           string
    		contents       string
    		createFile     bool
    		expectedResult *apiserver.EgressSelectorConfiguration
    		expectedError  *string
    	}{
    		{
    			name:           "empty",
    			createFile:     true,
    			contents:       ``,
    			expectedResult: nil,
    			expectedError:  strptr("invalid service configuration object \"\""),
    		},
    		{
    			name:           "absent",
    			createFile:     false,
    			contents:       ``,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 15.1K bytes
    - Viewed (0)
Back to top