Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 104 of 104 for addPass (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    This is typically achieved by including `internal` in the implementation package names.
    However, before this release, the configuration cache subsystem did not follow this pattern, potentially causing confusion.
    
    To address this issue, in the current release, all code originally under the `org.gradle.configurationcache*` packages
    (which was never API) has been moved to new internal packages (`org.gradle.internal.*`).
    
    [[changes_8.8]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    	if ctxt.HeadType == objabi.Hwindows {
    		Peinit(ctxt)
    	}
    
    	if ctxt.LinkMode == LinkExternal {
    		// When external linking, we are creating an object file. The
    		// absolute address is irrelevant.
    		*FlagTextAddr = 0
    	}
    
    	// If there are no dynamic libraries needed, gcc disables dynamic linking.
    	// Because of this, glibc's dynamic ELF loader occasionally (like in version 2.13)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    //
    
    var (
    	envProxyOnce      sync.Once
    	envProxyFuncValue func(*url.URL) (*url.URL, error)
    )
    
    // envProxyFunc returns a function that reads the
    // environment variable to determine the proxy address.
    func envProxyFunc() func(*url.URL) (*url.URL, error) {
    	envProxyOnce.Do(func() {
    		envProxyFuncValue = httpproxy.FromEnvironment().ProxyFunc()
    	})
    	return envProxyFuncValue
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    	(MOVWstoreconst [makeValAndOff(int32(int16(c)),off)] {sym} ptr mem)
    (MOVBstore [off] {sym} ptr (MOV(L|Q)const [c]) mem) =>
    	(MOVBstoreconst [makeValAndOff(int32(int8(c)),off)] {sym} ptr mem)
    
    // Fold address offsets into constant stores.
    (MOV(Q|L|W|B|O)storeconst [sc] {s} (ADDQconst [off] ptr) mem) && ValAndOff(sc).canAdd32(off) =>
    	(MOV(Q|L|W|B|O)storeconst [ValAndOff(sc).addOffset32(off)] {s} ptr mem)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top