Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for What (3.3 sec)

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

    		return
    	}
    	var what string
    	switch t := x.typ.(type) {
    	case *Alias, *Named:
    		if isGeneric(t) {
    			what = "type"
    		}
    	case *Signature:
    		if t.tparams != nil {
    			if enableReverseTypeInference && T != nil {
    				check.funcInst(T, x.Pos(), x, nil, true)
    				return
    			}
    			what = "function"
    		}
    	}
    	if what != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	// For names, find out whether they are integer constants.
    	// We used to look at specific warning or error messages here, but that tied the
    	// behavior too closely to specific versions of the compilers.
    	// Instead, arrange that we can infer what we need from only the presence or absence
    	// of an error on a specific line.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    	AutoRoot Root = iota
    
    	// NoRoot is used for commands that run in module mode and ignore any go.mod
    	// file the current directory or in parent directories.
    	NoRoot
    
    	// NeedRoot is used for commands that must run in module mode and don't
    	// make sense without a main module.
    	NeedRoot
    )
    
    // ModFile returns the parsed go.mod file.
    //
    // Note that after calling LoadPackages or LoadModGraph,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    }
    
    // tidyPrunedRoots returns a minimal set of root requirements that maintains the
    // invariants of the go.mod file needed to support graph pruning for the given
    // packages:
    //
    //  1. For each package marked with pkgInAll, the module path that provided that
    //     package is included as a root.
    //  2. For all packages, the module that provided that package either remains
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    	//
    	// We re-resolve each package — rather than just checking versions — to ensure
    	// that we have fetched module source code (and, importantly, checksums for
    	// that source code) for all modules that are necessary to ensure that imports
    	// are unambiguous. That also produces clearer diagnostics, since we can say
    	// exactly what happened to the package if it became ambiguous or disappeared
    	// entirely.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm_s390x.s

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !purego
    
    #include "textflag.h"
    #include "go_asm.h"
    
    DATA p256ordK0<>+0x00(SB)/4, $0xee00bc4f
    DATA p256ord<>+0x00(SB)/8, $0xffffffff00000000
    DATA p256ord<>+0x08(SB)/8, $0xffffffffffffffff
    DATA p256ord<>+0x10(SB)/8, $0xbce6faada7179e84
    DATA p256ord<>+0x18(SB)/8, $0xf3b9cac2fc632551
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/prove.go

    				default:
    					panic("unimplemented")
    				}
    
    				if min < max {
    					// Record that x > min and max >= x
    					ft.update(parent, x, vmin, d, r)
    					ft.update(parent, vmax, x, d, r|eq)
    				} else {
    					// We know that either x>min OR x<=max. factsTable cannot record OR conditions,
    					// so let's see if we can already prove that one of them is false, in which case
    					// the other must be true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  8. src/bufio/bufio_test.go

    		// so we leave it out. It should be covered via
    		// the ReadSlice test since ReadLine simply calls
    		// ReadSlice, and it's that function that handles
    		// the last byte.
    	}
    
    	// Try all readers with UnreadByte.
    	for rno, read := range readers {
    		// Some input data that is longer than the minimum reader buffer size.
    		const n = 10
    		var buf bytes.Buffer
    		for i := 0; i < n; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    	// When manufacturing new slots that correspond to splits of
    	// composite parameters, we want to avoid creating a new sub-slot
    	// that differs from some existing sub-slot only by type, since
    	// the debug location analysis will treat that slot as a separate
    	// entity. To achieve this, create a lookup table of existing
    	// slots that is type-insenstitive.
    	sc := newSlotCanonicalizer()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_messages.go

    		exts.AddUint16LengthPrefixed(func(exts *cryptobyte.Builder) {
    			exts.AddBytes(m.encryptedClientHello)
    		})
    	}
    	// Note that any extension that can be compressed during ECH must be
    	// contiguous. If any additional extensions are to be compressed they must
    	// be added to the following block, so that they can be properly
    	// decompressed on the other side.
    	var echOuterExts []uint16
    	if m.ocspStapling {
    		// RFC 4366, Section 3.6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top