Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for capturing (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/AbstractFailedResolvedArtifactSet.java

    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.operations.BuildOperationQueue;
    import org.gradle.internal.operations.RunnableBuildOperation;
    
    /**
     * An artifact set that is failed, capturing the failure and rethrowing when visited or transformed.
     */
    public abstract class AbstractFailedResolvedArtifactSet implements ResolvedArtifactSet, ResolvedArtifactSet.Artifacts {
        protected final Throwable failure;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/typesafe/TypeSafeProjectAccessorsCompositeBuildsIntegrationTest.groovy

    import org.gradle.util.internal.ToBeImplemented
    
    class TypeSafeProjectAccessorsCompositeBuildsIntegrationTest extends AbstractTypeSafeProjectAccessorsIntegrationTest {
    
        // not necessarily planned to be implemented, but capturing the existing behavior
        @ToBeImplemented
        def "included builds participate in type-safe accessors generation"() {
            settingsFile << """
                rootProject.name = 'test'
    
                includeBuild 'other'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 15:31:19 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache-base/src/test/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTrackerTest.kt

        private
        val tracker = ConfigurationCacheEnvironmentChangeTracker(DefaultProblemFactory(DefaultUserCodeApplicationContext(), NoOpProblemDiagnosticsFactory()))
    
        @Test
        fun `can load state after capturing`() {
            tracker.systemPropertyRemoved("some.property")
            tracker.getCachedState()
    
            tracker.loadFrom(emptyEnvironmentState())
        }
    
        @Test(expected = IllegalStateException::class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top