Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 158 for Sizes (0.06 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    	exactSize := func(size int) checker.SizeEstimate {
    		return checker.SizeEstimate{Min: uint64(size), Max: uint64(size)}
    	}
    	exactSizes := func(sizes ...int) []checker.SizeEstimate {
    		results := make([]checker.SizeEstimate, len(sizes))
    		for i, size := range sizes {
    			results[i] = exactSize(size)
    		}
    		return results
    	}
    	cases := []struct {
    		name       string
    		function   string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  2. src/crypto/aes/asm_ppc64x.s

    	VCIPHER		V0, V1, V1
    	VCIPHERLAST	V1, V2, V2
    
    	// Store the result in BE order.
    	P8_STXVB16X(V2, R3, R0)
    	RET
    
    Linvalid_key_len:
    	// Segfault, this should never happen. Only 3 keys sizes are created/used.
    	MOVD	R0, 0(R0)
    	RET
    
    // func decryptBlockAsm(nr int, xk *uint32, dst, src *byte)
    TEXT ·decryptBlockAsm(SB), NOSPLIT|NOFRAME, $0
    	MOVD	nr+0(FP), R6   // Round count/Key size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. src/crypto/cipher/gcm.go

    	return newGCMWithNonceAndTagSize(cipher, size, gcmTagSize)
    }
    
    // NewGCMWithTagSize returns the given 128-bit, block cipher wrapped in Galois
    // Counter Mode, which generates tags with the given length.
    //
    // Tag sizes between 12 and 16 bytes are allowed.
    //
    // Only use this function if you require compatibility with an existing
    // cryptosystem that uses non-standard tag lengths. All other users should use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Converts tensor list operations into operations on buffers and sizes. Needs
    // static shapes and known max element count.
    std::unique_ptr<OperationPass<ModuleOp>> CreateTensorListOpsDecompositionPass();
    
    // Converts tensor array ops into operations on local variables, which can later
    // be removed by resource lifting. Requires known sizes and known element shapes
    // (either defined in TensorArrayV3 or implied in the first write).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/BUILD

        visibility = ["//visibility:public"],
        deps = [
            # The purpose of the benchmark library is to support building an aot
            # binary with minimal dependencies, to demonstrate small binary sizes.
            #
            # KEEP THE DEPENDENCIES MINIMAL.
            "//tensorflow/core:framework_lite",
        ],
    )
    
    cc_library(
        name = "benchmark_extra_android",
        tags = [
            "manual",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/list.md

    | `minio_bucket_objects_size_distribution`    | Distribution of object sizes in the bucket, includes label for the bucket name. |
    | `minio_bucket_objects_version_distribution` | Distribution of object sizes in a bucket, by number of versions                 |
    
    ## Replication Metrics
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    		}
    		cumValue = b.config.FormatValue(cum)
    		label = label + fmt.Sprintf(`of %s (%s)`,
    			cumValue,
    			strings.TrimSpace(measurement.Percentage(cum, b.config.Total)))
    	}
    
    	// Scale font sizes from 8 to 24 based on percentage of flat frequency.
    	// Use non linear growth to emphasize the size difference.
    	baseFontSize, maxFontGrowth := 8, 16.0
    	fontSize := baseFontSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    				// segment other than the last one includes uninitialized data, or
    				// if the debug binary used for symbolization is stripped of some
    				// sections, so segment file sizes are smaller than memory sizes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. api/go1.5.txt

    pkg go/types, type Selection struct
    pkg go/types, type SelectionKind int
    pkg go/types, type Signature struct
    pkg go/types, type Sizes interface { Alignof, Offsetsof, Sizeof }
    pkg go/types, type Sizes interface, Alignof(Type) int64
    pkg go/types, type Sizes interface, Offsetsof([]*Var) []int64
    pkg go/types, type Sizes interface, Sizeof(Type) int64
    pkg go/types, type Slice struct
    pkg go/types, type StdSizes struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  10. src/encoding/base64/base64_test.go

    	}
    }
    
    func BenchmarkDecodeString(b *testing.B) {
    	sizes := []int{2, 4, 8, 64, 8192}
    	benchFunc := func(b *testing.B, benchSize int) {
    		data := StdEncoding.EncodeToString(make([]byte, benchSize))
    		b.SetBytes(int64(len(data)))
    		b.ResetTimer()
    		for i := 0; i < b.N; i++ {
    			StdEncoding.DecodeString(data)
    		}
    	}
    	for _, size := range sizes {
    		b.Run(fmt.Sprintf("%d", size), func(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
Back to top