Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 63 for 42e0 (0.03 sec)

  1. pilot/pkg/config/kube/ingress/testdata/overlay.yaml

                    port:
                      number: 4200
    ---
    apiVersion: networking.k8s.io/v1
    kind: Ingress
    metadata:
      name: foo2
      namespace: ns
    spec:
      rules:
        - host: foohost.bar.com
          http:
            paths:
              - path: /second
                backend:
                  service:
                    name: service2
                    port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 596 bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/ingress/testdata/overlay.yaml.golden

      - match:
        - uri:
            exact: /second
        route:
        - destination:
            host: service2.ns.svc.mydomain
            port:
              number: 4200
          weight: 100
      - route:
        - destination:
            host: service1.ns.svc.mydomain
            port:
              number: 4200
          weight: 100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 18:20:34 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. test/fixedbugs/bug465.go

    // rundir
    
    // Copyright 2012 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 4230: inlining bug for composite literal in
    // if, for, switch statements.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 272 bytes
    - Viewed (0)
  4. src/encoding/json/number_test.go

    		"-1",
    		"0.1",
    		"-0.1",
    		"1234",
    		"-1234",
    		"12.34",
    		"-12.34",
    		"12E0",
    		"12E1",
    		"12e34",
    		"12E-0",
    		"12e+1",
    		"12e-34",
    		"-12E0",
    		"-12E1",
    		"-12e34",
    		"-12E-0",
    		"-12e+1",
    		"-12e-34",
    		"1.2E0",
    		"1.2E1",
    		"1.2e34",
    		"1.2E-0",
    		"1.2e+1",
    		"1.2e-34",
    		"-1.2E0",
    		"-1.2E1",
    		"-1.2e34",
    		"-1.2E-0",
    		"-1.2e+1",
    		"-1.2e-34",
    		"0E0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 05:40:28 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/ingress/testdata/simple.yaml

    spec:
      rules:
      - host: foohost.bar.com
        http:
          paths:
            # Simple path
          - path: /path
            backend:
              service:
                name: service1
                port:
                  number: 4200
            # Subpath without trailing /
          - path: /sub/path
            backend:
              service:
                name: service1
                port:
                  number: 4201
          # With a trailing /
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. test/fixedbugs/bug458.go

    // compile
    
    // Copyright 2012 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 4200: 6g crashes when a type is larger than 4GB.
    
    package main
    
    import "unsafe"
    
    // N=16 on 32-bit arches, 256 on 64-bit arches.
    // On 32-bit arches we don't want to test types
    // that are over 4GB large.
    const N = 1 << unsafe.Sizeof(uintptr(0))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 513 bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/ingress/testdata/simple.yaml.golden

              number: 4205
          weight: 100
      - match:
        - uri:
            exact: /path
        route:
        - destination:
            host: service1.ns.svc.mydomain
            port:
              number: 4200
          weight: 100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 14 16:13:05 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  8. src/image/testdata/video-001.q50.420.jpeg

    video-001.q50.420.jpeg...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 3.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/import_main.txt

    env GO111MODULE=off
    
    # Test that you cannot import a main package.
    # See golang.org/issue/4210 and golang.org/issue/17475.
    
    [short] skip
    cd $WORK
    
    # Importing package main from that package main's test should work.
    go build x
    go test -c x
    
    # Importing package main from another package should fail.
    ! go build p1
    stderr 'import "x" is a program, not an importable package'
    
    # ... even in that package's test.
    go build p2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 18 21:48:16 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  10. src/image/testdata/video-001.q50.420.progressive.jpeg

    video-001.q50.420.progressive.jpeg...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 3.2K bytes
    - Viewed (0)
Back to top