Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 175 for Ntype (0.19 sec)

  1. src/internal/xcoff/xcoff.go

    	Rsymndx uint32 // Index into symbol table
    	Rsize   uint8  // Sign and reloc bit len
    	Rtype   uint8  // Toc relocation type
    }
    
    type Reloc64 struct {
    	Rvaddr  uint64 // (virtual) address of reference
    	Rsymndx uint32 // Index into symbol table
    	Rsize   uint8  // Sign and reloc bit len
    	Rtype   uint8  // Toc relocation type
    }
    
    const (
    	R_POS = 0x00 // A(sym) Positive Relocation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. pkg/model/proxy.go

    )
    
    // NodeType decides the responsibility of the proxy serves in the mesh
    type NodeType string
    
    const (
    	// SidecarProxy type is used for sidecar proxies in the application containers
    	SidecarProxy NodeType = "sidecar"
    
    	// Router type is used for standalone proxies acting as L7/L4 routers
    	Router NodeType = "router"
    
    	// Waypoint type is used for waypoint proxies
    	Waypoint NodeType = "waypoint"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. src/internal/xcoff/file.go

    }
    
    type Reloc struct {
    	VirtualAddress   uint64
    	Symbol           *Symbol
    	Signed           bool
    	InstructionFixed bool
    	Length           uint8
    	Type             uint8
    }
    
    // ImportedSymbol holds information about an imported XCOFF symbol.
    type ImportedSymbol struct {
    	Name    string
    	Library string
    }
    
    // FileHeader holds information about an XCOFF file header.
    type FileHeader struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    3. **Type of interception**: Either BYTECODE_UPGRADE for property upgrades or INSTRUMENTATION for cc instrumentation: we want to use only instrumentation interceptors in some cases and that is why you need to define a type
    4. **Annotations to define interception type**, like if this is an instance or static method, if we should intercept Groovy or just Java etc.
    5. **Return type **of original call
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  5. src/cmd/pack/pack_test.go

    	printf := func(format string, args ...any) {
    		_, err := fmt.Fprintf(b, format, args...)
    		if err != nil {
    			t.Fatalf("Writing to %s: %v", large, err)
    		}
    	}
    
    	printf("package large\n\ntype T struct {\n")
    	for i := 0; i < 1000; i++ {
    		printf("f%d int `tag:\"", i)
    		for j := 0; j < 100; j++ {
    			printf("t%d=%d,", j, j)
    		}
    		printf("\"`\n")
    	}
    	printf("}\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 16:27:35 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/stmt.go

    				continue
    			}
    			if n1.Op() != ir.OTYPE {
    				base.ErrorfAt(ncase.Pos(), errors.NotAType, "%L is not a type", n1)
    				continue
    			}
    			if !n1.Type().IsInterface() {
    				why := ImplementsExplain(n1.Type(), t)
    				if why != "" {
    					base.ErrorfAt(ncase.Pos(), errors.ImpossibleAssert, "impossible type switch case: %L cannot have dynamic type %v (%s)", guard.X, n1.Type(), why)
    				}
    				continue
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  7. src/go/parser/parser_test.go

    func f2b([]byte, (int), *float)
    func f3b(a, b *int, c []float)
    func f4b(...*complex)
    func f5b(a s1a, b ...[]complex)
    //
    type s1a struct { int }
    type s2a struct { byte; int; s1a }
    type s3a struct { a, b int; c float }
    //
    type s1b struct { *int }
    type s2b struct { byte; int; *float }
    type s3b struct { a, b *s3b; c []float }
    `, 0)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	want := "int " + // f1a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  8. src/runtime/type.go

    // license that can be found in the LICENSE file.
    
    // Runtime type representation.
    
    package runtime
    
    import (
    	"internal/abi"
    	"unsafe"
    )
    
    type nameOff = abi.NameOff
    type typeOff = abi.TypeOff
    type textOff = abi.TextOff
    
    type _type = abi.Type
    
    // rtype is a wrapper that allows us to define additional methods.
    type rtype struct {
    	*abi.Type // embedding is okay here (unlike reflect) because none of this is public
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. src/runtime/runtime-gdb.py

    			except Exception as e:
    				print("Can't parse ", obj, ": ", e)
    				continue
    
    			if obj['data'] == 0:
    				dtype = "nil"
    			else:
    				dtype = iface_dtype(obj)
    
    			if dtype is None:
    				print("Not an interface: ", obj.type)
    				continue
    
    			print("{0}: {1}".format(obj.type, dtype))
    
    # TODO: print interface's methods and dynamic type's func pointers thereof.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. src/internal/reflectlite/type.go

    	return s[i+1:]
    }
    
    func toRType(t *abi.Type) rtype {
    	return rtype{t}
    }
    
    func elem(t *abi.Type) *abi.Type {
    	et := t.Elem()
    	if et != nil {
    		return et
    	}
    	panic("reflect: Elem of invalid type " + toRType(t).String())
    }
    
    func (t rtype) Elem() Type {
    	return toType(elem(t.common()))
    }
    
    func (t rtype) In(i int) Type {
    	tt := t.Type.FuncType()
    	if tt == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top