Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 737 for pieces (0.27 sec)

  1. src/runtime/trace.go

    	// The critical section on each goroutine here is going to be quite short, so the likelihood
    	// that we observe a zero value is high.
    	for trace.exitingSyscall.Load() != 0 {
    		osyield()
    	}
    
    	// Record some initial pieces of information.
    	//
    	// N.B. This will also emit a status event for this goroutine.
    	tl := traceAcquire()
    	tl.Gomaxprocs(gomaxprocs)  // Get this as early in the trace as possible. See comment in traceAdvance.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. LICENSE

    have the freedom to distribute copies of free software (and charge for
    them if you wish), that you receive source code or can get it if you
    want it, that you can change the software or use pieces of it in new
    free programs, and that you know you can do these things.
    
      Developers that use our General Public Licenses protect your rights
    with two steps: (1) assert copyright on the software, and (2) offer
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  3. src/text/template/exec.go

    }
    
    // Sentinel errors for use with panic to signal early exits from range loops.
    var (
    	walkBreak    = errors.New("break")
    	walkContinue = errors.New("continue")
    )
    
    // Walk functions step through the major pieces of the template structure,
    // generating output as they go.
    func (s *state) walk(dot reflect.Value, node parse.Node) {
    	s.at(node)
    	switch node := node.(type) {
    	case *parse.ActionNode:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    If you'd like to dive into the detail, check out the <<core_dependency_management.adoc#dependency_management_in_gradle,introduction to dependency management>>.
    
    Specifying the dependencies for your Java project requires just three pieces of information:
    
     * Which dependency you need, such as a name and version
     * What it's needed for, e.g. compilation or running
     * Where to look for it
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    // by objdump. We don't believe that logic is the right thing to do
    // in general, but when testing against libopcodes it simplifies the
    // comparison if we adjust a few small pieces of logic.
    // The affected logic is in the conditional branch for "mandatory" prefixes,
    // case xCondPrefix.
    func decode1(src []byte, mode int, gnuCompat bool) (Inst, error) {
    	switch mode {
    	case 16, 32, 64:
    		// ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    If a selection of Gradle plugins can do the vast majority of the work your Ant build does, then it probably makes sense to create a fresh Gradle build script that doesn't depend on the Ant build.
    You can either implement the missing pieces yourself or <<ant#sec:using_ant_tasks,use existing Ant tasks>>.
    +
    The alternative approach is to <<ant#sec:import_ant_build,import the Ant build>> into the Gradle build script and gradually replace the Ant build functionality.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. src/runtime/time.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Time-related runtime and pieces of package time.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // A timer is a potentially repeating trigger for calling t.f(t.arg, t.seq).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    freedom to distribute copies of free software (and charge for this
    service if you wish), that you receive source code or can get it if you
    want it, that you can change the software or use pieces of it in new
    free programs; and that you know you can do these things.
    
    To protect your rights, we need to make restrictions that forbid anyone
    to deny you these rights or to ask you to surrender the rights. These
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/helpers_test.go

    // complicated and context sensitive. (E.g., "ip daddr" could be the start of an address
    // comparison, or it could be the start of a set/map lookup.) Instead, we just have
    // regexps to recognize the specific pieces of rules that we create in proxier.go.
    // Anything matching ignoredRegexp gets stripped out of the rule, and then what's left
    // *must* match one of the cases in runChain or an error will be logged. In cases where
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    In order to operate, the `Test` task type requires just two pieces of information:
    
     * Where to find the compiled test classes (property: link:{groovyDslPath}/org.gradle.api.tasks.testing.Test.html#org.gradle.api.tasks.testing.Test:testClassesDirs[Test.getTestClassesDirs()])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
Back to top