Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 128 for capturing (0.2 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/source/PrintStreamLoggingSystemTest.groovy

            def snapshot = loggingSystem.snapshot()
            loggingSystem.setLevel(LogLevel.ERROR)
            loggingSystem.startCapture()
            def capturing = stream
    
            when:
            loggingSystem.restore(snapshot)
            capturing.println("info-1")
            stream.println('info-2')
    
            then:
            stream == originalStream
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/ImplicitInputsCapturingInstantiator.java

     * inputs provided by injected services. For this to be possible, a capturing
     * instantiator "session" must be created before the instance is created. This
     * must be done by calling the {@link #capturing(ImplicitInputRecorder)} method
     * which provides a registrar which will record implicit inputs.
     *
     * Not all services have to be capturing. Only services implementing the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:08:22 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. 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)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitCategoriesOrTagsCoverageIntegrationSpec.groovy

         * unique test sources (e.g. JUnit4 vs JUnit5).
         */
        interface TestSourceGenerator {
            void writeAllSources(TestSourceFixture fixture)
        }
    
        /**
         * Fixture for capturing test source requirements.  This will be provided to a {@link TestSourceGenerator} to generate the test sources.
         */
        class TestSourceFixture {
            List<TestClass> testClasses = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 14:54:49 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskExecutionContext.java

         * Gets and clears the context of the build operation designed to measure the time taken
         * by capturing input snapshotting and cache key calculation.
         */
        Optional<BuildOperationContext> removeSnapshotTaskInputsBuildOperationContext();
    
        /**
         * Sets the context for the build operation designed to measure the time taken
         * by capturing input snapshotting and cache key calculation.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 24 13:24:41 UTC 2022
    - 2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/ImplementationSnapshotTest.groovy

            'method reference'       | { -> createLambdaSnapshot(TestLambdas.createMethodRefLambda()) }
            'static field capturing' | { -> createLambdaSnapshot(TestLambdas.createClassCapturingLambda()) }
            'instance capturing'     | { -> createLambdaSnapshot(TestLambdas.createInstanceCapturingLambda()) }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 23:46:07 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. 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)
  10. operator/pkg/validate/common.go

    	// regexp has capturing groups for the domain and name part omitting
    	// the separating forward slash from either.
    	NameRegexp = expression(
    		optional(DomainRegexp, literal(`/`)),
    		nameComponentRegexp,
    		optional(repeated(literal(`/`), nameComponentRegexp)))
    
    	// ReferenceRegexp is the full supported format of a reference. The regexp
    	// is anchored and has capturing groups for name, tag, and digest
    	// components.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top