Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 78 for BarTest (0.36 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		// TODO: If vector registers are managed by regalloc
    		// mark these as clobbered.
    		//
    		// Bytes not moved by this loop are moved
    		// with a combination of the following instructions,
    		// starting with the largest sizes and generating as
    		// many as needed, using the appropriate offset value.
    		//	MOVD  n(R4),R14
    		//	MOVD  R14,n(R3)
    		//	MOVW  n1(R4),R14
    		//	MOVW  R14,n1(R3)
    		//	MOVH  n2(R4),R14
    		//	MOVH  R14,n2(R3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  2. src/internal/trace/internal/oldtrace/parser.go

    	// up with the correct number, but it doesn't matter, because EvBatch has
    	// custom logic for parsing.
    	//
    	// Note that because we're adding 1, inlineArgs == 3 describes the largest
    	// number of logical arguments that isn't length-prefixed, even though the
    	// value 3 on the wire indicates length-prefixing. For us, that becomes narg
    	// == 4.
    	narg := b>>6 + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  3. src/time/format.go

    		}
    		v *= unit
    		if f > 0 {
    			// float64 is needed to be nanosecond accurate for fractions of hours.
    			// v >= 0 && (f*unit/scale) <= 3.6e+12 (ns/h, h is the largest unit)
    			v += uint64(float64(f) * (float64(unit) / scale))
    			if v > 1<<63 {
    				// overflow
    				return 0, errors.New("time: invalid duration " + quote(orig))
    			}
    		}
    		d += v
    		if d > 1<<63 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    	// frames at some point after collecting the stack. So
    	// we need extra space in order to avoid getting fewer than the
    	// desired maximum number of frames after expansion.
    	// This should be at least as large as the largest skip value
    	// used for profiling; otherwise stacks may be truncated inconsistently
    	maxSkip = 5
    
    	// maxProfStackDepth is the highest valid value for debug.profstackdepth.
    	// It's used for the bucket.stk func.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/gateway-api-crd.yaml

    
                            * "Exact" path match.
                            * "Prefix" path match with largest number of characters.
                            * Method match.
                            * Largest number of header matches.
                            * Largest number of query param matches.
    
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	// or use the GODEBUG=tlskyber=0 environment variable.
    	CurvePreferences []CurveID
    
    	// DynamicRecordSizingDisabled disables adaptive sizing of TLS records.
    	// When true, the largest possible TLS record size is always used. When
    	// false, the size of TLS records may be adjusted in an attempt to
    	// improve latency.
    	DynamicRecordSizingDisabled bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    def TF_TopKV2Op : TF_Op<"TopKV2", [Pure]> {
      let summary = [{
    Finds values and indices of the `k` largest elements for the last dimension.
      }];
    
      let description = [{
    If the input is a vector (rank-1), finds the `k` largest entries in the vector
    and outputs their values and indices as vectors.  Thus `values[j]` is the
    `j`-th largest entry in `input`, and its index is `indices[j]`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOVBreg y:(ANDconst [c] _)) && uint64(c) <= 0x7F => y
    (MOVHreg y:(ANDconst [c] _)) && uint64(c) <= 0x7FFF => y
    (MOVWreg y:(ANDconst [c] _)) && uint64(c) <= 0xFFFF => y // 0xFFFF is largest immediate constant, when regarded as 32-bit is > 0
    (MOVWreg y:(AND (MOVDconst [c]) _)) && uint64(c) <= 0x7FFFFFFF => y
    
    // small and of zero-extend => either zero-extend or small and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			}
    			if len(crdCost.MostExpensive) != len(tt.expectedExpensive) {
    				t.Fatalf("expected %d largest costs but got %d: %v", len(tt.expectedExpensive), len(crdCost.MostExpensive), crdCost.MostExpensive)
    			}
    			for i, expensive := range crdCost.MostExpensive {
    				if tt.expectedExpensive[i] != expensive.Cost {
    					t.Errorf("expected largest cost of %d at index %d but got %d", tt.expectedExpensive[i], i, expensive.Cost)
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    	return call.ctx.Err() != nil
    }
    
    // Buffer chunks are allocated from a pool to reduce pressure on GC.
    // The maximum wasted space per dataBuffer is 2x the largest size class,
    // which happens when the dataBuffer has multiple chunks and there is
    // one unread byte in both the first and last chunks. We use a few size
    // classes to minimize overheads for servers that typically receive very
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top