Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,601 for Here (0.04 sec)

  1. src/runtime/cgo/gcc_util.c

    /*
    Stub for allowing libc interceptors to execute.
    
    _cgo_yield is set to NULL if we do not expect libc interceptors to exist.
    */
    static void
    x_cgo_yield()
    {
    	/*
    	The libc function(s) we call here must form a no-op and include at least one
    	call that triggers TSAN to process pending asynchronous signals.
    
    	sleep(0) would be fine, but it's not portable C (so it would need more header
    	guards).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 18:49:38 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  2. cmd/cloud-controller-manager/main.go

    	controllerAliases := names.CCMControllerAliases()
    	// Here is an example to remove the controller which is not needed.
    	// e.g. remove the cloud-node-lifecycle controller which current cloud provider does not need.
    	//delete(controllerInitializers, "cloud-node-lifecycle")
    
    	// Here is an example to add an controller(NodeIpamController) which will be used by cloud provider
    	// generate nodeIPAMConfig. Here is an sample code.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 19 13:01:01 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. src/runtime/cgo/gcc_netbsd.c

    	ts = *(ThreadStart*)v;
    	free(v);
    
    	// On NetBSD, a new thread inherits the signal stack of the
    	// creating thread. That confuses minit, so we remove that
    	// signal stack here before calling the regular mstart. It's
    	// a bit baroque to remove a signal stack here only to add one
    	// in minit, but it's a simple change that keeps NetBSD
    	// working like other OS's. At this point all signals are
    	// blocked, so there is no race.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 03:55:51 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1beta1/types_swagger_doc_generated.go

    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    // Any context after a --- is ignored.
    //
    // Those methods can be generated by using hack/update-codegen.sh
    
    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    var map_PartialObjectMetadataList = map[string]string{
    	"":         "PartialObjectMetadataList contains a list of objects containing only their metadata.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. test/escape_iface.go

    		v := &M2{&i} // ERROR "&M2{...} escapes to heap"
    		// BAD: v does not escape to heap here
    		var x M = v
    		v1 := x.(*M2)
    		sink = v1
    	}
    	{
    		i := 0       // ERROR "moved to heap: i"
    		v := &M2{&i} // ERROR "&M2{...} does not escape"
    		// BAD: v does not escape to heap here
    		var x M = v
    		v1 := x.(*M2)
    		sink = *v1
    	}
    	{
    		i := 0       // ERROR "moved to heap: i"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 17:16:35 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/02-pkgsite-removal.yml

    name: Pkg.go.dev package removal request
    description: Request a package be removed from the documentation site (pkg.go.dev)
    title: "x/pkgsite: package removal request for [type path here]"
    labels: ["pkgsite/package-removal"]
    body:
      - type: markdown
        attributes:
          value: "Please answer these questions before submitting your issue. Thanks!"
      - type: input
        id: package-path
        attributes:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. .github/stale.yml

      occurs. Thank you for your contributions.
    # Comment to post when removing the stale label.
    # unmarkComment: >
    #   Your comment here.
    
    # Comment to post when closing a stale Issue or Pull Request.
    # closeComment: >
    #   Your comment here.
    
    # Limit the number of actions per hour, from 1-30. Default is 30
    limitPerRun: 1
    
    # Limit to only `issues` or `pulls`
    # only: issues
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 24 04:36:59 UTC 2022
    - 2K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testerrors/testdata/issue18889.go

    package main
    
    import "C"
    
    func main() {
    	_ = C.malloc // ERROR HERE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 70 bytes
    - Viewed (0)
  9. src/math/cmplx/log.go

    // International, 1989) or from the Cephes Mathematical Library, a
    // commercial product. In either event, it is copyrighted by the author.
    // What you see here may be used freely but it comes with no support or
    // guarantee.
    //
    //   The two known misprints in the book are repaired here in the
    // source listings for the gamma function and the incomplete beta
    // integral.
    //
    //   Stephen L. Moshier
    //   ******@****.***
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/testdata/mergelocals/integration.go

    }
    
    func ABC(i, j int) int {
    	r := 0
    
    	// here v2 and v3 can be overlapped.
    	clobber()
    	if i < 101 {
    		var v2 Vanilla
    		v2.x[i] = j
    		r += v2.x[j]
    	}
    	if j != 303 {
    		var v3 Vanilla2
    		v3.x[i] = j
    		r += v3.x[j]
    	}
    	clobber()
    
    	// not an overlap candidate (only one var of this size).
    	var s Single
    	s.x[i] = j
    	r += s.x[j]
    
    	// Here p1 and p2 interfere, but p1 could be overlapped with xp3 + xp4.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 17:42:19 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top