Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,070 for late (0.11 sec)

  1. docs/changelogs/changelog_2x.md

        This could have corrupted requests where multiple headers had the same name,
        as in cookies.
     *  Fix: Reject bad characters in the URL hostname. Previously characters like
        `\0` would cause a late crash when building the request.
     *  Fix: Allow interceptors to change the request method.
     *  Fix: Don’t use the request's `User-Agent` or `Proxy-Authorization` when
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy.go

    	forward(resp)
    }
    
    func (p *XdsProxy) forwardToTap(resp *discovery.DiscoveryResponse) {
    	select {
    	case p.tapResponseChannel <- resp:
    	default:
    		log.Infof("tap response %q arrived too late; discarding", resp.TypeUrl)
    	}
    }
    
    func forwardToEnvoy(con *ProxyConnection, resp *discovery.DiscoveryResponse) {
    	if !model.IsEnvoyType(resp.TypeUrl) && resp.TypeUrl != model.WorkloadType {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/symtab.go

    		// linker, i.e. all symbols in Textp should not be removed.
    		// Most of them are actually referenced (our deadcode pass ensures that),
    		// except go:buildid which is generated late and not used by the program.
    		addRef("go:buildid")
    	}
    
    	// text section information
    	slice(textsectionmapSym, uint64(nsections))
    
    	// The typelinks slice
    	typelinkSym := ldr.Lookup("runtime.typelink", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  4. src/internal/trace/gc.go

    			continue
    		}
    
    		switch ev.Kind() {
    		case EventRangeActive:
    			if seenSync {
    				// If we've seen a sync, then we can be sure we're not finding out about
    				// something late; we have complete information after that point, and these
    				// active events will just be redundant.
    				break
    			}
    			// This range is active back to the start of the trace. We're failing to account
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1beta1/types.go

    	// The check can be enabled immediately when deploying a driver.
    	// In that case, provisioning new volumes with late binding
    	// will pause until the driver deployment has published
    	// some suitable CSIStorageCapacity object.
    	//
    	// Alternatively, the driver can be deployed with the field
    	// unset or false and it can be flipped later when storage
    	// capacity information has been published.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  6. pkg/apis/storage/types.go

    	// The check can be enabled immediately when deploying a driver.
    	// In that case, provisioning new volumes with late binding
    	// will pause until the driver deployment has published
    	// some suitable CSIStorageCapacity object.
    	//
    	// Alternatively, the driver can be deployed with the field
    	// unset or false and it can be flipped later when storage
    	// capacity information has been published.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1/types.go

    	// The check can be enabled immediately when deploying a driver.
    	// In that case, provisioning new volumes with late binding
    	// will pause until the driver deployment has published
    	// some suitable CSIStorageCapacity object.
    	//
    	// Alternatively, the driver can be deployed with the field
    	// unset or false and it can be flipped later when storage
    	// capacity information has been published.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/html.go

    <script type="text/javascript">
    
    // Contains phase names which are expanded by default. Other columns are collapsed.
    let expandedDefault = [
        "start",
        "deadcode",
        "opt",
        "lower",
        "late-deadcode",
        "regalloc",
        "genssa",
    ];
    if (history.state === null) {
        history.pushState({expandedDefault}, "", location.href);
    }
    
    // ordered list of all available highlight colors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/expr.go

    	// Nothing to do for float divisions.
    	if types.IsFloat[et] {
    		return n
    	}
    
    	// rewrite 64-bit div and mod on 32-bit architectures.
    	// TODO: Remove this code once we can introduce
    	// runtime calls late in SSA processing.
    	if types.RegSize < 8 && (et == types.TINT64 || et == types.TUINT64) {
    		if n.Y.Op() == ir.OLITERAL {
    			// Leave div/mod by constant powers of 2 or small 16-bit constants.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. src/runtime/os_windows.go

    		envs[i] = gostringw(&p[0])
    		for p[0] != 0 {
    			p = p[1:]
    		}
    		p = p[1:] // skip nil byte
    	}
    
    	stdcall1(_FreeEnvironmentStringsW, uintptr(strings))
    
    	// We call these all the way here, late in init, so that malloc works
    	// for the callback functions these generate.
    	var fn any = ctrlHandler
    	ctrlHandlerPC := compileCallback(*efaceOf(&fn), true)
    	stdcall2(_SetConsoleCtrlHandler, ctrlHandlerPC, 1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
Back to top