Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 108 for MapType (0.14 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10PsiTypeProvider.kt

            if (type !is SimpleTypeMarker) return null
    
            val signatureWriter = BothSignatureWriter(BothSignatureWriter.Mode.SKIP_CHECKS)
            typeMapper.mapType(type, mode, signatureWriter)
    
            val canonicalSignature = signatureWriter.toString()
            require(!canonicalSignature.contains(SpecialNames.ANONYMOUS_STRING))
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/node/v1beta1/generated.proto

      // node matched by this selector. The RuntimeClass nodeSelector is merged
      // with a pod's existing nodeSelector. Any conflicts will cause the pod to
      // be rejected in admission.
      // +optional
      // +mapType=atomic
      map<string, string> nodeSelector = 1;
    
      // tolerations are appended (excluding duplicates) to pods running with this
      // RuntimeClass during admission, effectively unioning the set of nodes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/node/v1alpha1/generated.proto

      // node matched by this selector. The RuntimeClass nodeSelector is merged
      // with a pod's existing nodeSelector. Any conflicts will cause the pod to
      // be rejected in admission.
      // +optional
      // +mapType=atomic
      map<string, string> nodeSelector = 1;
    
      // tolerations are appended (excluding duplicates) to pods running with this
      // RuntimeClass during admission, effectively unioning the set of nodes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. src/go/types/exprstring.go

    		buf.WriteString("func")
    		writeSigExpr(buf, x)
    
    	case *ast.InterfaceType:
    		buf.WriteString("interface{")
    		writeFieldList(buf, x.Methods.List, "; ", true)
    		buf.WriteByte('}')
    
    	case *ast.MapType:
    		buf.WriteString("map[")
    		WriteExpr(buf, x.Key)
    		buf.WriteByte(']')
    		WriteExpr(buf, x.Value)
    
    	case *ast.ChanType:
    		var s string
    		switch x.Dir {
    		case ast.SEND:
    			s = "chan<- "
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 19:31:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/cmd/gofmt/simplify.go

    		// array, slice, and map composite literals may be simplified
    		outer := n
    		var keyType, eltType ast.Expr
    		switch typ := outer.Type.(type) {
    		case *ast.ArrayType:
    			eltType = typ.Elt
    		case *ast.MapType:
    			keyType = typ.Key
    			eltType = typ.Value
    		}
    
    		if eltType != nil {
    			var ktyp reflect.Value
    			if keyType != nil {
    				ktyp = reflect.ValueOf(keyType)
    			}
    			typ := reflect.ValueOf(eltType)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 20:06:14 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. src/go/ast/ast.go

    		Methods    *FieldList // list of embedded interfaces, methods, or types
    		Incomplete bool       // true if (source) methods or types are missing in the Methods list
    	}
    
    	// A MapType node represents a map type.
    	MapType struct {
    		Map   token.Pos // position of "map" keyword
    		Key   Expr
    		Value Expr
    	}
    
    	// A ChanType node represents a channel type.
    	ChanType struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/node/v1alpha1/generated.proto

      // node matched by this selector. The RuntimeClass nodeSelector is merged
      // with a pod's existing nodeSelector. Any conflicts will cause the pod to
      // be rejected in admission.
      // +optional
      // +mapType=atomic
      map<string, string> nodeSelector = 1;
    
      // tolerations are appended (excluding duplicates) to pods running with this
      // RuntimeClass during admission, effectively unioning the set of nodes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/node/v1beta1/types.go

    	// node matched by this selector. The RuntimeClass nodeSelector is merged
    	// with a pod's existing nodeSelector. Any conflicts will cause the pod to
    	// be rejected in admission.
    	// +optional
    	// +mapType=atomic
    	NodeSelector map[string]string `json:"nodeSelector,omitempty" protobuf:"bytes,1,opt,name=nodeSelector"`
    
    	// tolerations are appended (excluding duplicates) to pods running with this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/typeof.go

    		return 1 << nIndexListExpr
    	case *ast.InterfaceType:
    		return 1 << nInterfaceType
    	case *ast.KeyValueExpr:
    		return 1 << nKeyValueExpr
    	case *ast.LabeledStmt:
    		return 1 << nLabeledStmt
    	case *ast.MapType:
    		return 1 << nMapType
    	case *ast.Package:
    		return 1 << nPackage
    	case *ast.ParenExpr:
    		return 1 << nParenExpr
    	case *ast.RangeStmt:
    		return 1 << nRangeStmt
    	case *ast.ReturnStmt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/node/v1beta1/generated.proto

      // node matched by this selector. The RuntimeClass nodeSelector is merged
      // with a pod's existing nodeSelector. Any conflicts will cause the pod to
      // be rejected in admission.
      // +optional
      // +mapType=atomic
      map<string, string> nodeSelector = 1;
    
      // tolerations are appended (excluding duplicates) to pods running with this
      // RuntimeClass during admission, effectively unioning the set of nodes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top