Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for capturing (0.13 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/foreignValue.capturing.txt

    Yan Zhulanow <******@****.***> 1707125430 +0900
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:20:29 UTC 2024
    - 147 bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/compilerFacility/FirIdeNormalAnalysisLibrarySourceModuleCompilerFacilityTestGenerated.java

        @TestDataPath("$PROJECT_ROOT")
        public class Capturing {
          @Test
          public void testAllFilesPresentInCapturing() {
            KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing"), Pattern.compile("^(.+)\\.(kt)$"), null, true);
          }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/compilerFacility/FirIdeNormalAnalysisSourceModuleCompilerFacilityTestGenerated.java

        @TestDataPath("$PROJECT_ROOT")
        public class Capturing {
          @Test
          public void testAllFilesPresentInCapturing() {
            KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing"), Pattern.compile("^(.+)\\.(kt)$"), null, true);
          }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. src/regexp/syntax/doc.go

    Grouping:
    
    	(re)           numbered capturing group (submatch)
    	(?P<name>re)   named & numbered capturing group (submatch)
    	(?<name>re)    named & numbered capturing group (submatch)
    	(?:re)         non-capturing group
    	(?flags)       set flags within current group; non-capturing
    	(?flags:re)    set flags during re; non-capturing
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:21:02 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessorTest.groovy

        TestResultProcessor target = Mock()
        TestOutputRedirector redirector = Mock()
        @Subject processor = new CaptureTestOutputTestResultProcessor(target, redirector)
    
        def "starts capturing output"() {
            def suite = new DefaultTestSuiteDescriptor("1", "Foo")
            def event = new TestStartEvent(1)
    
            when:
            processor.started(suite, event)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/NonNormalizedIdentityImmutableTransformExecution.java

            // This is a performance hack. We could use the regular fingerprint of the input artifact, but that takes longer than
            // capturing the normalized path and the snapshot of the raw contents, so we are using these to determine the identity.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. src/regexp/syntax/regexp.go

    	Rune     []rune     // matched runes, for OpLiteral, OpCharClass
    	Rune0    [2]rune    // storage for short Rune
    	Min, Max int        // min, max for OpRepeat
    	Cap      int        // capturing index, for OpCapture
    	Name     string     // capturing name, for OpCapture
    }
    
    //go:generate stringer -type Op -trimprefix Op
    
    // An Op is a single regular expression operator.
    type Op uint8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheLambdaIntegrationTest.groovy

            where:
            kind                     | expression
            "instance capturing"     | "setInstanceCapturingLambda()"
            "non-instance capturing" | "setNonInstanceCapturingLambda()"
        }
    
        def "capturing prohibited types in serializable lambdas is reported as a problem"() {
            given:
            file("buildSrc/src/main/java/my/LambdaTask.java").tap {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/feature/BuildResultOutputFeatureCheck.java

            } else {
                if (targetGradleVersion.compareTo(MINIMUM_SUPPORTED_GRADLE_VERSION) < 0) {
                    DeprecationLogger.deprecate("Capturing build output in debug mode with the GradleRunner for the version of Gradle you are using (%s) is deprecated with TestKit. " +
                            "TestKit will only support the last 5 major versions in future.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 14:27:21 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. pkg/test/framework/logging.go

    var logOptionsFromCommandline = log.DefaultOptions()
    
    func init() {
    	logOptionsFromCommandline.AttachFlags(
    		func(p *[]string, name string, value []string, usage string) {
    			// TODO(ozben): Implement string array method for capturing the complete set of log settings.
    		},
    		flag.StringVar,
    		flag.IntVar,
    		flag.BoolVar)
    }
    
    func configureLogging() error {
    	o := *logOptionsFromCommandline
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top