Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 65 for BOGUS (0.03 sec)

  1. tests/integration/pilot/testdata/gateway.json

    {
      "apiVersion": "networking.istio.io/v1alpha3",
      "kind": "Gateway",
      "metadata": {
        "name": "httpbin-gateway-bogus"
      },
      "spec": {
        "selector": {
          "istio": "ingresstypo"
        },
        "servers": [
          {
            "port": {
              "number": 80,
              "name": "http",
              "protocol": "HTTP"
            },
            "hosts": [
              "*"
            ]
          }
        ]
      }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 29 03:04:35 UTC 2020
    - 390 bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/virtualservice_conflictingmeshgatewayhosts.yaml

    metadata:
      name: productpage
      namespace: foo
    spec:
      hosts:
      - productpage # should generate an error as this conflicts with VirtualService foo/bogus
      http:
      - route:
        - destination:
            host: productpage
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: bogus-productpage
      namespace: foo
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 15:13:29 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. test/fixedbugs/bug451.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    type T x.T // ERROR "undefined|expected package"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 28 15:30:30 UTC 2012
    - 273 bytes
    - Viewed (0)
  4. test/fixedbugs/issue13262.go

    // compile
    
    // Copyright 2016 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.
    
    // Issue 13262: cmd/compile: bogus "fallthrough
    // statement out of place" error
    
    package p
    
    func f() int {
    	var a int
    	switch a {
    	case 0:
    		return func() int { return 1 }()
    		fallthrough
    	default:
    	}
    	return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 26 15:46:44 UTC 2016
    - 386 bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/gateway.yaml

    # Gateway with bad selector
    #
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway-bogus
    spec:
      selector:
        istio: ingresstypo
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 29 03:04:35 UTC 2020
    - 263 bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/gateway-no-port.yaml

    # Gateway with bogus port
    #
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway
    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - "*"
      - port:
          number: 8004
          name: http2
          protocol: HTTP
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 347 bytes
    - Viewed (0)
  7. test/fixedbugs/bug256.go

    // errorcheck
    
    // Copyright 2010 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
    
    type T U	// bogus "invalid recursive type T" from 6g
    type U int
    
    const x T = 123
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 316 bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/ReportDaemonStatusClientTest.groovy

            1 * connection.dispatch({it instanceof Finished})
            1 * connection.stop()
    
            and:
            1 * connector.maybeConnect(daemon2) >>> connection
            _ * connection.daemon >> daemon2
            1 * connection.dispatch({it instanceof ReportStatus})
            1 * connection.receive() >> new Success(new Status(12346, "3.0", "BOGUS"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. hack/testdata/multi-resource-2.yaml

    # resources. The ConfigMap should successfully apply, while
    # the custom resource fails because the CRD is missing.
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: foo
    ---
    apiVersion: example.com/v1
    kind: Bogus
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 04 22:48:31 UTC 2020
    - 292 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_missing_repo.txt

    # Regression test for golang.org/issue/34094: modules hosted within gitlab.com
    # subgroups could not be fetched because the server returned bogus go-import
    # tags for prefixes of the module path.
    
    [short] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    ! go mod download vcs-test.golang.org/go/missingrepo/missingrepo-git@latest
    stderr 'vcs-test.golang.org/go/missingrepo/missingrepo-git: git ls-remote .*: exit status .*'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 534 bytes
    - Viewed (0)
Back to top