Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 137 for index (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/overview/quick_start.adoc

    <<partr1_gradle_init#part1_begin,-> Start the Tutorial >>
    
    [[reference]]
    === 3. API Reference
    
    Gradle's API references can be found in the links below:
    
    - link:{javadocPath}/index.html[Javadocs^]
    - link:{groovyDslPath}/index.html[Groovy DSL Reference^]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:58:37 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/settings_file_basics.adoc

    [[sec:settings_file_script]]
    == Settings script
    
    The settings file is a script.
    It is either a `settings.gradle` file written in Groovy or a `settings.gradle.kts` file in Kotlin.
    
    The link:{groovyDslPath}/index.html[Groovy DSL^] and the link:{kotlinDslPath}/index.html[Kotlin DSL^] are the only accepted languages for Gradle scripts.
    
    The settings file is typically found in the root directory of the project.
    
    Let's take a look at an example and break it down:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/templates/deployment.yaml

    {{- end}}
    {{- if ne $.ImagePullSecretName "" }}
          imagePullSecrets:
          - name: {{ $.ImagePullSecretName }}
    {{- end }}
          containers:
    {{- if and
      (ne (index $subset.Annotations "sidecar.istio.io/inject") "false")
      (ne (index $subset.Annotations "inject.istio.io/templates") "grpc")
      ($.OverlayIstioProxy)
    }}
          - name: istio-proxy
            image: auto
            imagePullPolicy: {{ $.ImagePullPolicy }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. src/runtime/sys_windows_amd64.s

    	CALL	AX
    	MOVQ	32(SP), SP
    
    	MOVQ	AX, CX	// TLS index
    
    	// Assert that slot is less than 64 so we can use _TEB->TlsSlots
    	CMPQ	CX, $64
    	JB	ok
    
    	// Fallback to the TEB arbitrary pointer.
    	// TODO: don't use the arbitrary pointer (see go.dev/issue/59824)
    	MOVQ	$TEB_ArbitraryPtr, CX
    	JMP	settls
    ok:
    	// Convert the TLS index at CX into
    	// an offset from TEB_TlsSlots.
    	SHLQ	$3, CX
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 07:24:08 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-egress/templates/service.yaml

    {{ $gateway := index .Values "gateways" "istio-egressgateway" }}
    {{- if not $gateway.customService }}
    apiVersion: v1
    kind: Service
    metadata:
      name: {{ $gateway.name }}
      namespace: {{ .Release.Namespace }}
      annotations:
        {{- range $key, $val := $gateway.serviceAnnotations }}
        {{ $key }}: {{ $val | quote }}
        {{- end }}
      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        release: {{ .Release.Name }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-ingress/templates/rolebindings.yaml

    {{ $gateway := index .Values "gateways" "istio-ingressgateway" }}
    apiVersion: rbac.authorization.k8s.io/v1
    kind: RoleBinding
    metadata:
      name: {{ $gateway.name }}-sds
      namespace: {{ .Release.Namespace }}
      labels:
        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"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 632 bytes
    - Viewed (0)
  7. manifests/charts/gateways/istio-egress/templates/rolebindings.yaml

    {{ $gateway := index .Values "gateways" "istio-egressgateway" }}
    apiVersion: rbac.authorization.k8s.io/v1
    kind: RoleBinding
    metadata:
      name: {{ $gateway.name }}-sds
      namespace: {{ .Release.Namespace }}
      labels:
        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"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 630 bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-egress/templates/autoscale.yaml

    {{ $gateway := index .Values "gateways" "istio-egressgateway" }}
    {{- if and $gateway.autoscaleEnabled $gateway.autoscaleMin $gateway.autoscaleMax }}
    apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
      name: {{ $gateway.name }}
      namespace: {{ .Release.Namespace }}
      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 949 bytes
    - Viewed (0)
  9. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    diff --git a/bits/utmp.h b/bits/utmp.h
    index 775123d..bf28c6d 100644
    --- a/bits/utmp.h
    +++ b/bits/utmp.h
    @@ -1,5 +1,5 @@
    -/* The `struct utmp' type, describing entries in the utmp file.  Generic/BSDish
    -   Copyright (C) 1993, 1996, 1997 Free Software Foundation, Inc.
    +/* The `struct utmp' type, describing entries in the utmp file.
    +   Copyright (C) 1993-2022 Free Software Foundation, Inc.
        This file is part of the GNU C Library.
     
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/build_file_basics.adoc

    [[sec:build_script]]
    == Build scripts
    
    The build script is either a `build.gradle` file written in Groovy or a `build.gradle.kts` file in Kotlin.
    
    The link:{groovyDslPath}/index.html[Groovy DSL^] and the link:{kotlinDslPath}/index.html[Kotlin DSL^] are the only accepted languages for Gradle scripts.
    
    Let's take a look at an example and break it down:
    
    ====
    [.multi-language-sample]
    =====
    .build.gradle.kts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top