Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 197 for statistics (0.25 sec)

  1. samples/httpbin/sample-client/fortio-deploy.yaml

    metadata:
      name: fortio-deploy
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: fortio
      template:
        metadata:
          annotations:
            # This annotation causes Envoy to serve cluster.outbound statistics via 15000/stats
            # in addition to the stats normally served by Istio. The Circuit Breaking example task
            # gives an example of inspecting Envoy stats via proxy config.
            proxy.istio.io/config: |-
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 10 02:32:01 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. internal/logger/target/types/types.go

    //go:generate stringer -type=TargetType -trimprefix=Target $GOFILE
    
    // Constants for target types
    const (
    	_ TargetType = iota
    	TargetConsole
    	TargetHTTP
    	TargetKafka
    )
    
    // TargetStats contains statistics for a target.
    type TargetStats struct {
    	// QueueLength is the queue length if any messages are queued.
    	QueueLength int
    
    	// TotalMessages is the total number of messages sent in the lifetime of the target
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Nov 10 18:20:21 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. cmd/http-stats.go

    	"strings"
    	"sync"
    	"sync/atomic"
    
    	xhttp "github.com/minio/minio/internal/http"
    	"github.com/prometheus/client_golang/prometheus"
    )
    
    const (
    	apiGetObject = "GetObject"
    )
    
    // connStats - Network statistics
    // Count total input/output transferred bytes during
    // the server's life.
    type connStats struct {
    	internodeInputBytes  uint64
    	internodeOutputBytes uint64
    	s3InputBytes         uint64
    	s3OutputBytes        uint64
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/custom_aggregator_op.cc

        const Tensor& input_tensor = context->input(0);
    
        // Use the same input for the first output.
        context->set_output(0, input_tensor);
    
        // Calculate min/max statistics.
        const auto input_flat = input_tensor.flat<float>();
        Tensor *min_output = nullptr, *max_output = nullptr;
        OP_REQUIRES_OK(context, context->allocate_output("min", {}, &min_output));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.h

    // static-range quantization.
    //
    // The resulting `ModuleOp` contains quantized StableHLO ops serialized in
    // `TF::XlaCallModuleOp`s. They are quantized using the statistics collected
    // after the calibration step, corresponding to each `TF::CustomAggregatorOp`s
    // in the input module op.
    //
    // TODO: b/320607042 - Add tests for this component on the python layer.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainer.java

        private final TaskStatistics statistics;
        private final boolean eagerlyCreateLazyTasks;
    
        private MutableModelNode modelNode;
    
        public DefaultTaskContainer(
            ProjectInternal project,
            Instantiator instantiator,
            TaskIdentityFactory taskIdentityFactory,
            ITaskFactory taskFactory,
            TaskStatistics statistics,
            BuildOperationRunner buildOperationRunner,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/work/DefaultWorkerLeaseServiceProjectLockTest.groovy

                    thread.blockUntil.worker2Executed
                }
            }
    
            then:
            instant.worker1Executed > instant.worker2Executed
        }
    
        def "gathers statistics when acquiring a project lock and statistics flag is set"() {
            def projectLock = workerLeaseService.getProjectLock(path("root"), path(":project"))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/BuildResultLoggerIntegrationTest.groovy

                    }
                }
    
                task noActions(dependsOn: executedTask) {}
            """
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "task outcome statistics are reported"() {
            when:
            run "adHocTask", "executedTask"
    
            then:
            result.assertTasksNotSkipped(":adHocTask", ":executedTask")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

      let summary = "Inserts `CalibrationStatisticsSaver` op to collect and save calibration statistics.";
      let description = [{
        Finds all `CustomAggregator` ops in the each function and add a single
        `CalibrationStatisticsSaver` op at the end of the function to collect their
        statistics.
      }];
      let options = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/statistics/TaskExecutionStatistics.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.tasks.execution.statistics;
    
    import static com.google.common.base.Preconditions.checkArgument;
    
    public class TaskExecutionStatistics {
        private final int executedTasksCount;
        private final int fromCacheTaskCount;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 15 08:48:58 UTC 2017
    - 1.8K bytes
    - Viewed (0)
Back to top