Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,732 for END (0.03 sec)

  1. platforms/documentation/docs/src/snippets/ivy-publish/quickstart/kotlin/build.gradle.kts

    // tag::use-plugin[]
    plugins {
    // end::use-plugin[]
        java
    // tag::use-plugin[]
        `ivy-publish`
    }
    // end::use-plugin[]
    
    group = "org.gradle.sample"
    version = "1.0"
    
    // tag::publish-component[]
    // tag::repositories[]
    publishing {
        // end::repositories[]
        publications {
            create<IvyPublication>("ivyJava") {
                from(components["java"])
            }
        }
    // end::publish-component[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 683 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java-feature-variant/producer-separate-sourceset/groovy/build.gradle

            usingSourceSet(sourceSets.mongodbSupport)
    // end::register_variant[]
            withJavadocJar()
            withSourcesJar()
    // tag::register_variant2[]
        }
    }
    // end::register_variant2[]
    // end::register_variant_extra_jars[]
    
    // tag::variant_dependencies[]
    dependencies {
        mongodbSupportImplementation 'org.mongodb:mongodb-driver-sync:3.9.1'
    }
    // end::variant_dependencies[]
    
    // tag::publishing[]
    publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 05:16:22 UTC 2023
    - 946 bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/templates/serviceaccount.yaml

    apiVersion: v1
    kind: ServiceAccount
      {{- if .Values.global.imagePullSecrets }}
    imagePullSecrets:
      {{- range .Values.global.imagePullSecrets }}
      - name: {{ . }}
      {{- end }}
      {{- end }}
    metadata:
      name: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Values.global.istioNamespace }}
      labels:
        app: istiod
        release: {{ .Release.Name }}
      {{- if .Values.pilot.serviceAccountAnnotations }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 01:52:23 UTC 2024
    - 542 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/artifacts/defineRepository/groovy/build.gradle

                header(HttpHeaderAuthentication)
            }
        }
    }
    // end::header-authenticated-maven-repo[]
    
    // tag::flat-dir[]
    // tag::flat-dir-multi[]
    repositories {
        flatDir {
            dirs 'lib'
        }
    // end::flat-dir[]
        flatDir {
            dirs 'lib1', 'lib2'
        }
    // tag::flat-dir[]
    }
    // end::flat-dir[]
    // end::flat-dir-multi[]
    
    // tag::ivy-repo[]
    repositories {
        ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/templates/autoscale.yaml

          name: memory
          target:
            type: Utilization
            averageUtilization: {{ .Values.pilot.memory.targetAverageUtilization }}
      {{- end }}
      {{- if .Values.pilot.autoscaleBehavior }}
      behavior: {{ toYaml .Values.pilot.autoscaleBehavior | nindent 4 }}
      {{- end }}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/files/copy/kotlin/build.gradle.kts

    import org.apache.tools.ant.filters.FixCrLfFilter
    import org.apache.tools.ant.filters.ReplaceTokens
    // end::filter-files[]
    
    version = "1.1"
    
    // tag::copy-single-file-example[]
    tasks.register<Copy>("copyReport") {
        from(layout.buildDirectory.file("reports/my-report.pdf"))
        into(layout.buildDirectory.dir("toArchive"))
    }
    // end::copy-single-file-example[]
    
    abstract class MyReportTask : DefaultTask() {
        @get:OutputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Decoder.java

         *
         * @throws EOFException when the end of the byte stream is reached before the long value can be fully read.
         */
        long readLong() throws EOFException, IOException;
    
        /**
         * Reads a signed 64 bit int value. Can read any value that was written using {@link Encoder#writeSmallLong(long)}.
         *
         * @throws EOFException when the end of the byte stream is reached before the int value can be fully read.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/files/gateway-injection-template.yaml

              {{- range $index2, $p := $c.Ports }}
                {{- if (structToJSON $p) }}
                {{if not $first}},{{end}}{{ structToJSON $p }}
                {{- $first = false }}
                {{- end }}
              {{- end}}
            {{- end}}
            ]
        - name: GOMEMLIMIT
          valueFrom:
            resourceFieldRef:
              resource: limits.memory
        - name: GOMAXPROCS
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/providers/services/groovy/build.gradle

    }
    
    tasks.register("myInjectedObjectFactoryTask",MyObjectFactoryTask) {}
    // end::object-factory-inject[]
    
    // tag::project-layout[]
    tasks.register('showLayout') {
        doLast {
            def layout = project.layout
            println "Project Directory: ${layout.projectDirectory}"
            println "Build Directory: ${layout.buildDirectory.get()}"
        }
    }
    // end::project-layout[]
    
    // tag::project-layout-inject[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tasks/inputNormalizationMetaInf/groovy/build.gradle

            metaInf {
                ignoreAttribute("Implementation-Version")
            }
        }
    }
    // end::ignore-metainf-attribute[]
    
    // tag::ignore-metainf-properties[]
    normalization {
        runtimeClasspath {
            metaInf {
                ignoreProperty("app.version")
            }
        }
    }
    // end::ignore-metainf-properties[]
    
    // tag::ignore-metainf-manifest[]
    normalization {
        runtimeClasspath {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 768 bytes
    - Viewed (0)
Back to top