Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 840 for isKind (0.18 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/LightTreeUtil.kt

    
    internal
    fun LighterASTNode.expectKind(expected: IElementType) {
        check(isKind(expected))
    }
    
    
    internal
    fun List<LighterASTNode>.expectSingleOfKind(expected: IElementType): LighterASTNode =
        this.single { it.isKind(expected) }
    
    
    internal
    fun LighterASTNode.isKind(expected: IElementType) =
        this.tokenType == expected
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/builtin.go

    	// The case of len or cap overflow when converting TUINT or TUINTPTR to TINT
    	// will be handled by the negative range checks in makeslice during runtime.
    	if (len.Type().IsKind(types.TIDEAL) || len.Type().Size() <= types.Types[types.TUINT].Size()) &&
    		(cap.Type().IsKind(types.TIDEAL) || cap.Type().Size() <= types.Types[types.TUINT].Size()) {
    		fnname = "makeslice"
    		argtype = types.Types[types.TINT]
    	}
    	fn := typecheck.LookupRuntime(fnname)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

            syntacticOrFailure {
                val children = childrenWithParsingErrorCollection(tree, node)
                val functionalLiteralNode = children.firstOrNull { it: LighterASTNode -> it.isKind(FUNCTION_LITERAL) }
    
                collectingFailure(functionalLiteralNode ?: tree.parsingError(node, "No functional literal in lambda definition"))
    
                var block: LighterASTNode? = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/order.go

    		}
    		return n
    
    	case ir.OCONVNOP:
    		n := n.(*ir.ConvExpr)
    		if n.X.Op() == ir.OCALLMETH {
    			base.FatalfAt(n.X.Pos(), "OCALLMETH missed by typecheck")
    		}
    		if n.Type().IsKind(types.TUNSAFEPTR) && n.X.Type().IsKind(types.TUINTPTR) && (n.X.Op() == ir.OCALLFUNC || n.X.Op() == ir.OCALLINTER) {
    			call := n.X.(*ir.CallExpr)
    			// When reordering unsafe.Pointer(f()) into a separate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/type.go

    		panic(e)
    	}
    
    	// Common element type comparison for TARRAY, TCHAN, TPTR, and TSLICE.
    	return t.Elem().cmp(x.Elem())
    }
    
    // IsKind reports whether t is a Type of the specified kind.
    func (t *Type) IsKind(et Kind) bool {
    	return t != nil && t.kind == et
    }
    
    func (t *Type) IsBoolean() bool {
    	return t.kind == TBOOL
    }
    
    var unsignedEType = [...]Kind{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. samples/multicluster/expose-istiod.yaml

          hosts:
            - "*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: istiod-vs
    spec:
      hosts:
      - "*"
      gateways:
      - istiod-gateway
      tls:
      - match:
        - port: 15012
          sniHosts:
          - "*"
        route:
        - destination:
            host: istiod.istio-system.svc.cluster.local
            port:
              number: 15012
      - match:
        - port: 15017
          sniHosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 967 bytes
    - Viewed (0)
  7. samples/multicluster/expose-istiod-https.yaml

          hosts:
          # use a valid gateway host and domain for istiod
          - "ISTIOD-HOST.DOMAIN"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: istiod-vs
    spec:
      hosts:
      # use a valid gateway host and domain for istiod
      - "ISTIOD-HOST.DOMAIN"
      gateways:
      - istiod-gateway
      http:
      - match:
        - port: 15012
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  8. releasenotes/notes/istiod-sds.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    releaseNotes:
    - |
      **Improved** Gateway certificates to be read and distributed from Istiod, rather than in the gateway pods.
      This reduces the permissions required in the gateways, improves performance, and will make certificate reading
      more flexible in the future. This change is fully backwards compatible with the old method, and requires no changes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 13 22:09:11 UTC 2020
    - 549 bytes
    - Viewed (0)
  9. releasenotes/notes/istiod-cluster-metric.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
    - |
      **Added** a new metric (`istiod_managed_clusters`) to `istiod` to track the number of clusters managed by an
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 23 01:50:36 UTC 2021
    - 209 bytes
    - Viewed (0)
  10. samples/multicluster/expose-istiod-rev.yaml.tmpl

    kind: VirtualService
    metadata:
      name: istiod-vs-{{.Revision}}
    spec:
      hosts:
      - "*"
      gateways:
      - istiod-gateway
      tls:
      - match:
        - port: 15012
          sniHosts:
          - "istiod-{{.Revision}}.istio-system.svc"
          - "istiod-{{.Revision}}.istio-system.svc.cluster.local"
        route:
        - destination:
            host: istiod-{{.Revision}}.istio-system.svc.cluster.local
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 22 05:22:46 UTC 2021
    - 1.2K bytes
    - Viewed (0)
Back to top