Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 9,246 for Versions (0.32 sec)

  1. samples/helloworld/gateway-api/helloworld-versions.yaml

    metadata:
      name: helloworld-v1
    spec:
      ports:
      - port: 5000
        name: http
      selector:
        app: helloworld
        version: v1
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: helloworld-v2
    spec:
      ports:
      - port: 5000
        name: http
      selector:
        app: helloworld
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 15 22:24:09 UTC 2022
    - 312 bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions.yaml

    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: foo-bar-rev-a
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: foo
          version: bar
      template:
        metadata:
          labels:
            app: foo
            version: bar
            test.istio.io/class: standard
            istio.io/rev: rev-a
          annotations:
            prometheus.io/scrape: "true"
            prometheus.io/port: "15014"
        spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. samples/bookinfo/platform/kube/bookinfo-versions.yaml

      selector:
        app: reviews
        version: v3
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: productpage-v1
    spec:
      ports:
      - port: 9080
        name: http
      selector:
        app: productpage
        version: v1
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: ratings-v1
    spec:
      ports:
      - port: 9080
        name: http
      selector:
        app: ratings
        version: v1
    ---
    apiVersion: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 11 16:27:45 UTC 2022
    - 920 bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/library-versions.properties

    #Generated file, please do not edit - Version values used in build-init templates
    commons-math=3.6.1
    commons-text=1.12.0
    groovy=3.0.21
    guava=33.2.1-jre
    junit-jupiter=5.10.2
    junit=4.13.2
    kotlin=2.0.0
    scala-library=2.13.14
    scala-xml=1.2.0
    scala=2.13
    scalatest=3.2.18
    scalatestplus-junit=3.2.2.0
    slf4j=2.0.13
    spock=2.2-groovy-3.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 340 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/groovy/gradle/test-libs.versions.toml

    [versions]
    common = "1.4"
    
    [libraries]
    my-lib = "com.mycompany:mylib:1.4"
    my-lib-no-version.module = "com.mycompany:mylib"
    my-other-lib = { module = "com.mycompany:other", version = "1.4" }
    my-other-lib2 = { group = "com.mycompany", name = "alternate", version = "1.4" }
    mylib-full-format = { group = "com.mycompany", name = "alternate", version = { require = "1.4" } }
    
    [plugins]
    short-notation = "some.plugin.id:1.4"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 03:39:11 UTC 2024
    - 549 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/kotlin/gradle/test-libs.versions.toml

    [versions]
    common = "1.4"
    
    [libraries]
    my-lib = "com.mycompany:mylib:1.4"
    my-lib-no-version.module = "com.mycompany:mylib"
    my-other-lib = { module = "com.mycompany:other", version = "1.4" }
    my-other-lib2 = { group = "com.mycompany", name = "alternate", version = "1.4" }
    mylib-full-format = { group = "com.mycompany", name = "alternate", version = { require = "1.4" } }
    
    [plugins]
    short-notation = "some.plugin.id:1.4"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 03:39:11 UTC 2024
    - 549 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/performance/dependency-dynamic-versions.png

    dependency-dynamic-versions.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 69.8K bytes
    - Viewed (0)
  8. buildscripts/heal-inconsistent-versions.sh

    		sudo chown -R root. "${WORK_DIR}/disk${i}"
    
    		"${PWD}/mc" cp /etc/hosts minio/bucket/testobj
    
    		sudo chown -R ${USER}. "${WORK_DIR}/disk${i}"
    	done
    
    	for vid in $("${PWD}/mc" ls --json --versions minio/bucket/testobj | jq -r .versionId); do
    		"${PWD}/mc" cat --vid "${vid}" minio/bucket/testobj | md5sum
    	done
    
    	pkill minio
    	sleep 3
    }
    
    function main() {
    	start_port=$(shuf -i 10000-65000 -n 1)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 26 05:07:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. build-logic/build-update-utils/src/main/kotlin/gradlebuild.update-versions.gradle.kts

        currentReleasedVersion = project.provider {
            val jsonText = URL("https://services.gradle.org/versions/nightly").readText()
            println(jsonText)
            val versionInfo = Gson().fromJson(jsonText, VersionBuildTimeInfo::class.java)
            ReleasedVersion(versionInfo.version, versionInfo.buildTime)
        }
    }
    
    tasks.register<UpdateAgpVersions>("updateAgpVersions") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:17:36 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. buildscripts/resolve-right-versions.sh

    Harshavardhana <******@****.***> 1692197493 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Aug 16 14:51:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top