Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for epstest (0.13 sec)

  1. src/cmd/compile/internal/types2/predicates.go

    		// yresults.
    		yparams := y.params
    		yresults := y.results
    
    		if x.TypeParams().Len() > 0 {
    			// We must ignore type parameter names when comparing x and y. The
    			// easiest way to do this is to substitute x's type parameters for y's.
    			xtparams := x.TypeParams().list()
    			ytparams := y.TypeParams().list()
    
    			var targs []Type
    			for i := range xtparams {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/deployment.go

    	if err := os.WriteFile(path.Join(dir, "workloadgroup.yaml"), []byte(wg), 0o600); err != nil {
    		return err
    	}
    
    	ist, err := istio.Get(ctx)
    	if err != nil {
    		return err
    	}
    	// this will wait until the eastwest gateway has an IP before running the next command
    	istiodAddr, err := ist.RemoteDiscoveryAddressFor(cfg.Cluster)
    	if err != nil {
    		return err
    	}
    
    	var subsetDir string
    	for _, subset := range cfg.Subsets {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. src/runtime/chan.go

     * then the protocol will not
     * sleep but return if it could
     * not complete.
     *
     * sleep can wake up with g.param == nil
     * when a channel involved in the sleep has
     * been closed.  it is easiest to loop and re-run
     * the operation; we'll see that it's now closed.
     */
    func chansend(c *hchan, ep unsafe.Pointer, block bool, callerpc uintptr) bool {
    	if c == nil {
    		if !block {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof.go

    	// (objects and bytes, not distinguishing alloc from inuse),
    	// but then such a profile can't be merged using pprof *.prof with
    	// other 4-column profiles where alloc != inuse.
    	// The easiest way to avoid this bug is to adjust allocBytes so it's never == inuseBytes.
    	// pprof doesn't use these header values anymore except for checking equality.
    	inUseBytes := total.InUseBytes()
    	allocBytes := total.AllocBytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/asm.go

    	case obj.TYPE_CONST, obj.TYPE_FCONST, obj.TYPE_SCONST, obj.TYPE_ADDR:
    		// OK
    	default:
    		p.errorf("DATA value must be an immediate constant or address")
    		return
    	}
    
    	// The addresses must not overlap. Easiest test: require monotonicity.
    	if lastAddr, ok := p.dataAddr[name]; ok && nameAddr.Offset < lastAddr {
    		p.errorf("overlapping DATA entry for %s", name)
    		return
    	}
    	p.dataAddr[name] = nameAddr.Offset + int64(sz)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. src/crypto/internal/bigmod/nat.go

    	// the Montgomery domain, meaning we can use Montgomery multiplication now).
    	// We could do that by doubling _W * n times, or with a square-and-double
    	// chain log2(_W * n) long. Turns out the fastest thing is to start out with
    	// doublings, and switch to square-and-double once the exponent is large
    	// enough to justify the cost of the multiplications.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. src/runtime/asm_ppc64x.s

    // module containing runtime) to the frame that goexit will execute in when
    // the goroutine exits. It's implemented in assembly mainly because that's the
    // easiest way to get access to R2.
    TEXT runtime·prepGoExitFrame(SB),NOSPLIT,$0-8
    	MOVD    sp+0(FP), R3
    	MOVD    R2, 24(R3)
    	RET
    
    TEXT runtime·addmoduledata(SB),NOSPLIT|NOFRAME,$0-0
    	ADD	$-8, R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  8. src/go/build/build.go

    		if info.parsed != nil {
    			pkg = info.parsed.Name.Name
    			if pkg == "documentation" {
    				p.IgnoredGoFiles = append(p.IgnoredGoFiles, name)
    				continue
    			}
    		}
    
    		isTest := strings.HasSuffix(name, "_test.go")
    		isXTest := false
    		if isTest && strings.HasSuffix(pkg, "_test") && p.Name != pkg {
    			isXTest = true
    			pkg = pkg[:len(pkg)-len("_test")]
    		}
    
    		if p.Name == "" {
    			p.Name = pkg
    			firstFile = name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. pkg/api/pod/util_test.go

    	case reflect.Struct:
    		// ObjectMeta is generic and therefore should never have a field with a specific resource's name;
    		// it contains cycles so it's easiest to just skip it.
    		if name == "ObjectMeta" {
    			break
    		}
    		for i := 0; i < tp.NumField(); i++ {
    			field := tp.Field(i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      if (one_by_one && trivial_strides && trivial_dilations) {
        return "NHWC";
      }
    
      // If filter spatial dimensions are unknown or not 1x1 we prefer NCHW, because
      // it's the fastest option on NVIDIA GPUs with cuDNN library support.
      return "NCHW";
    }
    
    //===----------------------------------------------------------------------===//
    // Conv2dBackpropFilterOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top