Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for welcome (0.9 sec)

  1. src/cmd/trace/pprof.go

    		return true
    	})
    }
    
    // computePprofSched returns a computePprofFunc that generates a scheduler latency pprof-like profile
    // (time between a goroutine become runnable and actually scheduled for execution).
    func computePprofSched() computePprofFunc {
    	return makeComputePprofFunc(trace.GoRunnable, func(_ string) bool {
    		return true
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    // symbols expanded automatically. For example, if a file *stdlib/minor/bytes/f.md
    // contains the text
    //
    //	[Reader] implements [io.Reader].
    //
    // then that will become
    //
    //	[Reader](/pkg/bytes#Reader) implements [io.Reader](/pkg/io#Reader).
    func Merge(fsys fs.FS) (*md.Document, error) {
    	filenames, err := sortedMarkdownFilenames(fsys)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/edit.go

    	// They join back together at the roots of the graph: if a root r1 with pruned
    	// requirements depends on a root r2 with unpruned requirements, then
    	// selecting r1 would cause r2 to become a root and pull in all of its
    	// unpruned dependencies.
    	//
    	// The dqTracker type implements the logic for propagating conflict paths
    	// through the pruned and unpruned parts of the module graph.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/abi.go

    		// 	func importedAdd(a, b uint) uint
    		//
    		// will roughly become
    		//
    		// 	(import "gojs" "add" (func (param i32)))
    		wi.Params = []obj.WasmField{{Type: obj.WasmI32}}
    	} else {
    		// All other imported functions use the normal WASM ABI.
    		// Example:
    		//
    		// 	//go:wasmimport a_module add
    		// 	func importedAdd(a, b uint) uint
    		//
    		// will roughly become
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. src/cmd/link/link_test.go

    smallest flower and leaf there was already a freshness poured from all this seeming rage, which seemed to make creation new again."`
    
    	jarndyce int `text:"Jarndyce and Jarndyce drones on. This scarecrow of a suit has, over the course of time, become so complicated, that no man alive knows what it means. The parties to it understand it least; but it has been observed that no two Chancery lawyers can talk about it for five minutes, without coming to a total disagreement as to all the premises....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/macho.go

    		sb = ctxt.loader.MakeSymbolUpdater(s)
    		sb.SetType(sym.SMACHOINDIRECTGOT)
    		sb.SetReachable(true)
    	}
    
    	// Add a dummy symbol that will become the __asm marker section.
    	if ctxt.IsExternal() {
    		s = ctxt.loader.LookupOrCreateSym(".llvmasm", 0)
    		sb = ctxt.loader.MakeSymbolUpdater(s)
    		sb.SetType(sym.SMACHO)
    		sb.SetReachable(true)
    		sb.AddUint8(0)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/obj9.go

    		}
    	}
    
    	c.cursym.Func().Args = p.To.Val.(int32)
    	c.cursym.Func().Locals = int32(textstksiz)
    
    	/*
    	 * find leaf subroutines
    	 * expand RET
    	 * expand BECOME pseudo
    	 */
    
    	var q *obj.Prog
    	var q1 *obj.Prog
    	for p := c.cursym.Func().Text; p != nil; p = p.Link {
    		switch p.As {
    		/* too hard, just leave alone */
    		case obj.ATEXT:
    			q = p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/assign.go

    //	    panicmakeslicelen()
    //	  }
    //	  s := l1
    //	  if l2 != 0 {
    //	    n := len(s) + l2
    //	    // Compare n and s as uint so growslice can panic on overflow of len(s) + l2.
    //	    // cap is a positive int and n can become negative when len(s) + l2
    //	    // overflows int. Interpreting n when negative as uint makes it larger
    //	    // than cap(s). growslice will check the int n arg and panic if n is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Const64", aux: "Int64"}, // value is auxint
    	// Note: for both Const32F and Const64F, we disallow encoding NaNs.
    	// Signaling NaNs are tricky because if you do anything with them, they become quiet.
    	// Particularly, converting a 32 bit sNaN to 64 bit and back converts it to a qNaN.
    	// See issue 36399 and 36400.
    	// Encodings of +inf, -inf, and -0 are fine.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/start.go

    	// to enable data collection, for example by running
    	// cmd/gotelemetry or affirming the gopls dialog.
    	//
    	// (This feature is expected to be used only by gopls.
    	// Longer term, the go command may become the sole program
    	// responsible for uploading.)
    	Upload bool
    
    	// TelemetryDir, if set, will specify an alternate telemetry
    	// directory to write data to. If not set, it uses the default
    	// directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top