Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 436 for captures (0.38 sec)

  1. cmd/os-instrumented.go

    }
    
    // Stat captures time taken to call os.Stat
    func Stat(name string) (info os.FileInfo, err error) {
    	defer updateOSMetrics(osMetricStat, name)(err)
    	return os.Stat(name)
    }
    
    // Create captures time taken to call os.Create
    func Create(name string) (f *os.File, err error) {
    	defer updateOSMetrics(osMetricCreate, name)(err)
    	return os.Create(name)
    }
    
    // Fdatasync captures time taken to call Fdatasync
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 15 01:09:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/plugins/ApplyPluginBuildOperationIntegrationTest.groovy

    class ApplyPluginBuildOperationIntegrationTest extends AbstractIntegrationSpec {
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "captures plugin application events"() {
            given:
            file("build.gradle") << "apply plugin: 'java'"
    
            when:
            succeeds "build"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:36 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/logging/LoggingBuildOperationProgressIntegTest.groovy

            }
        }
    
        def "captures output from buildSrc"() {
            given:
            configureNestedBuild('buildSrc')
            file('buildSrc/build.gradle') << "jar.dependsOn 'foo'"
            file("build.gradle") << ""
    
            when:
            succeeds "help"
    
            then:
            assertNestedTaskOutputTracked(':buildSrc')
        }
    
        def "captures output from composite builds"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/PreviousExecutionState.java

    package org.gradle.internal.execution.history;
    
    import com.google.common.collect.ImmutableSortedMap;
    import org.gradle.internal.fingerprint.FileCollectionFingerprint;
    import org.gradle.internal.hash.HashCode;
    
    /**
     * Captures the state a {@link org.gradle.internal.execution.UnitOfWork} after the previous execution has finished.
     */
    public interface PreviousExecutionState extends ExecutionInputState, ExecutionOutputState {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 09:46:47 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. cmd/site-replication-metrics.go

    	// Total number of completed operations
    	ReplicatedCount int64 `json:"replicatedCount"`
    	// Failed captures replication errors in various time windows
    
    	Failed madmin.TimedErrStats `json:"failed,omitempty"`
    
    	XferStats map[RMetricName]XferStats `json:"transferSummary"`
    }
    
    // SRMetricsSummary captures summary of replication counts across buckets on site
    // along with op metrics rollup.
    type SRMetricsSummary struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/DependencyInsightOutputNormalizer.groovy

            output.replaceAll("(?x)" +
                "# Captures first half of the table\n" +
                "(\\s+\\|\\s+org\\.gradle\\.jvm\\.version\\s+\\|\\s+\\|\\s+)" +
                "# Decides between a single digit + spacing (e.g. '8 '), or two digits (e.g. 17)\n" +
                "# This is the value being replaced.\n" +
                "(?:\\d\\s|\\d{2})" +
                "# Capture the tail end of the table\n" +
                "(\\s+\\|)",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/internal/trace/testdata/generators/go122-fail-first-gen-first.go

    // it would handle that error immediately and a totally valid generation
    // would be skipped for parsing and rejected because of an error in a
    // batch in the following generation.
    //
    // This test captures this behavior by making both the first generation
    // and second generation bad. It requires that the issue in the first
    // generation, which is caught when actually ordering events, be reported
    // instead of the second one.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/schemaBuidler/TreatInterfaceAsConfigureLambdaTest.kt

            assertFalse { customConfigureLambdas.isConfigureLambdaForType(typeOf<String>(), typeOf<MyFunctionalInterface<Int>>()) }
        }
    
        @Test
        @Suppress("UNCHECKED_CAST")
        fun `value captor captures the argument`() {
            fun f(fn: MyFunctionalInterface<String>) {
                fn.configure("test")
            }
    
            val valueCaptor1 = customConfigureLambdas.produceValueCaptor(typeOf<MyFunctionalInterface<Int>>())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:53:44 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top