Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 248 for original (0.16 sec)

  1. src/regexp/syntax/parse_test.go

    		d := dump(re)
    		if d != tt.Dump {
    			t.Errorf("Parse(%#q).Dump() = %#q want %#q", tt.Regexp, d, tt.Dump)
    			continue
    		}
    
    		s := re.String()
    		if s != tt.Regexp {
    			// If ToString didn't return the original regexp,
    			// it must have found one with fewer parens.
    			// Unfortunately we can't check the length here, because
    			// ToString produces "\\{" for a literal brace,
    			// but "{" is a shorter equivalent in some contexts.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  2. src/runtime/extern.go

    	the lock. But instead of the value corresponding to the amount of contention that call
    	stack caused, it corresponds to the amount of time the caller of unlock had to wait in its
    	original call to lock. A future release is expected to align those and remove this setting.
    
    	invalidptr: invalidptr=1 (the default) causes the garbage collector and stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. src/runtime/race_ppc64le.s

    	MOVD	R8, R15	// save the original function
    	MOVD	R6, R17 // save the original arg list addr
    	MOVD	$__tsan_go_ignore_sync_begin(SB), R8 // func addr to call
    	MOVD    runtimeĀ·tls_g(SB), R10
    	MOVD    0(R10), g
    	MOVD    g_racectx(g), R3        // goroutine context
    	BL	racecall<>(SB)
    	MOVD	R15, R8	// restore the original function
    	MOVD	R17, R6 // restore arg list addr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/build.go

    			Time:    &info.Time,
    		}
    	}
    }
    
    // mergeOrigin returns the union of data from two origins,
    // returning either a new origin or one of its unmodified arguments.
    // If the two origins conflict including if either is nil,
    // mergeOrigin returns nil.
    func mergeOrigin(m1, m2 *codehost.Origin) *codehost.Origin {
    	if m1 == nil || m2 == nil {
    		return nil
    	}
    
    	if m2.VCS != m1.VCS ||
    		m2.URL != m1.URL ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/subst.go

    		// careful not to call any methods that would cause t to be expanded: doing
    		// so would result in deadlock.
    		//
    		// So we call t.Origin().TypeParams() rather than t.TypeParams().
    		orig := t.Origin()
    		n := orig.TypeParams().Len()
    		if n == 0 {
    			return t // type is not parameterized
    		}
    
    		if t.TypeArgs().Len() != n {
    			return Typ[Invalid] // error reported elsewhere
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/net/http/response.go

    	// content actually set from the server, ContentLength is set to -1,
    	// and the "Content-Length" and "Content-Encoding" fields are deleted
    	// from the responseHeader. To get the original response from
    	// the server, set Transport.DisableCompression to true.
    	Uncompressed bool
    
    	// Trailer maps trailer keys to values in the same
    	// format as Header.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/internal/fuzz/worker.go

    				}
    				if result.crasherMsg == "" {
    					result.crasherMsg = err.Error()
    				}
    			}
    			if shouldPrintDebugInfo() {
    				w.coordinator.debugLogf(
    					"input minimized, id: %s, original id: %s, crasher: %t, originally crasher: %t, minimizing took: %s",
    					result.entry.Path,
    					input.entry.Path,
    					result.crasherMsg != "",
    					input.crasherMsg != "",
    					result.totalDuration,
    				)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. src/net/lookup_test.go

    	}()
    
    	lookupCtx, cancelLookup := context.WithCancel(context.Background())
    	unblockLookup := make(chan struct{})
    
    	// Set testHookLookupIP to start a new, concurrent call to LookupIPAddr
    	// and cancel the original one, then block until the canceled call has returned
    	// (ensuring that it has performed any synchronous cleanup).
    	testHookLookupIP = func(
    		ctx context.Context,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  9. src/runtime/panic.go

    // triggered this panic.
    func panicCheck1(pc uintptr, msg string) {
    	if goarch.IsWasm == 0 && stringslite.HasPrefix(funcname(findfunc(pc)), "runtime.") {
    		// Note: wasm can't tail call, so we can't get the original caller's pc.
    		throw(msg)
    	}
    	// TODO: is this redundant? How could we be in malloc
    	// but not in the runtime? runtime/internal/*, maybe?
    	gp := getg()
    	if gp != nil && gp.m != nil && gp.m.mallocing != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  10. src/path/filepath/path_test.go

    		*errors = append(*errors, err)
    		if clear {
    			return nil
    		}
    		return err
    	}
    	return nil
    }
    
    // chdir changes the current working directory to the named directory,
    // and then restore the original working directory at the end of the test.
    func chdir(t *testing.T, dir string) {
    	olddir, err := os.Getwd()
    	if err != nil {
    		t.Fatalf("getwd %s: %v", dir, err)
    	}
    	if err := os.Chdir(dir); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top