Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 66 of 66 for Usages (0.12 sec)

  1. src/runtime/mprof.go

    	return goroutineProfileWithLabels(p, nil)
    }
    
    func saveg(pc, sp uintptr, gp *g, r *profilerecord.StackRecord, pcbuf []uintptr) {
    	// To reduce memory usage, we want to allocate a r.Stack that is just big
    	// enough to hold gp's stack trace. Naively we might achieve this by
    	// recording our stack trace into mp.profStack, and then allocating a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. src/os/os_test.go

    	if err != nil {
    		if IsNotExist(err) {
    			// The user's home directory has a well-defined location, but does not
    			// exist. (Maybe nothing has written to it yet? That could happen, for
    			// example, on minimal VM images used for CI testing.)
    			t.Log(err)
    			return
    		}
    		t.Fatal(err)
    	}
    	if !fi.IsDir() {
    		t.Fatalf("dir %s is not directory; type = %v", dir, fi.Mode())
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    // become regular linker symbols and symbols go on the Sub list of
    // their section) and for constructing the global offset table when
    // internally linking a dynamic executable.
    //
    // Note that in later stages of the linker, we set Outer(S) to some
    // container symbol C, but don't set Sub(C). Thus we have two
    // distinct scenarios:
    //
    // - Outer symbol covers the address ranges of its sub-symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    `tf.entry_function` attribute will not be pruned, as such graphs/functions may
    have been imported from a V1 TensorFlow graph, where feeds/fetches/targets are
    not provided at certain stages of IR transformation (e.g. pre-placement).
    
    Option `ops-to-preserve` allows to specify ops that should not be pruned,
    regardless of their reachability.
    
    For example, the following:
    
    ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    		reason = fmt.Sprintf("bad module path inferred from directory in GOPATH: %v", badPathErr)
    	}
    	msg := `cannot determine module path for source directory %s (%s)
    
    Example usage:
    	'go mod init example.com/m' to initialize a v0 or v1 module
    	'go mod init example.com/m/v2' to initialize a v2 module
    
    Run 'go help mod init' for more information.
    `
    	return "", fmt.Errorf(msg, dir, reason)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    		f.Edit.Insert(f.offset(f.AST.Name.End()), "; import _cgo_unsafe \"unsafe\"")
    	}
    	p.rewriteRef(f)
    }
    
    // loadDefines coerces gcc into spitting out the #defines in use
    // in the file f and saves relevant renamings in f.Name[name].Define.
    func (p *Package) loadDefines(f *File) {
    	var b bytes.Buffer
    	b.WriteString(builtinProlog)
    	b.WriteString(f.Preamble)
    	stdout := p.gccDefines(b.Bytes())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top