Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,804 for 27018 (0.04 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/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)
  4. src/vendor/golang.org/x/net/route/empty.s

    // 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 darwin && go1.12
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 255 bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/cpu_mips64x.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 mips64 || mips64le
    
    package cpu
    
    const cacheLineSize = 32
    
    func initOptions() {
    	options = []option{
    		{Name: "msa", Feature: &MIPS64X.HasMSA},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 320 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testgodefs/testdata/fieldtypedef.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 ignore
    
    package main
    
    /*
    struct S1 { int f1; };
    struct S2 { struct S1 s1; };
    typedef struct S1 S1Type;
    typedef struct S2 S2Type;
    */
    import "C"
    
    type S1 C.S1Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 349 bytes
    - Viewed (0)
  7. src/internal/syscall/unix/asm_solaris.s

    // 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 "textflag.h"
    
    // System calls for Solaris are implemented in runtime/syscall_solaris.go
    
    TEXT ·syscall6(SB),NOSPLIT,$0-88
    	JMP	syscall·sysvicall6(SB)
    
    TEXT ·rawSyscall6(SB),NOSPLIT,$0-88
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 391 bytes
    - Viewed (0)
  8. src/internal/syscall/unix/at_sysnum_freebsd.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 unix
    
    import "syscall"
    
    const (
    	AT_EACCESS          = 0x100
    	AT_FDCWD            = -0x64
    	AT_REMOVEDIR        = 0x800
    	AT_SYMLINK_NOFOLLOW = 0x200
    
    	UTIME_OMIT = -0x2
    
    	unlinkatTrap       uintptr = syscall.SYS_UNLINKAT
    	openatTrap         uintptr = syscall.SYS_OPENAT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 03:38:07 UTC 2023
    - 497 bytes
    - Viewed (0)
  9. src/internal/syscall/unix/at_sysnum_dragonfly.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 unix
    
    import "syscall"
    
    const unlinkatTrap uintptr = syscall.SYS_UNLINKAT
    const openatTrap uintptr = syscall.SYS_OPENAT
    const fstatatTrap uintptr = syscall.SYS_FSTATAT
    
    const (
    	AT_EACCESS          = 0x4
    	AT_FDCWD            = 0xfffafdcd
    	AT_REMOVEDIR        = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:48:47 UTC 2023
    - 482 bytes
    - Viewed (0)
  10. src/internal/syscall/unix/at_sysnum_netbsd.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 unix
    
    import "syscall"
    
    const unlinkatTrap uintptr = syscall.SYS_UNLINKAT
    const openatTrap uintptr = syscall.SYS_OPENAT
    const fstatatTrap uintptr = syscall.SYS_FSTATAT
    
    const (
    	AT_EACCESS          = 0x100
    	AT_FDCWD            = -0x64
    	AT_REMOVEDIR        = 0x800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 14:13:33 UTC 2023
    - 492 bytes
    - Viewed (0)
Back to top