Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for AntType (0.99 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    		return t
    
    	case _Func:
    		// fntype
    		p.next()
    		_, t := p.funcType("function type")
    		return t
    
    	case _Lbrack:
    		// '[' oexpr ']' ntype
    		// '[' _DotDotDot ']' ntype
    		p.next()
    		if p.got(_Rbrack) {
    			return p.sliceType(pos)
    		}
    		return p.arrayType(pos, nil)
    
    	case _Chan:
    		// _Chan non_recvchantype
    		// _Chan _Comm ntype
    		p.next()
    		t := new(ChanType)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/xcoff.go

    	Nscnum  int16  // Section number of symbol
    	Ntype   uint16 // Basic and derived type specification
    	Nsclass uint8  // Storage class of symbol
    	Nnumaux int8   // Number of auxiliary entries
    }
    
    const SYMESZ = 18
    
    const (
    	// Nscnum
    	N_DEBUG = -2
    	N_ABS   = -1
    	N_UNDEF = 0
    
    	//Ntype
    	SYM_V_INTERNAL  = 0x1000
    	SYM_V_HIDDEN    = 0x2000
    	SYM_V_PROTECTED = 0x3000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  3. cmd/metrics-v3-handler.go

    	Name   string   `json:"name"`
    	Help   string   `json:"help"`
    	Type   string   `json:"type"`
    	Labels []string `json:"labels"`
    }
    
    func (md metricDisplay) String() string {
    	return fmt.Sprintf("Name: %s\nType: %s\nHelp: %s\nLabels: {%s}\n", md.Name, md.Type, md.Help, strings.Join(md.Labels, ","))
    }
    
    func (md metricDisplay) TableRow() string {
    	labels := strings.Join(md.Labels, ",")
    	if labels == "" {
    		labels = ""
    	} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:06:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractorTest.java

                extention = ".sh";
                content = "#!/bin/bash\nsleep " + sleep + ";cat $1";
            } else {
                // Windows
                extention = ".bat";
                content = "ping localhost -n " + sleep + "\r\ntype %1";
            }
            File file;
            try {
                file = File.createTempFile("script", extention);
                file.deleteOnExit();
                FileUtil.writeBytes(file.getAbsolutePath(), content.getBytes());
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/library/ip.go

    	"ip": {
    		cel.Overload("string_to_ip", []*cel.Type{cel.StringType}, apiservercel.IPType,
    			cel.UnaryBinding(stringToIP)),
    	},
    	"family": {
    		cel.MemberOverload("ip_family", []*cel.Type{apiservercel.IPType}, cel.IntType,
    			cel.UnaryBinding(family)),
    	},
    	"ip.isCanonical": {
    		cel.Overload("ip_is_canonical", []*cel.Type{cel.StringType}, cel.BoolType,
    			cel.UnaryBinding(ipIsCanonical)),
    	},
    	"isUnspecified": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 11:02:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/kubelet/stats/helper.go

    				// Pick the most recent value
    				if value.Timestamp.Before(specVal.time) {
    					continue
    				}
    				specVal.time = value.Timestamp
    				specVal.value = value.FloatValue
    				if specVal.valType == cadvisorapiv1.IntType {
    					specVal.value = float64(value.IntValue)
    				}
    			}
    		}
    	}
    	var udm []statsapi.UserDefinedMetric
    	for _, specVal := range udmMap {
    		udm = append(udm, statsapi.UserDefinedMetric{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  9. 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)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

        override val token: KaLifetimeToken
            get() = analysisContext.token
    
        override val int: KaType
            get() = withValidityAssertion { analysisContext.builtIns.intType.toKtType(analysisContext) }
    
        override val long: KaType
            get() = withValidityAssertion { analysisContext.builtIns.longType.toKtType(analysisContext) }
    
        override val short: KaType
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top