Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,732 for END (0.02 sec)

  1. platforms/documentation/docs/src/snippets/files/copy/groovy/build.gradle

        into archiveReportsTask.dirToArchive
    }
    // end::copy-single-file-example-with-task-properties[]
    
    // tag::copy-multiple-files-example[]
    tasks.register('copyReportsForArchiving', Copy) {
        from layout.buildDirectory.file("reports/my-report.pdf"), layout.projectDirectory.file("src/docs/manual.pdf")
        into layout.buildDirectory.dir("toArchive")
    }
    // end::copy-multiple-files-example[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. src/html/template/clone_test.go

    	t3 := Must(t0.Clone())
    	Must(t3.Parse(`{{define "lhs"}} <style> {{end}}`))
    	Must(t3.Parse(`{{define "rhs"}} </style> {{end}}`))
    
    	// Complete t0.
    	Must(t0.Parse(`{{define "lhs"}} ( {{end}}`))
    	Must(t0.Parse(`{{define "rhs"}} ) {{end}}`))
    
    	// Clone t0 as t4. Redefining the "lhs" template should not fail.
    	t4 := Must(t0.Clone())
    	if _, err := t4.Parse(`{{define "lhs"}} OK {{end}}`); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 8K bytes
    - Viewed (0)
  3. helm/minio/templates/service.yaml

      {{- end }}
    spec:
      type: {{ .Values.service.type }}
      {{- if and (eq .Values.service.type "ClusterIP") .Values.service.clusterIP }}
      clusterIP: {{ .Values.service.clusterIP }}
      {{- end }}
      {{- if or (eq .Values.service.type "LoadBalancer") (eq .Values.service.type "NodePort") }}
      externalTrafficPolicy: {{ .Values.service.externalTrafficPolicy | quote }}
      {{- end }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:05:53 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/swift/basic/groovy/build.gradle

    // tag::apply-swift-plugin[]
    plugins {
        id 'swift-application' // or 'swift-library'
    }
    
    version = '1.2.1'
    // end::apply-swift-plugin[]
    
    // tag::swift-dependency-mgmt[]
    application {
        dependencies {
            implementation project(':common')
        }
    }
    // end::swift-dependency-mgmt[]
    
    // tag::swift-compiler-options-all-variants[]
    tasks.withType(SwiftCompile).configureEach {
        // Define a preprocessor macro for every binary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. samples/bookinfo/src/details/details.rb

          # Application-specific headers to forward.
          'end-user',
          'user-agent',
    
          # Context and session specific headers
          'cookie',
          'authorization',
          'jwt'
      ]
    
      request.each do |header, value|
        if incoming_headers.include? header then
          headers[header] = value
        end
      end
    
      return headers
    end
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

    {{- toYaml . | nindent 8 }}
    {{- end }}
    {{- with .Values.pilot.topologySpreadConstraints }}
          topologySpreadConstraints:
    {{- toYaml . | nindent 8 }}
    {{- end }}
          serviceAccountName: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
    {{- if .Values.global.priorityClassName }}
          priorityClassName: "{{ .Values.global.priorityClassName }}"
    {{- end }}
          containers:
            - name: discovery
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/mavenMigration/basic/kotlin/build.gradle.kts

    // tag::repositories[]
    repositories {
        mavenCentral()
    }
    // end::repositories[]
    
    // tag::compile-dependencies[]
    dependencies {
        implementation("log4j:log4j:1.2.12")  // <1>
    }
    // end::compile-dependencies[]
    
    // tag::pom-dependencies[]
    dependencies {
        testImplementation("org.codehaus.groovy:groovy-all:2.5.4")
    }
    // end::pom-dependencies[]
    
    // tag::process-resources[]
    tasks {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/providers/propertyConventionCallsites/kotlin/build.gradle.kts

                greeter.convention("Greeter")
            }
        }
    }
    // end::convention-callsites-from-plugin[]
    
    // tag::convention-callsites-from-buildscript[]
    apply<GreetingPlugin>()
    
    tasks.withType<GreetingTask>().configureEach {
        // setting convention from build script
        guest.convention("Guest")
    }
    // end::convention-callsites-from-buildscript[]
    
    abstract class GreetingTask : DefaultTask() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 16:56:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/files/archives/groovy/build.gradle

    // tag::zip[]
    // tag::tar[]
    plugins {
        id 'java'
    }
    
    // end::tar[]
    // end::zip[]
    
    // tag::unpack-archive-example[]
    tasks.register('unpackFiles', Copy) {
        from zipTree("src/resources/thirdPartyResources.zip")
        into layout.buildDirectory.dir("resources")
    }
    // end::unpack-archive-example[]
    
    // tag::unpack-archive-subset-example[]
    tasks.register('unpackLibsDirectory', Copy) {
    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. tools/packaging/common/gcp_envoy_bootstrap.json

        {{ end }}
        "cluster": "{{ .cluster }}",
        "locality": {
          {{ if .region }}
          "region": "{{ .region }}",
          {{ end }}
          {{ if .zone }}
          "zone": "{{ .zone }}",
          {{ end }}
          {{ if .sub_zone }}
          "sub_zone": "{{ .sub_zone }}",
          {{ end }}
        },
        "metadata": {{ .meta_json_str }}
      },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top