Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 220 for 119s (0.03 sec)

  1. samples/ambient-argo/istio/tags.yaml

        helm:
          valuesObject:
            base:
              tags:
                default:
                  revision: "1-18-5"
                stable:
                  revision: "1-18-5"
                rapid:
                  revision: "1-19-3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 754 bytes
    - Viewed (0)
  2. .github/workflows/multipart/docker-compose-site2.yaml

          - site2-data3-2:/data2
    
      site2-minio4:
        <<: *minio-common
        hostname: site2-minio4
        volumes:
          - site2-data4-1:/data1
          - site2-data4-2:/data2
    
      site2-nginx:
        image: nginx:1.19.2-alpine
        hostname: site2-nginx
        volumes:
          - ./nginx-site2.conf:/etc/nginx/nginx.conf:ro
        ports:
          - "9002:9002"
        depends_on:
          - site2-minio1
          - site2-minio2
          - site2-minio3
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 30 10:13:56 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/events/v1/zz_generated.prerelease-lifecycle.go

    	return 1, 19
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *EventList) APILifecycleIntroduced() (major, minor int) {
    	return 1, 19
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/certificates/v1/zz_generated.prerelease-lifecycle.go

    	return 1, 19
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *CertificateSigningRequestList) APILifecycleIntroduced() (major, minor int) {
    	return 1, 19
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/work_goproxy_off.txt

    -- example.go --
    package example
    
    import _ "rsc.io/sampler"
    -- go.mod --
    module example
    
    go 1.19
    
    require rsc.io/sampler v1.3.0
    
    require (
    	golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c // indirect
    	rsc.io/testonly v1.0.0 // indirect
    )
    -- sub/go.mod --
    module example/sub
    
    go 1.19
    
    require rsc.io/quote v1.5.1
    
    require (
    	golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c // indirect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 14 19:05:09 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_retract_noupgrade_v1.0.0.txt

    -- .mod --
    module example.com/retract/noupgrade
    
    go 1.19
    
    retract v1.0.0 // bad
    
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 20:57:09 UTC 2022
    - 114 bytes
    - Viewed (0)
  7. releasenotes/notes/drop-118-ingress.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 218 bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS___OPPT                          = 0x4A6 // 1190
    	SYS___SIGGM                         = 0x4A7 // 1191
    	SYS___DGHT                          = 0x4A8 // 1192
    	SYS___TZNE                          = 0x4A9 // 1193
    	SYS___TZZN                          = 0x4AA // 1194
    	SYS___TRRNO                         = 0x4AF // 1199
    	SYS___ENVN                          = 0x4B0 // 1200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_use_issue55952.txt

    ! go list .
    stderr '^go: cannot load module y listed in go\.work file: open y'${/}'go\.mod:'
    
    -- go.work --
    use ./y
    -- x/go.mod --
    module x
    
    go 1.19
    -- x/m.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 172 bytes
    - Viewed (0)
  10. docs/orchestration/docker-compose/docker-compose.yaml

        volumes:
          - data3-1:/data1
          - data3-2:/data2
    
      minio4:
        <<: *minio-common
        hostname: minio4
        volumes:
          - data4-1:/data1
          - data4-2:/data2
    
      nginx:
        image: nginx:1.19.2-alpine
        hostname: nginx
        volumes:
          - ./nginx.conf:/etc/nginx/nginx.conf:ro
        ports:
          - "9000:9000"
          - "9001:9001"
        depends_on:
          - minio1
          - minio2
          - minio3
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 05:40:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top