Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for span1 (0.07 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

        <a class="badge" href="https://dpeuniversity.gradle.com/app/courses/4fcbecbc-7cff-449a-a509-07cf70403f0c/" target="_blank">
            <span class="badge-type button--blue">LEARN</span>
            <span class="badge-text">Maintaining Optimal Gradle Build Cache Performance&nbsp;&nbsp;&nbsp;&gt;</span>
        </a>
    </div>
    ++++
    
    The sole reason to use any build cache is to make builds faster.
    But how much faster can you go when using the cache?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/base/tests/tensorhandle_test.cc

      Tensor tensor = handle.Resolve(&status);
      ASSERT_TRUE(status.ok()) << status.message();
    
      EXPECT_EQ(tensor.dims(), 1);
      EXPECT_EQ(tensor.dtype(), dtype);
      absl::Span<const typename TypeParam::type> tensor_view(
          reinterpret_cast<typename TypeParam::type*>(tensor.data()), value.size());
      EXPECT_EQ(tensor_view[0], 42);
      EXPECT_EQ(tensor_view[1], 100);
      EXPECT_EQ(tensor_view[2], 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:56:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. samples/bookinfo/src/details/details.rb

          # Note: this should probably be changed to use B3 or W3C TRACE_CONTEXT.
          # Lightstep recommends using B3 or TRACE_CONTEXT and most application
          # libraries from lightstep do not support x-ot-span-context.
          'x-ot-span-context',
    
          # Datadog tracing header. Propagate these headers if you use Datadog
          # tracing.
          'x-datadog-trace-id',
          'x-datadog-parent-id',
          'x-datadog-sampling-priority',
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. src/runtime/sizeclasses.go

    // Code generated by mksizeclasses.go; DO NOT EDIT.
    //go:generate go run mksizeclasses.go
    
    package runtime
    
    // class  bytes/obj  bytes/span  objects  tail waste  max waste  min align
    //     1          8        8192     1024           0     87.50%          8
    //     2         16        8192      512           0     43.75%         16
    //     3         24        8192      341           8     29.24%          8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op.cc

    #include <string>
    #include <utility>
    #include <vector>
    
    #include "absl/base/nullability.h"
    #include "absl/container/flat_hash_map.h"
    #include "absl/status/status.h"
    #include "absl/strings/string_view.h"
    #include "absl/types/span.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.pb.h"
    #include "tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/WorkerLoggingSerializer.java

            registry.register(StyledTextOutputEvent.class, new StyledTextOutputEventSerializer(logLevelSerializer, new ListSerializer<StyledTextOutputEvent.Span>(new SpanSerializer(factory.getSerializerFor(StyledTextOutput.Style.class)))));
            registry.register(LogLevelChangeEvent.class, new LogLevelChangeEventSerializer(logLevelSerializer));
    
            return registry;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/upload/date.go

    		u.logger.Printf("tooOld: %v", err)
    		return false
    	}
    	age := uploadStartTime.Sub(t)
    	return age > distantPast
    }
    
    // counterDateSpan parses the counter file named fname and returns the (begin,
    // end) span recorded in its metadata, or an error if this data could not be
    // extracted.
    func (u *uploader) counterDateSpan(fname string) (begin, end time.Time, _ error) {
    	parsed, err := u.parseCountFile(fname)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. tests/integration/telemetry/tracing/otelcollector/tracing_test.go

    // limitations under the License.
    
    // Package otelcollector allows testing a variety of tracing solutions by
    // employing an OpenTelemetry collector that exposes receiver endpoints for
    // various protocols and forwards the spans to a Zipkin backend (for further
    // querying and inspection).
    package otelcollector
    
    import (
    	_ "embed"
    	"errors"
    	"fmt"
    	"testing"
    	"time"
    
    	"istio.io/istio/pkg/test/framework"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:30 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/ops/variable_ops.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/c/experimental/saved_model/core/ops/variable_ops.h"
    
    #include "absl/types/span.h"
    #include "tensorflow/c/eager/abstract_operation.h"
    #include "tensorflow/c/eager/abstract_tensor_handle.h"
    #include "tensorflow/c/eager/immediate_execution_context.h"
    #include "tensorflow/c/eager/immediate_execution_operation.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 11:28:19 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeFixture.groovy

                if (progressPredicate.isSatisfiedBy(op)) {
                    op.progress.each { p ->
                        def repr = p.hasDetailsOfType(StyledTextOutputEvent) ? p.details.spans*.text.join('') : "$p.detailsType.simpleName ${p.details?.toString() ?: ''}\n"
                        print "${'  ' * (level + 1)} $repr"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top