Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 111 for END (0.84 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			name = name[1:]
    		}
    		for len(name) > 0 && isDigit(name[0]) {
    			name = name[1:]
    		}
    		if len(name) > 0 && name[0] != '.' {
    			return nil, errors.New("unparsed characters at end of mangled name")
    		}
    		a = &Special{Prefix: "invocation function for block in ", Val: a}
    		return a, nil
    	}
    
    	const prefix = "_GLOBAL_"
    	if strings.HasPrefix(name, prefix) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    func (st *loadState) preloadSyms(r *oReader, kind int) {
    	l := st.l
    	var start, end uint32
    	switch kind {
    	case pkgDef:
    		start = 0
    		end = uint32(r.ndef)
    	case hashed64Def:
    		start = uint32(r.ndef)
    		end = uint32(r.ndef + r.nhashed64def)
    	case hashedDef:
    		start = uint32(r.ndef + r.nhashed64def)
    		end = uint32(r.ndef + r.nhashed64def + r.nhasheddef)
    	case nonPkgDef:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. src/go/types/expr.go

    		if sig, ok := check.typ(e.Type).(*Signature); ok {
    			// Set the Scope's extent to the complete "func (...) {...}"
    			// so that Scope.Innermost works correctly.
    			sig.scope.pos = e.Pos()
    			sig.scope.end = e.End()
    			if !check.conf.IgnoreFuncBodies && e.Body != nil {
    				// Anonymous functions are considered part of the
    				// init expression/func declaration which contains
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // the associated expression.
      // Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and
      // must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or
      // '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an
      // optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    		//	  end up here to canonicalize the import paths.
    		//	- during any load, non-loaded packages like "unsafe" end up here.
    		//	- during any load, build-injected dependencies like "runtime/cgo" end up here.
    		//	- because we ignore appengine/* in the module loader,
    		//	  the dependencies of any actual appengine/* library end up here.
    		dir := findStandardImportPath(path)
    		if dir != "" {
    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/cmd/compile/internal/types2/expr.go

    constant lhs must be representable as an integer.
    
    When an expression gets its final type, either on the way out from rawExpr,
    on the way down in updateExprType, or at the end of the type checker run,
    the type (and constant value, if any) is recorded via Info.Types, if present.
    */
    
    type opPredicates map[syntax.Operator]func(Type) bool
    
    var unaryOpPredicates opPredicates
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    type Transport struct {
    	idleMu       sync.Mutex
    	closeIdle    bool                                // user has requested to close all idle conns
    	idleConn     map[connectMethodKey][]*persistConn // most recently used at end
    	idleConnWait map[connectMethodKey]wantConnQueue  // waiting getConns
    	idleLRU      connLRU
    
    	reqMu       sync.Mutex
    	reqCanceler map[*Request]context.CancelCauseFunc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// delete) or an object that cannot have labels (like a
    	// DeploymentRollback or a PodProxyOptions object) is not considered to
    	// match.
    	// Use the object selector only if the webhook is opt-in, because end
    	// users may skip the admission webhook by setting the labels.
    	// Default to the empty LabelSelector, which matches everything.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  9. src/time/format.go

    		}
    		if c := value[nUpper]; c < 'A' || 'Z' < c {
    			break
    		}
    	}
    	switch nUpper {
    	case 0, 1, 2, 6:
    		return 0, false
    	case 5: // Must end in T to match.
    		if value[4] == 'T' {
    			return 5, true
    		}
    	case 4:
    		// Must end in T, except one special case.
    		if value[3] == 'T' || value[:4] == "WITA" {
    			return 4, true
    		}
    	case 3:
    		return 3, true
    	}
    	return 0, false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. src/crypto/tls/conn.go

    			return c.BlockSize()
    		}
    		return 0
    	default:
    		panic("unknown cipher type")
    	}
    }
    
    // extractPadding returns, in constant time, the length of the padding to remove
    // from the end of payload. It also returns a byte which is equal to 255 if the
    // padding was valid and 0 otherwise. See RFC 2246, Section 6.2.3.2.
    func extractPadding(payload []byte) (toRemove int, good byte) {
    	if len(payload) < 1 {
    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