Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 4,145 for END (0.03 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/attributeMatching/groovy/build.gradle

        exposedRuntime {
            canBeResolved = false
            assert canBeConsumed
        }
    }
    // end::setup-configurations[]
    
    // tag::define_attribute[]
    // An attribute of type `String`
    def myAttribute = Attribute.of("my.attribute.name", String)
    // An attribute of type `Usage`
    def myUsage = Attribute.of("my.usage.attribute", Usage)
    // end::define_attribute[]
    
    // tag::register-attributes[]
    dependencies.attributesSchema {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. pkg/config/schema/codegen/templates/clients.go.tmpl

    		}
    		w = func(options metav1.ListOptions) (watch.Interface, error) {
    			return c.{{.ClientGetter}}().{{ .ClientGroupPath }}().{{ .ClientTypePath }}({{if not .Resource.ClusterScoped}}opts.Namespace{{end}}).Watch(context.Background(), options)
    		}
    	{{- end }}
    {{- end }}
      default:
        panic(fmt.Sprintf("Unknown type %v", g))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/default.yaml

            name: istiod
            {{- else }}
            name: istiod-{{ .Values.defaultRevision }}
            {{- 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
    - 1.6K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/templates/service.yaml

        # This avoids default deployment picking the canary
        istio: pilot
        {{- end }}
      {{- if .Values.pilot.ipFamilyPolicy }}
      ipFamilyPolicy: {{ .Values.pilot.ipFamilyPolicy }}
      {{- end }}
      {{- if .Values.pilot.ipFamilies }}
      ipFamilies:
      {{- range .Values.pilot.ipFamilies }}
      - {{ . }}
      {{- end }}
      {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. helm/minio/templates/_helpers.tpl

        {{- else -}}
          {{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
        {{- end -}}
      {{- end -}}
    {{- end -}}
    
    {{/*
    Create chart name and version as used by the chart label.
    */}}
    {{- define "minio.chart" -}}
      {{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
    {{- end -}}
    
    {{/*
    Return the appropriate apiVersion for networkpolicy.
    */}}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/istiod-injector-configmap.yaml

    {{- end }}
    {{- if not (hasKey .Values.sidecarInjectorWebhook.templates "gateway") }}
          gateway: |
    {{ .Files.Get "files/gateway-injection-template.yaml" | trim | indent 8 }}
    {{- end }}
    {{- if not (hasKey .Values.sidecarInjectorWebhook.templates "grpc-simple") }}
          grpc-simple: |
    {{ .Files.Get "files/grpc-simple.yaml" | trim | indent 8 }}
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/templates/istiod-injector-configmap.yaml

    {{- end }}
    {{- if not (hasKey .Values.sidecarInjectorWebhook.templates "gateway") }}
          gateway: |
    {{ .Files.Get "files/gateway-injection-template.yaml" | trim | indent 8 }}
    {{- end }}
    {{- if not (hasKey .Values.sidecarInjectorWebhook.templates "grpc-simple") }}
          grpc-simple: |
    {{ .Files.Get "files/grpc-simple.yaml" | trim | indent 8 }}
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/groovy/build.gradle

    // tag::use-checkstyle-plugin[]
    // tag::use-codenarc-plugin[]
    // tag::use-pmd-plugin[]
    plugins {
    // end::use-checkstyle-plugin[]
    // end::use-codenarc-plugin[]
    // end::use-pmd-plugin[]
        id 'groovy'
    // tag::use-checkstyle-plugin[]
        id 'checkstyle'
    // end::use-checkstyle-plugin[]
    // tag::use-codenarc-plugin[]
        id 'codenarc'
    // end::use-codenarc-plugin[]
    // tag::use-pmd-plugin[]
        id 'pmd'
    // tag::use-checkstyle-plugin[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 14 14:22:49 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java/application/kotlin/build.gradle.kts

    // tag::use-plugin[]
    plugins {
        application
    }
    // end::use-plugin[]
    
    version = "1.0.2"
    
    // tag::applicationName-conf[]
    application.applicationName = "my-app"
    // end::applicationName-conf[]
    
    // tag::mainClass-conf[]
    application {
        mainClass = "org.gradle.sample.Main"
    }
    // end::mainClass-conf[]
    
    // tag::mainModule-conf[]
    application {
        mainModule = "org.gradle.sample.app" // name defined in module-info.java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt

          .assertLogEqual("--> END GET")
          .assertLogMatch(Regex("""<-- 200 OK $url \(\d+ms\)"""))
          .assertLogEqual("Content-Type: text/event-stream")
          .assertLogMatch(Regex("""Transfer-encoding: chunked"""))
          .assertLogEqual("<-- END HTTP (streaming)")
          .assertNoMoreLogs()
        applicationLogs
          .assertLogEqual("--> GET $url")
          .assertLogEqual("--> END GET")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 37.6K bytes
    - Viewed (0)
Back to top