Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 134 for BOGUS (0.61 sec)

  1. maven-core/src/test/resources/projects/child-with-bogus-parent.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <model>
    
      <extend>${basedir}/bogus.xml</extend>
    
      <parent>
        <groupId>maven</groupId>
        <artifactId>bogus</artifactId>
        <version>1.0-beta-9</version>
      </parent>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 22:49:30 UTC 2007
    - 947 bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/authorizationpolicies.yaml

    kind: AuthorizationPolicy
    metadata:
      name: httpbin-nopods # Invalid: there aren't matching workloads for this selector
      namespace: httpbin
    spec:
      selector:
        matchLabels:
          app: bogus-label # Bogus label. No matching workloads
          version: v1
      rules:
        - from:
            - source:
                principals: ["cluster.local/ns/default/sa/sleep"]
            - source:
                namespaces: ["httpbin"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 08 14:14:46 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/virtualservice_gateways.yaml

      gateways:
      - httpbin-gateway # Expected: no validation error since this gateway exists
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: httpbin-bogus
    spec:
      hosts:
      - "*"
      gateways:
      - httpbin-gateway-bogus # Expected: validation error since this gateway does not exist
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: httpbin-mesh
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/util/exportto_test.go

    	g.Expect(IsExportToAllNamespaces([]string{"."})).To(Equal(false))
    
    	// Array with "." & "*"
    	g.Expect(IsExportToAllNamespaces([]string{".", "*"})).To(Equal(true))
    
    	// Array with "bogus"
    	g.Expect(IsExportToAllNamespaces([]string{"bogus"})).To(Equal(false))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/virtualservice_destinationrules.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews-bogussubset
      namespace: default
    spec:
      http:
      - route:
        - destination:
            host: reviews
            subset: bogus # This subset does not exist, should result in a validation error
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews-fqdn
      namespace: default
    spec:
      http:
      - route:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/gateway-correct-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:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 258 bytes
    - Viewed (0)
  7. test/fixedbugs/issue14520a.go

    // 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.
    
    package f
    
    import /* // ERROR "import path" */ `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 231 bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/virtualservice_destinationhosts.yaml

            - destination:
                host: hello.hello.svc.cluster.local
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: hello-export-to-bogus
      namespace: hello
    spec:
      hosts: [hello]
      exportTo:
        - bogus # This should generate an error, because the exportTo
      http:
        - route:
            - destination:
                host: hello.hello.svc.cluster.local
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. src/net/testdata/hosts

    255.255.255.255	broadcasthost
    127.0.0.2	odin
    127.0.0.3	odin  # inline comment 
    ::2             odin
    127.1.1.1	thor
    # aliases
    127.1.1.2	ullr ullrhost
    fe80::1%lo0	localhost
    # Bogus entries that must be ignored.
    123.123.123	loki
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 02:50:00 UTC 2015
    - 242 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/proxy/dial_test.go

    			TLSConfig: &tls.Config{InsecureSkipVerify: false, RootCAs: roots},
    		},
    		"secure with mismatched server": {
    			TLSConfig:   &tls.Config{InsecureSkipVerify: false, RootCAs: roots, ServerName: "bogus.com"},
    			ExpectError: "not bogus.com",
    		},
    		"secure with matched server": {
    			TLSConfig: &tls.Config{InsecureSkipVerify: false, RootCAs: roots, ServerName: "example.com"},
    		},
    
    		"insecure, custom dial": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top