Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 108 for Sizes (0.11 sec)

  1. src/html/template/attr.go

    	"scope":       contentTypePlain,
    	"scoped":      contentTypePlain,
    	"seamless":    contentTypePlain,
    	"selected":    contentTypePlain,
    	"shape":       contentTypePlain,
    	"size":        contentTypePlain,
    	"sizes":       contentTypePlain,
    	"span":        contentTypePlain,
    	"src":         contentTypeURL,
    	"srcdoc":      contentTypeHTML,
    	"srclang":     contentTypePlain,
    	"srcset":      contentTypeSrcset,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/glob_lit_test.bzl

          test_file_exts: [str], extensions for files that are tests.
          default_size: str, the test size for targets not in "size_override".
          size_override: {str: str}, sizes to use for specific tests.
          data: [str], additional input data to the test.
          per_test_extra_data: {str: [str]}, extra data to attach to a given file.
          default_tags: [str], additional tags to attach to the test.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 19:29:19 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/test_utils.cc

          break;
      }
    }
    
    // Checks the underlying data is equal for the buffers for two numeric tensors.
    // Note: The caller must ensure to check that the dtypes and sizes of the
    // underlying buffers are the same before calling this.
    void CheckBufferDataIsEqual(DataType dtype, int64_t num_elements, void* a,
                                void* b) {
      switch (dtype) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:13:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. internal/http/dial_linux.go

    			// This is a sensitive configuration, it is better to set it to high values, > 60 secs since it can
    			// affect clients reading data with a very slow pace  (disappropriate with socket buffer sizes)
    			if opts.UserTimeout > 0 {
    				_ = syscall.SetsockoptInt(fd, syscall.IPPROTO_TCP, unix.TCP_USER_TIMEOUT, opts.UserTimeout)
    			}
    
    			if opts.Interface != "" {
    				if h, _, err := net.SplitHostPort(address); err == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (3)
  5. src/go/internal/gccgoimporter/ar.go

    	"internal/xcoff"
    	"io"
    	"strconv"
    	"strings"
    )
    
    // Magic strings for different archive file formats.
    const (
    	armag  = "!<arch>\n"
    	armagt = "!<thin>\n"
    	armagb = "<bigaf>\n"
    )
    
    // Offsets and sizes for fields in a standard archive header.
    const (
    	arNameOff  = 0
    	arNameSize = 16
    	arDateOff  = arNameOff + arNameSize
    	arDateSize = 12
    	arUIDOff   = arDateOff + arDateSize
    	arUIDSize  = 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 14:14:36 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/audit/truncate/truncate.go

    }
    
    type backend struct {
    	// The delegate backend that actually exports events.
    	delegateBackend audit.Backend
    
    	// Configuration used for truncation.
    	c Config
    
    	// Encoder used to calculate audit event sizes.
    	e runtime.Encoder
    }
    
    var _ audit.Backend = &backend{}
    
    // NewBackend returns a new truncating backend, using configuration passed in the parameters.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 29 00:03:53 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  7. src/internal/types/testdata/spec/range_int.go

    // This is a subset of the tests in range.go for range over integers,
    // with extra tests, and without the need for -goexperiment=range.
    
    package p
    
    // test framework assumes 64-bit int/uint sizes by default
    const (
    	maxInt  = 1<<63 - 1
    	maxUint = 1<<64 - 1
    )
    
    type MyInt int32
    
    func _() {
    	for range -1 {
    	}
    	for range 0 {
    	}
    	for range 1 {
    	}
    	for range uint8(1) {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:56:00 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_cl.cc

    // NOLINTNEXTLINE
    opt<std::string> input_shapes(
        "tf-input-shapes",
        llvm::cl::desc(
            "Input tensor shapes. Shapes for different tensors are separated by "
            "':', and dimension sizes for the same tensor are separated by ','"),
        llvm::cl::init(""));
    
    // NOLINTNEXTLINE
    opt<std::string> output_arrays(
        "tf-output-arrays", llvm::cl::desc("Output tensor names, separated by ','"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 10 20:59:50 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. docs/erasure/README.md

    The drives should all be of approximately the same size.
    
    ## Get Started with MinIO in Erasure Code
    
    ### 1. Prerequisites
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  10. tests/binary/binaries_test.go

    		}
    
    		for _, denylist := range denylistedFlags {
    			if strings.Contains(string(out), denylist) {
    				t.Fatalf("binary contains unexpected flags: %v", string(out))
    			}
    		}
    	})
    }
    
    // Test that binary sizes do not bloat
    func TestBinarySizes(t *testing.T) {
    	cases := map[string]struct {
    		minMb int64
    		maxMb int64
    	}{
    		// TODO: shrink the ranges here once the active work to reduce binary size is complete
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top