Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for original (0.31 sec)

  1. src/crypto/tls/handshake_messages.go

    			return false
    		}
    	}
    
    	return true
    }
    
    func (m *clientHelloMsg) originalBytes() []byte {
    	return m.original
    }
    
    func (m *clientHelloMsg) clone() *clientHelloMsg {
    	return &clientHelloMsg{
    		original:                         slices.Clone(m.original),
    		vers:                             m.vers,
    		random:                           slices.Clone(m.random),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    			// is unique, so the relative ordering of two LMS-suffixes
    			// is determined by just the leading LMS-substring.
    			// That is, the LMS-suffix sort order matches the
    			// (simpler) LMS-substring sort order.
    			// Copy the original LMS-substring order into the
    			// suffix array destination.
    			copy(sa, sa[len(sa)-numLMS:])
    		}
    		expand_8_64(text, freq, bucket, sa, numLMS)
    	}
    	induceL_8_64(text, sa, freq, bucket)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    	}
    	// Now, the top bit of each m-aligned group in x is set
    	// that group was all zero in the original x.
    
    	// From each group of m bits subtract 1.
    	// Because we know only the top bits of each
    	// m-aligned group are set, we know this will
    	// set each group to have all the bits set except
    	// the top bit, so just OR with the original
    	// result to set all the bits.
    	return ^((x - (x >> (m - 1))) | x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    }
    
    type resolver struct {
    	localQueries      []*query // queries for absolute or relative paths
    	pathQueries       []*query // package path literal queries in original order
    	wildcardQueries   []*query // path wildcard queries in original order
    	patternAllQueries []*query // queries with the pattern "all"
    
    	// Indexed "none" queries. These are also included in the slices above;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. src/testing/testing.go

    			if c.level > 1 {
    				frames = runtime.CallersFrames(c.creator)
    				parent := c.parent
    				// We're no longer looking at the current c after this point,
    				// so we should unlock its mu, unless it's the original receiver,
    				// in which case our caller doesn't expect us to do that.
    				if shouldUnlock {
    					c.mu.Unlock()
    				}
    				c = parent
    				// Remember to unlock c.mu when we no longer need it, either
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    //
    //go:nowritebarrier
    func scanblock(b0, n0 uintptr, ptrmask *uint8, gcw *gcWork, stk *stackScanState) {
    	// Use local copies of original parameters, so that a stack trace
    	// due to one of the throws below shows the original block
    	// base and extent.
    	b := b0
    	n := n0
    
    	for i := uintptr(0); i < n; {
    		// Find bits for the next word.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. src/os/os_test.go

    			// It's not safe to continue with tests if we can't get back to
    			// the original working directory.
    			panic(err)
    		}
    	}()
    
    	// Note the deferred Wait must be called after the deferred close(done),
    	// to ensure the N goroutines have been released even if the main goroutine
    	// calls Fatalf. It must be called before the Chdir back to the original
    	// directory, and before the deferred deletion implied by TempDir,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    			ldr.SetSymExtname(s, newName)
    
    			// When linking against a shared library, the Go object file may
    			// have reference to the original symbol name whereas the shared
    			// library provides a symbol with the mangled name. We need to
    			// copy the payload of mangled to original.
    			// XXX maybe there is a better way to do this.
    			dup := ldr.Lookup(newName, ldr.SymVersion(s))
    			if dup != 0 {
    				st := ldr.SymType(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    		newRS, rsErr := updateRoots(ctx, rs.direct, rs, nil, nil, false)
    		if rsErr != nil {
    			// Failed to update roots, perhaps because of an error in a transitive
    			// dependency needed for the update. Return the original Requirements
    			// instead.
    			return rs, mg, rsErr
    		}
    		rs = newRS
    		mg, mgErr = rs.Graph(ctx)
    	}
    
    	return rs, mg, mgErr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. src/net/http/client_test.go

    	}
    	res.Body.Close()
    	if res.Header.Get("Location") == "" {
    		t.Errorf("no Location header in Response")
    	}
    }
    
    // Tests that Client redirects' contexts are derived from the original request's context.
    func TestClientRedirectsContext(t *testing.T) { run(t, testClientRedirectsContext) }
    func testClientRedirectsContext(t *testing.T, mode testMode) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top