Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 707 for capture2 (0.15 sec)

  1. 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)
  2. releasenotes/notes/agent-dns-capture.yaml

    John Howard <******@****.***> 1602131566 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 08 04:32:46 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  3. releasenotes/notes/cni-dns-capture.yaml

    Brian Avery <******@****.***> 1620951743 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 14 00:22:23 UTC 2021
    - 151 bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/TypeParameter.java

    import static com.google.common.base.Preconditions.checkArgument;
    
    import java.lang.reflect.Type;
    import java.lang.reflect.TypeVariable;
    import javax.annotation.CheckForNull;
    
    /**
     * Captures a free type variable that can be used in {@link TypeToken#where}. For example:
     *
     * <pre>{@code
     * static <T> TypeToken<List<T>> listOf(Class<T> elementType) {
     *   return new TypeToken<List<T>>() {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/libtf/module.h

    //      restore it, and attach it to the associated variable object.
    //   4) For each polymorphic function, associate it with the appropriate
    //      concrete function(s).
    //   5) For each function with captures, bind the appropriate objects as
    //      captured inputs.
    //   6) Take the fully-prepared objects, and build them into a hierarchy.
    //   7) Return the prepared model.
    
    // Converts a SavedUserObject into its corresponding data structure.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 02 20:02:30 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. 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)
  7. guava/src/com/google/common/reflect/TypeParameter.java

    import static com.google.common.base.Preconditions.checkArgument;
    
    import java.lang.reflect.Type;
    import java.lang.reflect.TypeVariable;
    import javax.annotation.CheckForNull;
    
    /**
     * Captures a free type variable that can be used in {@link TypeToken#where}. For example:
     *
     * <pre>{@code
     * static <T> TypeToken<List<T>> listOf(Class<T> elementType) {
     *   return new TypeToken<List<T>>() {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationResult.java

    /**
     * This operation represents the work of analyzing the task's inputs plus the calculating the cache key.
     *
     * <p>
     * These two operations should be captured separately, but for historical reasons we don't yet do that.
     * To reproduce this composite operation we capture across executors by starting an operation
     * in {@link MarkSnapshottingInputsStartedStep} and finished in {@link MarkSnapshottingInputsFinishedStep}.
     * </p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:20:39 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/SerializedLambdaParametersCheckingCodec.kt

            val signature = value.implMethodSignature
            val paramTypes: Array<Type> = getArgumentTypes(signature)
    
            // Treat all parameters equally, regardless of whether they are implicit captured parameters or the lambda signature ones.
            // If any of them is of an unsupported type, a build that runs from the serialized state won't be able to provide an instance anyway.
            paramTypes.forEach { paramType ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerCaptureOutputIntegrationTest.groovy

            } else {
                assert stdStreams.stdOut.findAll(OUT).size() == 2
                assert stdStreams.stdOut.findAll(ERR).size() == 2
            }
        }
    
        def "output is captured if unexpected build exception is thrown"() {
            given:
            Writer standardOutput = new StringWriter()
            Writer standardError = new StringWriter()
            buildFile << helloWorldWithStandardOutputAndError()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top