Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for programs (0.15 sec)

  1. src/cmd/go/alldocs.go

    // on the pattern syntax.
    //
    // Second, if you are compiling a Go program not in a work space,
    // you can use a relative path in an import statement in that program
    // to refer to nearby code also not in a work space.
    // This makes it easy to experiment with small multipackage programs
    // outside of the usual work spaces, but such programs cannot be
    // installed with "go install" (there is no work space in which to install them),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	sval := ldr.SymValue(s)
    	if !decodetypeUsegcprog(p.ctxt.Arch, typData) {
    		// Copy pointers from mask into program.
    		mask := decodetypeGcmask(p.ctxt, typ)
    		for i := int64(0); i < nptr; i++ {
    			if (mask[i/8]>>uint(i%8))&1 != 0 {
    				p.w.Ptr(sval/ptrsize + i)
    			}
    		}
    		return
    	}
    
    	// Copy program.
    	prog := decodetypeGcprog(p.ctxt, typ)
    	p.w.ZeroUntil(sval / ptrsize)
    	p.w.Append(prog[4:], nptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. src/reflect/value.go

    func (v Value) MapIndex(key Value) Value {
    	v.mustBe(Map)
    	tt := (*mapType)(unsafe.Pointer(v.typ()))
    
    	// Do not require key to be exported, so that DeepEqual
    	// and other programs can use all the keys returned by
    	// MapKeys as arguments to MapIndex. If either the map
    	// or the key is unexported, though, the result will be
    	// considered unexported. This is consistent with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    			// With runtime/cgo, two main are available:
    			// One is generated by cgo tool with {return 0;}.
    			// The other one is the main calling runtime.rt0_go
    			// in runtime/cgo.
    			// The second can't be used by cgo programs because
    			// runtime.rt0_go is unknown to them.
    			// Therefore, we let ld remove this main version
    			// and used the cgo generated one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    At that point, the program is terminated and the error
    condition is reported, including the value of the argument to <code>panic</code>.
    This termination sequence is called <i>panicking</i>.
    </p>
    
    <pre>
    panic(42)
    panic("unreachable")
    panic(Error("cannot parse"))
    </pre>
    
    <p>
    The <code>recover</code> function allows a program to manage behavior
    of a panicking goroutine.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	}
    }
    
    func doInit1(t *initTask) {
    	switch t.state {
    	case 2: // fully initialized
    		return
    	case 1: // initialization in progress
    		throw("recursive call during initialization - linker skew")
    	default: // not initialized yet
    		t.state = 1 // initialization in progress
    
    		var (
    			start  int64
    			before tracestat
    		)
    
    		if inittrace.active {
    			start = nanotime()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    		deps = append(deps, "runtime/coverage")
    	}
    
    	return deps, nil
    }
    
    // externalLinkingReason reports the reason external linking is required
    // even for programs that do not use cgo, or the empty string if external
    // linking is not required.
    func externalLinkingReason(p *Package) (what string) {
    	// Some targets must use external linking even inside GOROOT.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

        // CHECK-SAME:        device_ordinal = 0
        // CHECK-SAME:        key = "host_compute_channel_0_retvals"
        // CHECK-SAME:        _xla_has_host_transfer = true
        // CHECK:         }, {
        // CHECK:           %[[PROGRAM1:.+]] = "tf._XlaCompileMlirPlaceholderProgramKey"
        // CHECK:           %[[RECV1:.+]] = "tf._XlaRecvAtHost"(%[[PROGRAM1]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  9. src/debug/elf/elf.go

    	Phoff     uint32          /* Program header file offset. */
    	Shoff     uint32          /* Section header file offset. */
    	Flags     uint32          /* Architecture-specific flags. */
    	Ehsize    uint16          /* Size of ELF header in bytes. */
    	Phentsize uint16          /* Size of program header entry. */
    	Phnum     uint16          /* Number of program header entries. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        cluster, creates a "tf_device.device_launch" op with a Region containing the
        ops in each cluster and replaces the ops with the new launch op.
    
        For example, given the following program:
    
        ```mlir
          %2 = "tf.A"(%arg0) : (tensor<?xi32>) -> tensor<?xi32>
          %3 = "tf.B"(%2) {device = "tpu0"} : (tensor<?xi32>) -> tensor<?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top