Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for isIdent (0.29 sec)

  1. manifests/charts/gateways/istio-egress/templates/poddisruptionbudget.yaml

      labels:
    {{ $gateway.labels | toYaml | trim | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "EgressGateways"
    spec:
      minAvailable: 1
      selector:
        matchLabels:
    {{ $gateway.labels | toYaml | trim | indent 6 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 664 bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/LightTreeUtil.kt

        node: LighterASTNode = root,
        indent: String = ""
    ) {
        val ref = Ref<Array<LighterASTNode?>>()
    
        getChildren(node, ref)
        val kidsArray = ref.get() ?: return
    
        for (kid in kidsArray) {
            if (kid == null) break
            kid.print(indent)
            print(kid, "\t$indent")
        }
    }
    
    
    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)
  3. manifests/charts/gateways/istio-ingress/templates/service.yaml

    {{- if $gateway.loadBalancerSourceRanges }}
      loadBalancerSourceRanges:
    {{ toYaml $gateway.loadBalancerSourceRanges | indent 4 }}
    {{- end }}
    {{- if $gateway.externalTrafficPolicy }}
      externalTrafficPolicy: {{$gateway.externalTrafficPolicy }}
    {{- end }}
      type: {{ $gateway.type }}
      selector:
    {{ $gateway.labels | toYaml | indent 4 }}
      ports:
    
        {{- range $key, $val := $gateway.ports }}
        -
          {{- range $pkey, $pval := $val }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/expressionTypeProvider/AbstractDeclarationReturnTypeTest.kt

            val actual = buildString {
                mainFile.accept(object : KtTreeVisitor<Int>() {
                    override fun visitDeclaration(declaration: KtDeclaration, indent: Int): Void? {
                        if (declaration is KtTypeParameter) return null
                        append(" ".repeat(indent))
                        if (declaration is KtClassLikeDeclaration) {
                            appendLine(declaration.getNameWithPositionString())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-ingress/templates/poddisruptionbudget.yaml

      labels:
    {{ $gateway.labels | toYaml | trim | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "IngressGateways"
    spec:
      minAvailable: 1
      selector:
        matchLabels:
    {{ $gateway.labels | toYaml | trim | indent 6 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 666 bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/common/source_code.cc

    #include "tensorflow/core/platform/stringpiece.h"
    
    namespace tensorflow {
    namespace generator {
    
    string SourceCode::Render() const {
      string code;
      for (const Line& line : lines_) {
        absl::StrAppend(&code, string(line.indent * spaces_per_indent_, ' '),
                        line.text, "\n");
      }
      return code;
    }
    
    void SourceCode::AddLineWithIndent(const string& line) {
      ValidateAndAddLine(current_indent_, line);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

            {{- end }}
            sidecar.istio.io/inject: "false"
            {{- if .Values.pilot.podAnnotations }}
    {{ toYaml .Values.pilot.podAnnotations | indent 8 }}
            {{- end }}
        spec:
    {{- if .Values.pilot.nodeSelector }}
          nodeSelector:
    {{ toYaml .Values.pilot.nodeSelector | indent 8 }}
    {{- end }}
    {{- with .Values.pilot.affinity }}
          affinity:
    {{- toYaml . | nindent 8 }}
    {{- end }}
          tolerations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. src/runtime/netpoll_kqueue_event.go

    	}
    }
    
    func isWakeup(ev *keventt) bool {
    	if ev.filter == _EVFILT_USER {
    		if ev.ident == kqIdent {
    			return true
    		}
    		println("runtime: netpoll: break fd ready for", ev.ident)
    		throw("runtime: netpoll: break fd ready for something unexpected")
    	}
    	return false
    }
    
    func drainWakeupEvent(kq int32) {
    	ev := keventt{
    		ident:  kqIdent,
    		filter: _EVFILT_USER,
    		flags:  _EV_DISABLE,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/net/http/routing_tree_test.go

    			}
    		})
    	}
    }
    
    func (n *routingNode) print(w io.Writer, level int) {
    	indent := strings.Repeat("    ", level)
    	if n.pattern != nil {
    		fmt.Fprintf(w, "%s%q\n", indent, n.pattern)
    	}
    	if n.emptyChild != nil {
    		fmt.Fprintf(w, "%s%q:\n", indent, "")
    		n.emptyChild.print(w, level+1)
    	}
    
    	var keys []string
    	n.children.eachPair(func(k string, _ *routingNode) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoUtils.kt

    
    fun prettyStringFromReflection(objectReflection: ObjectReflection): String {
        val visitedIdentity = mutableSetOf<OperationId>()
    
        fun StringBuilder.recurse(current: ObjectReflection, depth: Int) {
            fun indent() = "    ".repeat(depth)
            fun nextIndent() = "    ".repeat(depth + 1)
            when (current) {
                is ObjectReflection.ConstantValue -> append(
                    if (current.type is DataType.StringDataType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top