Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,287 for 27018 (0.13 sec)

  1. pilot/pkg/xds/xds_test.go

    			Select("{.resources[?(@.address.socketAddress.portValue==27018)]}").
    			Equals("0.0.0.0", "{.address.socketAddress.address}").
    			// Example doing a struct comparison, note the pain with oneofs....
    			Equals(&core.SocketAddress{
    				Address: "0.0.0.0",
    				PortSpecifier: &core.SocketAddress_PortValue{
    					PortValue: uint32(27018),
    				},
    			}, "{.address.socketAddress}").
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. tests/testdata/config/se-example.yaml

    # Examples from the doc and site, in namespace examples
    # The 'egress' example conflicts, it's in separate namespace
    #
    # Ports:
    # - 27018 (mongo) - with VIP
    # - 443 - SNI routing
    # - 80 - *.bar.com resolution:NONE example
    #
    # - 8000 - virtual entry backed by multiple DNS-based services
    # - 8001 - unix domain socket
    #
    # - 1200 - the inbound service and
    # - 21200 - the inbound container
    #
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jun 27 15:20:03 UTC 2020
    - 5.3K bytes
    - Viewed (0)
  3. .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)
  4. 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)
  5. 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)
  6. src/cmd/go/testdata/mod/rsc.io_sampler_v1.3.0.txt

    require "golang.org/x/text" v0.0.0-20170915032832-14c0d48ead0c
    -- .info --
    {"Version":"v1.3.0","Name":"0cc034b51e57ed7832d4c67d526f75a900996e5c","Short":"0cc034b51e57","Time":"2018-02-13T19:05:03Z"}
    -- glass.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.
    
    // Translations from Frank da Cruz, Ethan Mollick, and many others.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 10 00:47:06 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/rsc.io_quote_v1.0.0.txt

    module "rsc.io/quote"
    -- quote.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 quote collects pithy sayings.
    package quote // import "rsc.io/quote"
    
    // Hello returns a greeting.
    func Hello() string {
    	return "Hello, world."
    }
    -- quote_test.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 916 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/rsc.io_quote_v1.5.2.txt

    -- buggy/buggy_test.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 buggy
    
    import "testing"
    
    func Test(t *testing.T) {
    	t.Fatal("buggy!")
    }
    -- go.mod --
    module "rsc.io/quote"
    
    require "rsc.io/sampler" v1.3.0
    -- quote.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/rsc.io_sampler_v1.3.1.txt

    require "golang.org/x/text" v0.0.0-20170915032832-14c0d48ead0c
    -- .info --
    {"Version":"v1.3.1","Name":"f545d0289d06e2add4556ea6a15fc4938014bf87","Short":"f545d0289d06","Time":"2018-02-14T16:34:12Z"}
    -- glass.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.
    
    // Translations from Frank da Cruz, Ethan Mollick, and many others.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180709160352-0d003b9c4bfa.txt

    -- buggy/buggy_test.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 buggy
    
    import "testing"
    
    func Test(t *testing.T) {
    	t.Fatal("buggy!")
    }
    -- go.mod --
    module rsc.io/quote
    
    require rsc.io/sampler v1.3.0
    -- quote.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
Back to top