Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for beforeGet (0.31 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestReportDataCollector.java

                    methodResult.completed(result);
                    classResult.add(methodResult);
                }
            }
        }
    
        @Override
        public void beforeTest(TestDescriptor testDescriptor) {
            TestDescriptorInternal testDescriptorInternal = (TestDescriptorInternal) testDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/testing/AbstractTestFrameworkIntegrationTest.groovy

                    void afterSuite(TestDescriptor suite, TestResult result) { println "FINISH Test Suite [\$suite.className] [\$suite.name] [\$result.resultType] [\$result.testCount]" }
                    void beforeTest(TestDescriptor test) { println "START Test Case [\$test.className] [\$test.name]" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGIntegrationTest.groovy

                    void afterSuite(TestDescriptor suite, TestResult result) { println "FINISH [$suite] [$suite.name]" }
                    void beforeTest(TestDescriptor test) { println "START [$test] [$test.name]" }
                    void afterTest(TestDescriptor test, TestResult result) { println "FINISH [$test] [$test.name] [$result.exception]" }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. pkg/api/v1/pod/util_test.go

    	})
    }
    
    func newPod(now metav1.Time, ready bool, beforeSec int) *v1.Pod {
    	conditionStatus := v1.ConditionFalse
    	if ready {
    		conditionStatus = v1.ConditionTrue
    	}
    	return &v1.Pod{
    		Status: v1.PodStatus{
    			Conditions: []v1.PodCondition{
    				{
    					Type:               v1.PodReady,
    					LastTransitionTime: metav1.NewTime(now.Time.Add(-1 * time.Duration(beforeSec) * time.Second)),
    					Status:             conditionStatus,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
  5. tests/create_test.go

    	}
    
    	beforeLen := len(values)
    	if err := DB.Model(&User{}).Create(&values).Error; err != nil {
    		t.Fatalf("failed to create data from map, got error: %v", err)
    	}
    
    	// mariadb with returning, values will be appended with id map
    	if len(values) == beforeLen*2 {
    		t.Skipf("This test case skipped, because the db supports returning")
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 19 03:50:28 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			schemaGenerator: func(max *int64) *schema.Structural {
    				strType := withMaxLength(primitiveType("string", ""), max)
    				beforeLen := int64(2)
    				afterLen := int64(4)
    				objType := objectType(map[string]schema.Structural{
    					"str":    strType,
    					"before": withMaxLength(primitiveType("string", ""), &beforeLen),
    					"after":  withMaxLength(primitiveType("string", ""), &afterLen),
    				})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

     *   minHeapSize = "128m"
     *   maxHeapSize = "512m"
     *
     *   // set JVM arguments for the test JVM(s)
     *   jvmArgs '-XX:MaxPermSize=256m'
     *
     *   // listen to events in the test execution lifecycle
     *   beforeTest { descriptor ->
     *      logger.lifecycle("Running test: " + descriptor)
     *   }
     *
     *   // fail the 'test' task on the first test failure
     *   failFast = true
     *
     *   // skip an actual test execution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                    @Override void beforeSuite(TestDescriptor suite) {}
                    @Override void afterSuite(TestDescriptor suite, TestResult result) {}
                    @Override void beforeTest(TestDescriptor testDescriptor) {}
                    @Override void afterTest(TestDescriptor testDescriptor, TestResult result) {}
                }
    
                class TestOutputAdapter implements TestOutputListener {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/resolver/FirIdeNormalAnalysisLibrarySourceModuleResolveReferenceTestGenerated.java

          }
    
          @Test
          @TestMetadata("beforeDot.kt")
          public void testBeforeDot() {
            runTest("analysis/analysis-api/testData/components/resolver/singleByPsi/typeArgument/type/beforeDot.kt");
          }
        }
      }
    
      @Nested
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:01 UTC 2024
    - 175.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/resolver/FirIdeNormalAnalysisLibrarySourceModuleResolveCallTestGenerated.java

          }
    
          @Test
          @TestMetadata("beforeDot.kt")
          public void testBeforeDot() {
            runTest("analysis/analysis-api/testData/components/resolver/singleByPsi/typeArgument/type/beforeDot.kt");
          }
        }
      }
    
      @Nested
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 175.8K bytes
    - Viewed (0)
Back to top