Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for sean (0.06 sec)

  1. src/cmd/go/internal/modload/init.go

    		return nil, nil, err
    	}
    	seen := map[string]bool{}
    	for _, d := range wf.Use {
    		modRoot := d.Path
    		if !filepath.IsAbs(modRoot) {
    			modRoot = filepath.Join(workDir, modRoot)
    		}
    
    		if seen[modRoot] {
    			return nil, nil, fmt.Errorf("error loading go.work:\n%s:%d: path %s appears multiple times in workspace", base.ShortPath(path), d.Syntax.Start.Line, modRoot)
    		}
    		seen[modRoot] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    	}
    	return tp
    }
    
    // objBase returns the base pointer for the object containing addr in span.
    //
    // Assumes that addr points into a valid part of span (span.base() <= addr < span.limit).
    //
    //go:nosplit
    func (span *mspan) objBase(addr uintptr) uintptr {
    	return span.base() + span.objIndex(addr)*span.elemsize
    }
    
    // bulkBarrierPreWrite executes a write barrier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    	if span.list != list {
    		print("runtime: failed mSpanList.remove span.npages=", span.npages,
    			" span=", span, " prev=", span.prev, " span.list=", span.list, " list=", list, "\n")
    		throw("mSpanList.remove")
    	}
    	if list.first == span {
    		list.first = span.next
    	} else {
    		span.prev.next = span.next
    	}
    	if list.last == span {
    		list.last = span.prev
    	} else {
    		span.next.prev = span.prev
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    		// Validate the named M.
    		if mid == curCtx.M {
    			if gen != o.initialGen && curCtx.G != gid {
    				// If this isn't the first generation, we *must* have seen this
    				// binding occur already. Even if the G was blocked in a syscall
    				// for multiple generations since trace start, we would have seen
    				// a previous GoStatus event that bound the goroutine to an M.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    	// contain defers (d3 in this case) for dead frames. The inversion here
    	// always indicates a dead frame, and the effect of the inversion on the
    	// scan is to hide those dead frames, so the scan is still okay:
    	// what's left on the panic stack are exactly (and only) the dead frames.
    	//
    	// We require callback != nil here because only when callback != nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        /**
         * <p>Sets the build directory of this project. The build directory is the directory which all artifacts are
         * generated into. The path parameter is evaluated as described for {@link #file(Object)}. This mean you can use,
         * amongst other things, a relative or absolute path or File object to specify the build directory.</p>
         *
         * @param path The build directory. This is evaluated as per {@link #file(Object)}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/buildlist.go

    				m := module.Version{Path: p, Version: mg.g.Selected(p)}
    				if !seen[m] {
    					needsEnqueueing[m] = true
    					continue
    				}
    				reqs, _ := mg.g.RequiredBy(m)
    				for _, r := range reqs {
    					s := module.Version{Path: r.Path, Version: mg.g.Selected(r.Path)}
    					if gover.ModCompare(r.Path, s.Version, r.Version) > 0 && !seen[s] {
    						needsEnqueueing[s] = true
    					}
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/net/http/request.go

    			snapshot := *v
    			req.GetBody = func() (io.ReadCloser, error) {
    				r := snapshot
    				return io.NopCloser(&r), nil
    			}
    		default:
    			// This is where we'd set it to -1 (at least
    			// if body != NoBody) to mean unknown, but
    			// that broke people during the Go 1.8 testing
    			// period. People depend on it being 0 I
    			// guess. Maybe retry later. See Issue 18117.
    		}
    		// For client requests, Request.ContentLength of 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    //     cannot be promoted due to -mod=readonly or -mod=vendor, the importing
    //     package is marked with an error.
    //
    //   - If ld scanned the "all" pattern independent of build constraints, it is
    //     guaranteed to have seen every direct import. Module dependencies that did
    //     not provide any directly-imported package are then marked as indirect.
    //
    //   - Root dependencies are updated to their selected versions.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. src/net/http/httputil/reverseproxy_test.go

    		t.Errorf("response X-Modified header = %q; want %q", got, want)
    	}
    
    	io.WriteString(rwc, "Hello\n")
    	bs := bufio.NewScanner(rwc)
    	if !bs.Scan() {
    		t.Fatalf("Scan: %v", bs.Err())
    	}
    	got = bs.Text()
    	want = `backend got "Hello"`
    	if got != want {
    		t.Errorf("got %#q, want %#q", got, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top