Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,303 for 27018 (0.03 sec)

  1. .teamcity/jdks.yaml

        version: "jdk-21.0.3+9"
        sha256: fffa52c22d797b715a962e6c8d11ec7d79b90dd819b5bc51d62137ea4b22a340
      - param: "linux.java22.openjdk.64bit"
        os: linux
        arch: amd64
        vendor: "temurin"
        version: "jdk-22.0.1+8"
        sha256: e59c6bf801cc023a1ea78eceb5e6756277f1564cd0a421ea984efe6cb96cfcf8
      - params: [ "windows.java8.openjdk.64bit", "windows.java8.oracle.64bit" ]
        os: windows
        arch: amd64
        vendor: "temurin"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. samples/bookinfo/platform/kube/bookinfo-db.yaml

    #   limitations under the License.
    
    apiVersion: v1
    kind: Service
    metadata:
      name: mongodb
      labels:
        app: mongodb
        service: mongodb
    spec:
      ports:
      - port: 27017
        name: mongo
      selector:
        app: mongodb
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: mongodb-v1
      labels:
        app: mongodb
        version: v1
    spec:
      replicas: 1
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/vcstest/svn/test2-svn-git.txt

    cmp stdout .git-log
    
    rm README
    
    svn add .git pkg
    svn commit -m 'git'
    svn propset svn:author rsc --revprop -r1
    svn propset svn:date 2017-09-27T18:00:52.201719Z --revprop -r1
    
    svn add p1
    svn commit -m 'add p1'
    svn propset svn:author rsc --revprop -r2
    svn propset svn:date 2017-09-27T18:16:14.650893Z --revprop -r2
    
    git remote set-url origin https://vcs-test.golang.org/git/README-only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/issue25008/issue25008b.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    type B interface {
        A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 198 bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/cpu_mipsx.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build mips || mipsle
    
    package cpu
    
    const cacheLineSize = 32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 248 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/issue26743/b.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package issue26743
    
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 206 bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testcshared/testdata/go2c2go/m1/c.c

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "libtestgo2c2go.h"
    
    int CFunc(void) {
    	return (GoFunc() << 8) + 2;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 238 bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testcshared/testdata/go2c2go/go/shlib.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import "C"
    
    //export GoFunc
    func GoFunc() int { return 1 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 249 bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/issue23555b/a.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package issue23555
    
    // #include <stdlib.h>
    import "C"
    
    func X() {
    	C.free(C.malloc(10))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 250 bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/issue27054/egl.h

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This is the relevant part of EGL/egl.h.
    
    typedef void *EGLDisplay;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 255 bytes
    - Viewed (0)
Back to top