Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for retractions (0.19 sec)

  1. src/cmd/go/internal/load/pkg.go

    	// later arguments, and other modules would. Let's not try to be too
    	// magical though.
    	allowed := modload.CheckAllowed
    	if modload.IsRevisionQuery(firstPath, version) {
    		// Don't check for retractions if a specific revision is requested.
    		allowed = nil
    	}
    	noneSelected := func(path string) (version string) { return "none" }
    	qrs, err := modload.QueryPackages(ctx, patterns[0], version, noneSelected, allowed)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // a version on the left side is dropped.
    //
    // The -retract=version and -dropretract=version flags add and drop a
    // retraction on the given version. The version may be a single version
    // like "v1.2.3" or a closed interval like "[v1.1.0,v1.1.9]". Note that
    // -retract=version is a no-op if that retraction already exists.
    //
    // The -godebug, -dropgodebug, -require, -droprequire, -exclude, -dropexclude,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    	if opts.bucket == "" {
    		return fmt.Errorf("bucket name is empty")
    	}
    	if opts.arn == "" {
    		return fmt.Errorf("target ARN specified for resync is empty")
    	}
    	// Check if the current bucket has quota restrictions, if not skip it
    	cfg, err := getReplicationConfig(ctx, opts.bucket)
    	if err != nil {
    		return err
    	}
    	tgtArns := cfg.FilterTargetArns(
    		replication.ObjectOpts{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    // can be modified and held indefinitely. The copy can be avoided by
    // using an argument of type [*RawBytes] instead; see the documentation
    // for [RawBytes] for restrictions on its use.
    //
    // If an argument has type *interface{}, Scan copies the value
    // provided by the underlying driver without conversion. When scanning
    // from a source value of type []byte to *interface{}, a copy of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. src/reflect/value.go

    	"internal/goarch"
    	"internal/itoa"
    	"internal/unsafeheader"
    	"math"
    	"runtime"
    	"unsafe"
    )
    
    // Value is the reflection interface to a Go value.
    //
    // Not all methods apply to all kinds of values. Restrictions,
    // if any, are noted in the documentation for each method.
    // Use the Kind method to find out the kind of value before
    // calling kind-specific methods. Calling a method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    // sequence. It also encompasses several transformations which do not involve relocations, those could be
    // separated and applied to AIX and other non-ELF targets. Likewise, the prefixed forms do not have encoding
    // restrictions on the offset, so they are also used for static binary to allow better code generation. e.x
    //
    //	MOVD something-byte-aligned(Rx), Ry
    //	MOVD 3(Rx), Ry
    //
    // is allowed when the prefixed forms are used.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    // running (otherwise this may deadlock with the GC trying to preempt this P)
    // or it must leave its goroutine in a preemptible state before it switches
    // to the systemstack. Due to these restrictions, prefer forEachP when possible.
    //
    //go:systemstack
    func forEachPInternal(fn func(*p)) {
    	mp := acquirem()
    	pp := getg().m.p.ptr()
    
    	lock(&sched.lock)
    	if sched.safePointWait != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top