Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for anon0 (0.2 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/slog/slog.go

    	var r string
    	if recv := fn.Type().(*types.Signature).Recv(); recv != nil {
    		if _, named := typesinternal.ReceiverNamed(recv); named != nil {
    			r = named.Obj().Name()
    		} else {
    			r = recv.Type().String() // anon struct/interface
    		}
    		r += "."
    	}
    	return fmt.Sprintf("%s.%s%s", fn.Pkg().Name(), r, fn.Name())
    }
    
    // If fn is a slog function that has a ...any parameter for key-value pairs,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/go/internal/gccgoimporter/parser.go

    	return typ
    }
    
    // Field = Name Type [string] .
    func (p *parser) parseField(pkg *types.Package) (field *types.Var, tag string) {
    	name := p.parseName()
    	typ, n := p.parseTypeExtended(pkg)
    	anon := false
    	if name == "" {
    		anon = true
    		// Alias?
    		if aname, ok := p.aliases[n]; ok {
    			name = aname
    		} else {
    			switch typ := deref(typ).(type) {
    			case *types.Basic:
    				name = typ.Name()
    			case *types.Named:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/mvs/mvs_test.go

    name: req2
    A: G1 H1
    G1: H1
    H1: G1
    req A:   G1
    req A G: G1
    req A H: H1
    
    name: req3
    M: A1 B1
    A1: X1
    B1: X2
    X1: I1
    X2:
    req M: A1 B1
    
    name: reqnone
    M: Anone B1 D1 E1
    B1: Cnone D1
    E1: Fnone
    build M: M B1 D1 E1
    req M:     B1    E1
    
    name: reqdup
    M: A1 B1
    A1: B1
    B1:
    req M A A: A1
    
    name: reqcross
    M: A1 B1 C1
    A1: B1 C1
    B1: C1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    		return "empty statement"
    	case *ast.ExprStmt:
    		return "expression statement"
    	case *ast.Field:
    		// Can be any of these:
    		// struct {x, y int}  -- struct field(s)
    		// struct {T}         -- anon struct field
    		// interface {I}      -- interface embedding
    		// interface {f()}    -- interface method
    		// func (A) func(B) C -- receiver, param(s), result(s)
    		return "field/method/parameter"
    	case *ast.FieldList:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    func (m *Mapping) Unsymbolizable() bool {
    	name := filepath.Base(m.File)
    	return strings.HasPrefix(name, "[") || strings.HasPrefix(name, "linux-vdso") || strings.HasPrefix(m.File, "/dev/dri/") || m.File == "//anon"
    }
    
    // Copy makes a fully independent copy of a profile.
    func (p *Profile) Copy() *Profile {
    	pp := &Profile{}
    	if err := unmarshal(serialize(p), pp); err != nil {
    		panic(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    		}
    		if f.ByteOffset < off {
    			// Drop a packed field that we can't represent.
    			continue
    		}
    
    		n := len(fld)
    		fld = fld[0 : n+1]
    		if name == "" {
    			name = fmt.Sprintf("anon%d", anon)
    			anon++
    			ident[name] = name
    		}
    		fld[n] = &ast.Field{Names: []*ast.Ident{c.Ident(ident[name])}, Type: tgo}
    		sizes = sizes[0 : n+1]
    		sizes[n] = size
    		off += size
    		buf.WriteString(t.C.String())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. .bazelrc

    build:rbe_base --spawn_strategy=remote,worker,standalone,local
    # Attempt to minimize the amount of data transfer between bazel and the remote
    # workers:
    build:rbe_base --remote_download_toplevel
    test:rbe_base --test_env=USER=anon
    
    # TODO(kanglan): Check if we want to merge rbe_linux into rbe_linux_cpu.
    build:rbe_linux --config=rbe_base
    build:rbe_linux --action_env=PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/go/bin"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. cmd/object-handlers_test.go

    	if runtime.GOOS == "windows" {
    		objectName = "test-object" // ...except on Windows
    	}
    	// object used for anonymous HTTP request test.
    	anonObject := "anon-object"
    	var err error
    	opts := ObjectOptions{}
    	// set of byte data for PutObject.
    	// object has to be created before running tests for Copy Object.
    	// this is required even to assert the copied object,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.6.md

    * Fixed detection of master during creation of multizone nodes cluster by kube-up. ([#38617](https://github.com/kubernetes/kubernetes/pull/38617), [@jszczepkowski](https://github.com/jszczepkowski))
    * Update CHANGELOG.md to warn about anon auth flag ([#38675](https://github.com/kubernetes/kubernetes/pull/38675), [@erictune](https://github.com/erictune))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/static/trace_viewer_full.html

    Alloc',file:/\/dalvik-LinearAlloc/},{name:'Indirect Reference Table',file:/\/dalvik-indirect.ref/},{name:'Cache',file:/\/dalvik-jit-code-cache/},{name:'Accounting'}]},{name:'Cursor',file:/\/CursorWindow/},{name:'Ashmem'}]},{name:'Native heap',file:/^((\[heap\])|(\[anon:)|(\/dev\/ashmem\/libc malloc)|(\[discounted tracing overhead\])|$)/},{name:'Stack',file:/^\[stack/},{name:'Files',file:/\.((((jar)|(apk)|(ttf)|(odex)|(oat)|(art))$)|(dex)|(so))/,children:[{name:'so',file:/\.so/},{name:'jar',file:/\.jar$/},{name:'...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top