Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 162 for below (0.07 sec)

  1. src/math/all_test.go

    // below reduceThreshold.
    func TestTrigReduce(t *testing.T) {
    	inputs := make([]float64, len(vf))
    	// all of the standard inputs
    	copy(inputs, vf)
    	// all of the large inputs
    	large := float64(100000 * Pi)
    	for _, v := range vf {
    		inputs = append(inputs, v+large)
    	}
    	// Also test some special inputs, Pi and right below the reduceThreshold
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    // an mSpanState. This is a separate type to disallow accidental comparison
    // or assignment with mSpanState.
    type mSpanStateBox struct {
    	s atomic.Uint8
    }
    
    // It is nosplit to match get, below.
    
    //go:nosplit
    func (b *mSpanStateBox) set(s mSpanState) {
    	b.s.Store(uint8(s))
    }
    
    // It is nosplit because it's called indirectly by typedmemclr,
    // which must not be preempted.
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/BUILD

    )
    
    cc_library(
        name = "common",
        srcs = [
            "defs.cc",
        ],
        hdrs = [
            "defs.h",
        ],
        visibility = [":friends"],
    )
    
    # Internal targets below this point.
    
    cc_library(
        name = "variable_info",
        srcs = ["variable_info.cc"],
        hdrs = ["variable_info.h"],
        visibility = [
            ":internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    == For all users
    
     . If you are not already on the latest 4.10.x release, read the sections <<#changes_4.10,below>> for help upgrading your project to the latest 4.10.x release.
    We recommend upgrading to the latest 4.10.x release to get the most useful warnings and deprecations information before moving to 5.0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. tensorflow/BUILD

        ],
    )
    
    config_setting(
        name = "freebsd",
        values = {"cpu": "freebsd"},
        visibility = ["//visibility:public"],
    )
    
    # Features that are default ON are handled differently below.
    #
    config_setting(
        name = "no_gcp_support",
        define_values = {"no_gcp_support": "true"},
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "no_nccl_support",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  6. src/go/printer/nodes.go

    //	2             &&
    //	1             ||
    //
    // The only decision is whether there will be spaces around levels 4 and 5.
    // There are never spaces at level 6 (unary), and always spaces at levels 3 and below.
    //
    // To choose the cutoff, look at the whole expression but excluding primary
    // expressions (function calls, parenthesized exprs), and apply these rules:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  7. src/cmd/internal/testdir/testdir_test.go

    	}
    	for _, name := range names {
    		cmd = append(cmd, filepath.Join(dir, name))
    	}
    	return runcmd(cmd...)
    }
    
    var stdlibImportcfgStringOnce sync.Once // TODO(#56102): Use sync.OnceValue once available. Also below.
    var stdlibImportcfgString string
    
    func stdlibImportcfg() string {
    	stdlibImportcfgStringOnce.Do(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ppc64/asm.go

    		} else if target.IsPIE() && target.IsInternal() {
    			// For internal linking PIE, this R_ADDR relocation cannot
    			// be resolved statically. We need to generate a dynamic
    			// relocation. Let the code below handle it.
    			break
    		}
    		return true
    
    	case objabi.ElfRelocOffset + objabi.RelocType(elf.R_PPC64_TOC16):
    		su := ldr.MakeSymbolUpdater(s)
    		su.SetRelocType(rIdx, objabi.R_POWER_TOC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    // multiple times to the linker, e.g. "... -lmingwex -lmingw32 ...
    // -lmingwex -lmingw32 ...". To accommodate this behavior, we make two
    // passes over the host archives below.
    func loadWindowsHostArchives(ctxt *Link) {
    	any := true
    	for i := 0; any && i < 2; i++ {
    		// Link crt2.o (if present) to resolve "atexit" when
    		// using LLVM-based compilers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ppc64/ssa.go

    		s.Prog(v.Op.Asm())
    
    	case ssa.OpPPC64LoweredGetClosurePtr:
    		// Closure pointer is R11 (already)
    		ssagen.CheckLoweredGetClosurePtr(v)
    
    	case ssa.OpPPC64LoweredGetCallerSP:
    		// caller's SP is FixedFrameSize below the address of the first arg
    		p := s.Prog(ppc64.AMOVD)
    		p.From.Type = obj.TYPE_ADDR
    		p.From.Offset = -base.Ctxt.Arch.FixedFrameSize
    		p.From.Name = obj.NAME_PARAM
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = v.Reg()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top