Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 202 for livable (0.09 sec)

  1. src/cmd/compile/internal/types2/unify.go

    						return false
    					}
    				} else if xi != nil || yi != nil {
    					// One but not both of them are interfaces.
    					// In this case, either x or y could be viable matches for the corresponding
    					// type parameter, which means choosing either introduces an order dependence.
    					// Therefore, we must fail unification (go.dev/issue/60933).
    					return false
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/arm64/asm.go

    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package arm64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  3. src/runtime/trace.go

    	mp := acquirem()
    
    	// Advance the generation or stop the trace.
    	trace.lastNonZeroGen = gen
    	if stopTrace {
    		systemstack(func() {
    			// Ordering is important here. Set shutdown first, then disable tracing,
    			// so that conditions like (traceEnabled() || traceShuttingDown()) have
    			// no opportunity to be false. Hold the trace lock so this update appears
    			// atomic to the trace reader.
    			lock(&trace.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/edit.go

    			// to do that and avoid the overhead of trying to find some lower version
    			// to downgrade to.
    			//
    			// However, it is possible that m depends on something that leads to its
    			// own upgrade, so if the upgrade isn't viable we should go ahead and try
    			// to downgrade (like with any other root).
    			if v := mg.Selected(m.Path); v != m.Version {
    				u := module.Version{Path: m.Path, Version: v}
    				uPruning, ok := t.extendedRootPruning[m]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/issue27340/a.go

    // pointer types, because we generate code passing a struct ptr rather
    // than using the typedef. This warning is expected and does not break
    // a normal build.
    // We can only disable -Wincompatible-pointer-types starting with GCC 5.
    
    // #if __GNU_MAJOR__ >= 5
    //
    // #pragma GCC diagnostic ignored "-Wincompatible-pointer-types"
    //
    // typedef struct {
    // 	int a;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/testdata/deadcode/structof_funcof.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Methods of reflect.rtype use StructOf and FuncOf which in turn depend on
    // reflect.Value.Method. StructOf and FuncOf must not disable the DCE.
    
    package main
    
    import "reflect"
    
    type S int
    
    func (s S) M() { println("S.M") }
    
    func (s S) N() { println("S.N") }
    
    type T float64
    
    func (t T) F(s S) {}
    
    func useStructOf() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:07:26 UTC 2023
    - 994 bytes
    - Viewed (0)
  7. src/net/http/transport.go

    			if h2i, ok := v.Interface().(h2Transport); ok {
    				t.h2transport = h2i
    				return
    			}
    		}
    	}
    
    	if t.TLSNextProto != nil {
    		// This is the documented way to disable http2 on a
    		// Transport.
    		return
    	}
    	if !t.ForceAttemptHTTP2 && (t.TLSClientConfig != nil || t.Dial != nil || t.DialContext != nil || t.hasCustomTLSDialer()) {
    		// Be conservative and don't automatically enable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    	}
    
    	return true, fusedSize
    }
    
    type padJumpsCtx int32
    
    func makePjcCtx(ctxt *obj.Link) padJumpsCtx {
    	// Disable jump padding on 32 bit builds by setting
    	// padJumps to 0.
    	if ctxt.Arch.Family == sys.I386 {
    		return padJumpsCtx(0)
    	}
    
    	// Disable jump padding for hand written assembly code.
    	if ctxt.IsAsm {
    		return padJumpsCtx(0)
    	}
    
    	return padJumpsCtx(32)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. src/cmd/cgo/doc.go

    C compiler (typically gcc or clang) cannot be found on the system PATH.
    You can override the default by setting the CGO_ENABLED
    environment variable when running the go tool: set it to 1 to enable
    the use of cgo, and to 0 to disable it. The go tool will set the
    build constraint "cgo" if cgo is enabled. The special import "C"
    implies the "cgo" build constraint, as though the file also said
    "//go:build cgo".  Therefore, if cgo is disabled, files that import
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  10. src/syscall/syscall_windows.go

    	var buf [MAX_PATH + 1]uint16
    	path, err := fdpath(fd, buf[:])
    	if err != nil {
    		return err
    	}
    	// When using VOLUME_NAME_DOS, the path is always prefixed by "\\?\".
    	// That prefix tells the Windows APIs to disable all string parsing and to send
    	// the string that follows it straight to the file system.
    	// Although SetCurrentDirectory and GetCurrentDirectory do support the "\\?\" prefix,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
Back to top