Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 678 for captures (0.17 sec)

  1. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginAdapter.java

    import org.gradle.internal.operations.notify.BuildOperationNotificationListenerRegistrar;
    
    import javax.annotation.Nonnull;
    import javax.annotation.Nullable;
    import java.util.Collection;
    
    /**
     * Captures the state to recreate the {@link GradleEnterprisePluginService} instance.
     * <p>
     * The adapter is created on check-in in {@link DefaultGradleEnterprisePluginCheckInService} via {@link DefaultGradleEnterprisePluginAdapterFactory}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/storage/v1alpha1/generated.proto

      // items is the list of CSIStorageCapacity objects.
      // +listType=map
      // +listMapKey=name
      repeated CSIStorageCapacity items = 2;
    }
    
    // VolumeAttachment captures the intent to attach or detach the specified volume
    // to/from the specified node.
    //
    // VolumeAttachment objects are non-namespaced.
    message VolumeAttachment {
      // Standard object metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r42/BuildProgressTaskActionsCrossVersionSpec.groovy

            task.descendant('Clean stale outputs')
        }
    
        //This is the current behavior. Snapshotting might become not-a-task-action in the future.
        // NOTE: This operation captures more than just snapshotting, and will be removed in a later release in favor of separate snapshotting operations
        def "snapshot task inputs action has an informative name"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. src/runtime/trace/trace.go

    //
    // The execution trace captures a wide range of execution events such as
    // goroutine creation/blocking/unblocking, syscall enter/exit/block,
    // GC-related events, changes of heap size, processor start/stop, etc.
    // When CPU profiling is active, the execution tracer makes an effort to
    // include those samples as well.
    // A precise nanosecond-precision timestamp and a stack trace is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/worker/ForkingTestClassProcessorTest.groovy

            then:
            1 * workerProcess.stopNow()
            _ * workerProcess.waitForStop() >> { throw new ExecException("waitForStop can throw") }
            notThrown(ExecException)
        }
    
        def "captures and rethrows unrecoverable exceptions thrown by the connection"() {
            def handler
            def processor = newProcessor()
    
            when:
            processor.processTestClass(Mock(TestClassRunInfo))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/configuration/project/LifecycleProjectEvaluatorIntegrationTest.groovy

                }
            """
    
            when:
            succeeds 'help'
    
            then:
            output =~ /> Outer\s+< Outer\s+Inner/
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "captures lifecycle operations"() {
            given:
            file('buildSrc/buildSrcWhenReady.gradle') << ""
            file('buildSrc/build.gradle') << """
                gradle.taskGraph.whenReady {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4LoggingOutputCaptureIntegrationTest.groovy

    import org.junit.Assume
    
    import static org.hamcrest.CoreMatchers.is
    
    abstract class AbstractJUnit4LoggingOutputCaptureIntegrationTest extends AbstractJUnitLoggingOutputCaptureIntegrationTest {
        def "captures logging output events"() {
            // This test checks behavior introduced in JUnit 4.13
            Assume.assumeTrue(VersionNumber.parse(version) >= VersionNumber.parse("4.13"))
    
            file("src/test/java/OkTest.java") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/ExecuteActionsTaskExecuterTest.groovy

            state.didWork
            state.outcome == TaskExecutionOutcome.EXECUTED
            !state.executing
            !state.failure
            state.actionable
    
            noMoreInteractions()
        }
    
        def "captures exceptions from async work"() {
            given:
            task.getTaskActions() >> [action1, action2]
            task.hasTaskActions() >> true
    
            when:
            executer.execute(task, state, executionContext)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    }
    
    func (CSIStorageCapacityList) SwaggerDoc() map[string]string {
    	return map_CSIStorageCapacityList
    }
    
    var map_VolumeAttachment = map[string]string{
    	"":         "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/TryTest.groovy

            expect:
            Try.ofFailable { throw failure } == Try.failure(failure)
            Try.ofFailable { throw runtimeFailure } == Try.failure(runtimeFailure)
        }
    
        def "captures result"() {
            expect:
            Try.ofFailable { result } == Try.successful(result)
    
            where:
            result << [['a', 'b', 'c'], "Some string", 5]
        }
    
        def "successful (flat) map"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top