Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 270 for Sizes (0.13 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

            break
          }
        }
      }
      return result.toTypedArray()
    }
    
    /**
     * Returns true if there is an element in this array that is also in [other]. This method terminates
     * if any intersection is found. The sizes of both arguments are assumed to be so small, and the
     * likelihood of an intersection so great, that it is not worth the CPU cost of sorting or the
     * memory cost of hashing.
     */
    internal fun Array<String>.hasIntersection(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/debug/dwarf/type.go

    	}
    	for _, t := range tf.arraytypes {
    		zeroArray(t)
    	}
    }
    
    // readType reads a type from r at off of name. It adds types to the
    // type cache, appends new typedef types to typedefs, and computes the
    // sizes of types. Callers should pass nil for typedefs; this is used
    // for internal recursion.
    func (d *Data) readType(name string, r typeReader, off Offset, typeCache map[Offset]Type, fixups *typeFixer) (Type, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  3. src/runtime/memmove_test.go

    							t.Fatalf("got partially updated pointer %p at dst[%d], want either nil or %p", p, i, &x)
    						}
    					}
    				}
    			})
    		}
    	}
    }
    
    func benchmarkSizes(b *testing.B, sizes []int, fn func(b *testing.B, n int)) {
    	for _, n := range sizes {
    		b.Run(fmt.Sprint(n), func(b *testing.B) {
    			b.SetBytes(int64(n))
    			fn(b, n)
    		})
    	}
    }
    
    var bufSizes = []int{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:12 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. src/crypto/internal/boring/aes.go

    	cipher.Block
    }
    
    func (c *aesCipher) NewGCM(nonceSize, tagSize int) (cipher.AEAD, error) {
    	if nonceSize != gcmStandardNonceSize && tagSize != gcmTagSize {
    		return nil, errors.New("crypto/aes: GCM tag and nonce sizes can't be non-standard at the same time")
    	}
    	// Fall back to standard library for GCM with non-standard nonce or tag size.
    	if nonceSize != gcmStandardNonceSize {
    		return cipher.NewGCMWithNonceSize(&noGCM{c}, nonceSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

    // `tf.VarHandleOp`s. Also, an initialization pattern
    // `tf.AssignVariableOp(tf.VarHandleOp, tf.ConstOp)` is inserted to the
    // initializer function of type "restore_op" for each of the unfrozen constants.
    //
    // The constants whose sizes are smaller than `size_threshold_in_bytes_` will
    // not be converted to variables.
    class UnfreezeConstantsPass
        : public PassWrapper<UnfreezeConstantsPass, OperationPass<ModuleOp>> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  6. src/internal/trace/internal/testgen/go122/trace.go

    		panic(err.Error())
    	}
    }
    
    // Trace represents an execution trace for testing.
    //
    // It does a little bit of work to ensure that the produced trace is valid,
    // just for convenience. It mainly tracks batches and batch sizes (so they're
    // trivially correct), tracks strings and stacks, and makes sure emitted string
    // and stack batches are valid. That last part can be controlled by a few options.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: return %[[RESULT]] : tensor<2xi32>
      %starts = "tf.Const"() {value = dense<[1]> : tensor<1xi64>} : () -> (tensor<1xi64>)
      %sizes = "tf.Const"() {value = dense<[2]> : tensor<1xi64>} : () -> (tensor<1xi64>)
      %0 = "tf.Slice"(%arg0, %starts, %sizes) : (tensor<4xi32>, tensor<1xi64>, tensor<1xi64>) -> tensor<2xi32>
      func.return %0 : tensor<2xi32>
    }
    
    // -----
    
    // CHECK-LABEL: slice_i32_consts
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  8. src/archive/tar/format.go

    	FormatPAX
    
    	// FormatGNU represents the GNU header format.
    	//
    	// The GNU header format is older than the USTAR and PAX standards and
    	// is not compatible with them. The GNU format supports
    	// arbitrary file sizes, filenames of arbitrary encoding and length,
    	// sparse files, and other features.
    	//
    	// It is recommended that PAX be chosen over GNU unless the target
    	// application can only parse GNU formatted archives.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. src/runtime/map_test.go

    	}
    }
    
    func TestMapIterOrder(t *testing.T) {
    	sizes := []int{3, 7, 9, 15}
    	if abi.MapBucketCountBits >= 5 {
    		// it gets flaky (often only one iteration order) at size 3 when abi.MapBucketCountBits >=5.
    		t.Fatalf("This test becomes flaky if abi.MapBucketCountBits(=%d) is 5 or larger", abi.MapBucketCountBits)
    	}
    	for _, n := range sizes {
    		for i := 0; i < 1000; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  10. internal/ioutil/ioutil.go

    package ioutil
    
    import (
    	"context"
    	"errors"
    	"io"
    	"os"
    	"runtime/debug"
    	"sync"
    	"time"
    
    	"github.com/dustin/go-humanize"
    	"github.com/minio/minio/internal/disk"
    )
    
    // Block sizes constant.
    const (
    	SmallBlock = 32 * humanize.KiByte // Default r/w block size for smaller objects.
    	LargeBlock = 1 * humanize.MiByte  // Default r/w block size for normal objects.
    )
    
    // aligned sync.Pool's
    var (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top