Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 678 for captures (0.2 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/TypeOfExtensions.kt

     */
    package org.gradle.kotlin.dsl
    
    import org.gradle.api.reflect.TypeOf
    
    
    /**
     * Creates an instance of [TypeOf] for the given parameterized type.
     *
     * @param T the type
     * @return the [TypeOf] that captures the generic type of the given parameterized type
     */
    inline fun <reified T> typeOf(): TypeOf<T> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 947 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/build_scans.adoc

            <span class="badge-text">How to Use Build Scans&nbsp;&nbsp;&nbsp;&gt;</span>
        </a>
    </div>
    ++++
    
    A build scan is a *representation of metadata captured* as you run your build.
    
    image::gradle-basic-1.png[]
    
    == Build Scans
    Gradle captures your build metadata and sends it to the link:https://scans.gradle.com/[Build Scan Service].
    The service then transforms the metadata into information you can analyze and share with others.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginSyntheticIntegrationTest.kt

                assertNotOutput("STDERR from plugins block")
                // TODO logging is not captured yet
                assertOutputContains("LIFECYCLE")
                assertOutputContains("WARN")
                assertHasErrorOutput("ERROR")
            }
        }
    
        @Test
        @Issue("https://github.com/gradle/gradle/issues/12955")
        fun `captures output of schema collection but not of concurrent tasks`() {
    
            val repeatOutput = 50
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/AfterExecutionState.java

    package org.gradle.internal.execution.history;
    
    import com.google.common.collect.ImmutableSortedMap;
    import org.gradle.internal.fingerprint.CurrentFileCollectionFingerprint;
    import org.gradle.internal.hash.HashCode;
    
    /**
     * Captures the state of a {@link org.gradle.internal.execution.UnitOfWork} after it has been executed.
     *
     * Execution here might also mean being up-to-date or loaded from cache.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. pilot/pkg/model/controller.go

    type Event int
    
    const (
    	// EventAdd is sent when an object is added
    	EventAdd Event = iota
    
    	// EventUpdate is sent when an object is modified
    	// Captures the modified object
    	EventUpdate
    
    	// EventDelete is sent when an object is deleted
    	// Captures the object at the last known state
    	EventDelete
    )
    
    func (event Event) String() string {
    	out := "unknown"
    	switch event {
    	case EventAdd:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 25 06:54:32 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGStaticLoggingIntegrationTest.groovy

                    reports.junitXml.outputPerTestCase = true
                    onOutput { test, event -> print "\$test -> \$event.message" }
                }
            """
        }
    
        @Issue("GRADLE-2841")
        def "captures output from logging frameworks"() {
            buildFile << """
                dependencies { implementation "org.slf4j:slf4j-simple:1.7.10", "org.slf4j:slf4j-api:1.7.10" }
    """
            file("src/test/java/FooTest.java") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/ExecutionInputState.java

    import org.gradle.internal.fingerprint.FileCollectionFingerprint;
    import org.gradle.internal.snapshot.ValueSnapshot;
    import org.gradle.internal.snapshot.impl.ImplementationSnapshot;
    
    /**
     * Captures the state of the inputs of a {@link org.gradle.internal.execution.UnitOfWork}.
     */
    public interface ExecutionInputState {
        /**
         * The main implementation snapshots.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. internal/bucket/bandwidth/measurement.go

    	"sync/atomic"
    	"time"
    )
    
    const (
    	// betaBucket is the weight used to calculate exponential moving average
    	betaBucket = 0.1 // Number of averages considered = 1/(1-betaObject)
    )
    
    // bucketMeasurement captures the bandwidth details for one bucket
    type bucketMeasurement struct {
    	lock                 sync.Mutex
    	bytesSinceLastWindow uint64    // Total bytes since last window was processed
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 03 20:41:51 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/types/namespacedname.go

    limitations under the License.
    */
    
    package types
    
    // NamespacedName comprises a resource name, with a mandatory namespace,
    // rendered as "<namespace>/<name>".  Being a type captures intent and
    // helps make sure that UIDs, namespaced names and non-namespaced names
    // do not get conflated in code.  For most use cases, namespace and name
    // will already have been format validated at the API entry point, so we
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 10:47:59 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfoIntegrationSpec.groovy

            captureResults << executer.withTasks('capture1').run()
            captureResults << executer.withTasks('capture2').run()
    
            then:
            captureResults[0].assertTaskExecuted(':capture1')
            captureResults[1].assertTaskExecuted(':capture2')
    
            cleanup:
            daemon?.abort()
        }
    
        def "a daemon expiration listener receives expiration reasons continuous:#continuous"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top