Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 820 for testPipe (0.21 sec)

  1. pkg/controller/deployment/progress_test.go

    		Reason:             util.NewRSAvailableReason,
    		LastUpdateTime:     testTime,
    		LastTransitionTime: testTime,
    	}
    	replicaSetUpdated := apps.DeploymentCondition{
    		Type:               apps.DeploymentProgressing,
    		Status:             v1.ConditionTrue,
    		Reason:             util.ReplicaSetUpdatedReason,
    		LastUpdateTime:     testTime,
    		LastTransitionTime: testTime,
    	}
    
    	tests := []struct {
    		name            string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-shared/src/test/groovy/org/gradle/wrapper/InstallTest.groovy

        @Shared
        @ClassRule
        TestNameTestDirectoryProvider sharedTemporaryFolder = TestNameTestDirectoryProvider.newInstance(getClass())
        @Shared TestFile templateZipFile = new TestFile(sharedTemporaryFolder.testDirectory, "template-gradle.zip")
        @Shared TestFile templateEvalZipFile = new TestFile(sharedTemporaryFolder.testDirectory, "template-eval-gradle.zip")
        @Shared String templateZipHash
        @Shared String templateEvalZipHash
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/CrossVersionIntegrationSpec.groovy

            return previous.version.baseVersion.version
        }
    
        protected TestFile getBuildFile() {
            testDirectory.file('build.gradle')
        }
    
        protected TestFile getSettingsFile() {
            testDirectory.file('settings.gradle')
        }
    
        TestFile getTestDirectory() {
            temporaryFolder.getTestDirectory()
        }
    
        protected TestFile file(Object... path) {
            testDirectory.file(path)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/openapi/testing/zz_generated.deepcopy.go

    func (in *TestType) DeepCopyInto(out *TestType) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TestType.
    func (in *TestType) DeepCopy() *TestType {
    	if in == nil {
    		return nil
    	}
    	out := new(TestType)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/plugin/PluginBuilder.groovy

        PluginBuilder(TestFile projectDir) {
            this.projectDir = projectDir
        }
    
        TestFile getBuildFile() {
            file("build.gradle")
        }
    
        TestFile file(String path) {
            projectDir.file(path)
        }
    
        TestFile groovy(String path) {
            file("src/main/groovy/${sourceFilePath(path)}")
        }
    
        TestFile java(String path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/log/slog/internal/benchmarks/benchmarks_test.go

    							slog.Any("error", testError),
    							slog.String("string", testString),
    							slog.Int("status", testInt),
    							slog.Duration("duration", testDuration),
    							slog.Time("time", testTime),
    							slog.Any("error", testError),
    							slog.String("string", testString),
    							slog.Int("status", testInt),
    							slog.Duration("duration", testDuration),
    							slog.Time("time", testTime),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 18:32:54 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/TestJavaComponent.groovy

    public class Person2 {
    }
    ''')
        ]
    
    
        @Override
        void changeSources(List<TestFile> sourceFiles){
            def personJavaFile = sourceFiles.find { it.name == "Person.java" }
            personJavaFile.text = personJavaFile.text.replace("String name;", "String name; String anotherName;")
        }
    
        @Override
        void writeAdditionalSources(TestFile sourceDir) {
            sourceDir.file("java/Extra.java") << """
    interface Extra {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

    fun createQuickFeedbackTasks() {
        val testType = TestType.CROSSVERSION
        val defaultExecuter = "embedded"
        val prefix = testType.prefix
        testType.executers.forEach { executer ->
            val taskName = "$executer${prefix.capitalize()}Test"
            val testTask = createTestTask(taskName, executer, sourceSet, testType) {
                this.setSystemPropertiesOfTestJVM("latest")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/CommitDistribution.groovy

         * @return
         */
        @Override
        TestFile getGradleHomeDir() {
            TestFile superGradleHome = super.getGradleHomeDir()
    
            if (!superGradleHome.isDirectory() || superGradleHome.listFiles({ it.isDirectory() } as FileFilter).size() == 0) {
                super.binDistribution.usingNativeTools().unzipTo(superGradleHome)
            }
            return new TestFile(superGradleHome.listFiles({ it.isDirectory() } as FileFilter).first())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

        }
    
        def "overlapping output with localStateFileTask, dirTask then localStateFileTask, dirTask"() {
            def (String localStateFileTask, TestFile localStateFileTaskOutput, TestFile localStateFileTaskState,
            String dirTask, TestFile dirTaskOutput) = useOverlappingLocalStateFileAndOutputDirectory()
    
            when:
            withBuildCache().run(localStateFileTask, dirTask)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
Back to top