Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 73 for IntType (0.21 sec)

  1. pkg/model/proxy.go

    	Ztunnel NodeType = "ztunnel"
    )
    
    // IsApplicationNodeType verifies that the NodeType is one of the declared constants in the model
    func IsApplicationNodeType(nType NodeType) bool {
    	switch nType {
    	case SidecarProxy, Router, Waypoint, Ztunnel:
    		return true
    	default:
    		return false
    	}
    }
    
    // IPMode represents the IP mode of proxy.
    type IPMode int
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. src/internal/xcoff/file.go

    				return nil, err
    			}
    			numaux = int(se.Nnumaux)
    			sym.SectionNumber = int(se.Nscnum)
    			sym.StorageClass = int(se.Nsclass)
    			sym.Value = uint64(se.Nvalue)
    			needAuxFcn = se.Ntype&SYM_TYPE_FUNC != 0 && numaux > 1
    			zeroes := binary.BigEndian.Uint32(se.Nname[:4])
    			if zeroes != 0 {
    				sym.Name = cstring(se.Nname[:])
    			} else {
    				offset := binary.BigEndian.Uint32(se.Nname[4:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg debug/dwarf, method (*FuncType) Size() int64
    pkg debug/dwarf, method (*FuncType) String() string
    pkg debug/dwarf, method (*IntType) Basic() *BasicType
    pkg debug/dwarf, method (*IntType) Common() *CommonType
    pkg debug/dwarf, method (*IntType) Size() int64
    pkg debug/dwarf, method (*IntType) String() string
    pkg debug/dwarf, method (*PtrType) Common() *CommonType
    pkg debug/dwarf, method (*PtrType) Size() int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  4. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

        modifiedClass3("Class3*")
        instrumentingClassTransform{{"InstrumentingClassTransform\n(ClassVisitor)"}}
        interceptors(Generated interceptors)
        gradleAPIMetadata("Gradle API\ntype metadata")
        externalPluginsMetadata("External plugins\ntype metadata")
    
        subgraph Injected
            interceptors
            gradleAPIMetadata
            externalPluginsMetadata
        end
        
    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/debug/elf/elf.go

    func (i DynFlag1) GoString() string { return flagName(uint32(i), dflag1Strings, true) }
    
    // NType values; used in core files.
    type NType int
    
    const (
    	NT_PRSTATUS NType = 1 /* Process status. */
    	NT_FPREGSET NType = 2 /* Floating point registers. */
    	NT_PRPSINFO NType = 3 /* Process state info. */
    )
    
    var ntypeStrings = []intName{
    	{1, "NT_PRSTATUS"},
    	{2, "NT_FPREGSET"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/compile/internal/typecheck/stmt.go

    	// the definition of lhs may refer to this assignment
    	// as its definition, in which case it will call tcAssign.
    	// in that case, do not call typecheck back, or it will cycle.
    	// if the variable has a type (ntype) then typechecking
    	// will not look at defn, so it is okay (and desirable,
    	// so that the conversion below happens).
    
    	checkLHS := func(i int, typ *types.Type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  8. src/go/parser/parser_test.go

    // *ast.BadExpr.
    func TestIncompleteSelection(t *testing.T) {
    	for _, src := range []string{
    		"package p; var _ = fmt.",             // at EOF
    		"package p; var _ = fmt.\ntype X int", // not at EOF
    	} {
    		fset := token.NewFileSet()
    		f, err := ParseFile(fset, "", src, 0)
    		if err == nil {
    			t.Errorf("ParseFile(%s) succeeded unexpectedly", src)
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    There is also link:{javadocPath}/org/gradle/api/file/FileCollection.html#addToAntBuilder-java.lang.Object-java.lang.String-org.gradle.api.file.FileCollection.AntType-[a method on `FileCollection`] that will convert a file collection to a fileset or similar Ant type.
    --
    
    [[migant:properties]]
    == Migrating Ant properties
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. src/crypto/tls/tls_test.go

    			conn.Close()
    			t.Errorf("DialWithTimeout unexpectedly completed successfully")
    		} else if !isTimeoutError(err) {
    			t.Errorf("resulting error not a timeout: %v\nType %T: %#v", err, err, err)
    		}
    
    		listener.Close()
    
    		// We're looking for a timeout during the handshake, so check that the
    		// Listener actually accepted the connection to initiate it. (If the server
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
Back to top