Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,034 for programs (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    8. <<execoperations,`ExecOperations`>> - Allows a task to run external processes with dedicated support for running external `java` programs.
    9. <<toolingmodelbuilderregistry,`ToolingModelBuilderRegistry`>> - Allows a plugin to registers a Gradle tooling API model.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/runtime/race_arm64.s

    #include "cgo/abi_arm64.h"
    
    // The following thunks allow calling the gcc-compiled race runtime directly
    // from Go code without going all the way through cgo.
    // First, it's much faster (up to 50% speedup for real Go programs).
    // Second, it eliminates race-related special cases from cgocall and scheduler.
    // Third, in long-term it will allow to remove cyclic runtime/race dependency on cmd/go.
    
    // A brief recap of the arm64 calling convention.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. pkg/api/testing/unstructured_test.go

    			{Group: "certificates.k8s.io", Version: "v1", Kind: "CertificateSigningRequestList"},
    		},
    		// If a RawExtension's bytes are invalid JSON, its containing object can't be encoded to JSON.
    		"rawextension needs to work in programs that assume json": {
    			{Version: "v1", Kind: "List"},
    			{Group: "apps", Version: "v1beta1", Kind: "ControllerRevision"},
    			{Group: "apps", Version: "v1beta1", Kind: "ControllerRevisionList"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. src/runtime/signal_unix.go

    	// In almost all real cases the program is about to crash,
    	// so sleeping here is not a waste of time.
    	usleep(1000)
    
    	// If the signal didn't cause the program to exit, restore the
    	// Go signal handler and carry on.
    	//
    	// We may receive another instance of the signal before we
    	// restore the Go handler, but that is not so bad: we know
    	// that the Go program has been ignoring the signal.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/build.go

    		will begin either a module path@version (when using modules),
    		or a plain import path (when using the standard library, or GOPATH).
    	-toolexec 'cmd args'
    		a program to use to invoke toolchain programs like vet and asm.
    		For example, instead of running asm, the go command will run
    		'cmd args /path/to/asm <arguments for asm>'.
    		The TOOLEXEC_IMPORTPATH environment variable will be set,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    			m.close()
    		}
    		m = newM
    		v, headOff, head, ok = m.lookup(name)
    	}
    	if v != nil {
    		return v, nil, nil
    	}
    
    	// Reserve space for new record.
    	// We are competing against other programs using the same file,
    	// so we use a compare-and-swap on the allocation limit in the header.
    	var start, end uint32
    	for {
    		// Determine where record should end, and grow file if needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. src/math/rand/rand.go

    // Seed, unlike the [Rand.Seed] method, is safe for concurrent use.
    //
    // If Seed is not called, the generator is seeded randomly at program startup.
    //
    // Prior to Go 1.20, the generator was seeded like Seed(1) at program startup.
    // To force the old behavior, call Seed(1) at program startup.
    // Alternately, set GODEBUG=randautoseed=0 in the environment
    // before making any calls to functions in this package.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. src/runtime/time.go

    }
    
    const timerHeapN = 4
    
    // Heap maintenance algorithms.
    // These algorithms check for slice index errors manually.
    // Slice index error can happen if the program is using racy
    // access to timers. We don't want to panic here, because
    // it will cause the program to crash with a mysterious
    // "panic holding locks" message. Instead, we panic while not
    // holding a lock.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. src/runtime/race_ppc64le.s

    #include "cgo/abi_ppc64x.h"
    
    // The following functions allow calling the clang-compiled race runtime directly
    // from Go code without going all the way through cgo.
    // First, it's much faster (up to 50% speedup for real Go programs).
    // Second, it eliminates race-related special cases from cgocall and scheduler.
    // Third, in long-term it will allow to remove cyclic runtime/race dependency on cmd/go.
    
    // A brief recap of the ppc64le calling convention.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top