Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,732 for END (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/documentation/docs/src/snippets/swift/swiftLibrary/groovy/build.gradle

    // tag::apply-plugin[]
    plugins {
        id 'swift-library'
    }
    // end::apply-plugin[]
    
    // tag::dependency-management[]
    library {
        dependencies {
            // FIXME: Write better deps here.
            api "io.qt:core:5.1"
            implementation "io.qt:network:5.1"
        }
    }
    // end::dependency-management[]
    
    // tag::configure-target-machines[]
    library {
        targetMachines = [
            machines.linux.x86_64,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 590 bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/templates/clusterrolebinding.yaml

      kind: ClusterRole
      name: istiod-gateway-controller{{- if not (eq .Values.revision "")}}-{{ .Values.revision }}{{- end }}-{{ .Release.Namespace }}
    subjects:
    - kind: ServiceAccount
      name: istiod{{- if not (eq .Values.revision "")}}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Values.global.istioNamespace }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 10 17:32:44 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/publishing/javaLibrary/kotlin/build.gradle.kts

                from(components["java"])
    // end::configure-publishing[]
                withBuildIdentifier()
    // tag::configure-publishing[]
            }
        }
    // end::enable-build-id[]
    
        repositories {
            maven {
                name = "myRepo"
                url = uri(layout.buildDirectory.dir("repo"))
            }
        }
    // tag::enable-build-id[]
    }
    // end::configure-publishing[]
    // end::enable-build-id[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java-platform/quickstart/groovy/build.gradle

    // tag::use-plugin[]
    plugins {
        id 'java-platform'
    }
    // end::use-plugin[]
    
    
    // tag::repo[]
    repositories {
        mavenCentral()
    }
    // end::repo[]
    
    // tag::constraints[]
    dependencies {
        constraints {
            api 'commons-httpclient:commons-httpclient:3.1'
            runtime 'org.postgresql:postgresql:42.2.5'
        }
    }
    // end::constraints[]
    
    // tag::platform[]
    // tag::allow-dependencies[]
    javaPlatform {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 554 bytes
    - Viewed (0)
  8. 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)
  9. manifests/charts/base/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)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-minify/kotlin/build.gradle.kts

            closeEntry()
    // tag::artifact-transform-minify[]
        }
    }
    // end::artifact-transform-minify[]
    
    // tag::artifact-transform-registration[]
    // tag::artifact-transform-attribute-setup[]
    val artifactType = Attribute.of("artifactType", String::class.java)
    val minified = Attribute.of("minified", Boolean::class.javaObjectType)
    // end::artifact-transform-attribute-setup[]
    val keepPatterns = mapOf(
        "guava" to setOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top