Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,732 for END (0.07 sec)

  1. manifests/charts/istiod-remote/templates/configmap.yaml

          metrics:
          {{ if $prom }}- prometheus{{ end }}
          {{ if and $sdMetrics $sdLogs }}- stackdriver{{ end }}
        {{- end }}
        {{- if and $sdMetrics $sdLogs }}
          accessLogging:
          - stackdriver
        {{- end }}
      {{- end }}
    
        defaultConfig:
          {{- if .Values.global.meshID }}
          meshId: "{{ .Values.global.meshID }}"
          {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/templates/deployment.yaml

    {{- else }}
              - --port={{ $p.Port }}
    {{- end }}
    {{- if $p.TLS }}
              - --tls={{ $p.Port }}
    {{- end }}
    {{- if $p.ServerFirst }}
              - --server-first={{ $p.Port }}
    {{- end }}
    {{- if $p.InstanceIP }}
              - --bind-ip={{ $p.Port }}
    {{- end }}
    {{- if $p.LocalhostIP }}
              - --bind-localhost={{ $p.Port }}
    {{- end }}
    {{- end }}
              - --version={{ $subset.Version }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. src/cmd/internal/edit/edit.go

    }
    
    func (b *Buffer) Delete(start, end int) {
    	if end < start || start < 0 || end > len(b.old) {
    		panic("invalid edit position")
    	}
    	b.q = append(b.q, edit{start, end, ""})
    }
    
    func (b *Buffer) Replace(start, end int, new string) {
    	if end < start || start < 0 || end > len(b.old) {
    		panic("invalid edit position")
    	}
    	b.q = append(b.q, edit{start, end, new})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 14:59:26 UTC 2017
    - 2.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/cover/profile.go

    func parseLine(l string) (fileName string, block ProfileBlock, err error) {
    	end := len(l)
    
    	b := ProfileBlock{}
    	b.Count, end, err = seekBack(l, ' ', end, "Count")
    	if err != nil {
    		return "", b, err
    	}
    	b.NumStmt, end, err = seekBack(l, ' ', end, "NumStmt")
    	if err != nil {
    		return "", b, err
    	}
    	b.EndCol, end, err = seekBack(l, '.', end, "EndCol")
    	if err != nil {
    		return "", b, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 17:02:03 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/templates/validatingwebhookconfiguration.yaml

          {{- else }}
          service:
            name: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
            namespace: {{ .Values.global.istioNamespace }}
            path: "/validate"
          {{- end }}
          {{- if .Values.base.validationCABundle }}
          caBundle: "{{ .Values.base.validationCABundle }}"
          {{- end }}
        rules:
          - operations:
              - CREATE
              - UPDATE
            apiGroups:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. manifests/charts/base/templates/services.yaml

      type: ExternalName
      externalName: {{ .Values.global.remotePilotAddress }}
      {{- end }}
    {{- if .Values.global.ipFamilyPolicy }}
      ipFamilyPolicy: {{ .Values.global.ipFamilyPolicy }}
    {{- end }}
    {{- if .Values.global.ipFamilies }}
      ipFamilies:
    {{- range .Values.global.ipFamilies }}
      - {{ . }}
    {{- end }}
    {{- end }}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:40 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/services.yaml

      type: ExternalName
      externalName: {{ .Values.global.remotePilotAddress }}
      {{- end }}
    {{- if .Values.global.ipFamilyPolicy }}
      ipFamilyPolicy: {{ .Values.global.ipFamilyPolicy }}
    {{- end }}
    {{- if .Values.global.ipFamilies }}
      ipFamilies:
    {{- range .Values.global.ipFamilies }}
      - {{ . }}
    {{- end }}
    {{- end }}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:40 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/groovy/quickstart/kotlin/build.gradle.kts

    // tag::all[]
    // tag::use-plugin[]
    plugins {
        // end::use-plugin[]
        // end::all[]
        eclipse
    // tag::all[]
    // tag::use-plugin[]
        groovy
    }
    // end::use-plugin[]
    
    // tag::groovy-dependency[]
    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation("org.codehaus.groovy:groovy-all:2.4.15")
    // end::groovy-dependency[]
    // end::all[]
        testImplementation("junit:junit:4.13")
    // tag::all[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 481 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/groovy/quickstart/groovy/build.gradle

    // tag::all[]
    // tag::use-plugin[]
    plugins {
    // end::use-plugin[]
    // end::all[]
        id 'eclipse'
    // tag::all[]
    // tag::use-plugin[]
        id 'groovy'
    }
    // end::use-plugin[]
    
    // tag::groovy-dependency[]
    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation 'org.codehaus.groovy:groovy-all:2.4.15'
    // end::groovy-dependency[]
    // end::all[]
        testImplementation 'junit:junit:4.13'
    // tag::all[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 481 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-resolutionStrategy/kotlin/build.gradle.kts

        implementation("com.opencsv:opencsv:4.6")
    }
    // end::dependencies[]
    
    // tag::fail-on-version-conflict[]
    configurations.all {
        resolutionStrategy {
            failOnVersionConflict()
        }
    }
    // end::fail-on-version-conflict[]
    
    // tag::fail-on-dynamic[]
    configurations.all {
        resolutionStrategy {
            failOnDynamicVersions()
        }
    }
    // end::fail-on-dynamic[]
    
    // tag::fail-on-changing[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 889 bytes
    - Viewed (0)
Back to top