Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 148 for x204 (0.13 sec)

  1. pilot/pkg/config/kube/ingress/testdata/simple.yaml.golden

            port:
              number: 4208
          weight: 100
      - match:
        - uri:
            exact: /regex2*
        route:
        - destination:
            host: service1.ns.svc.mydomain
            port:
              number: 4204
          weight: 100
      - match:
        - uri:
            prefix: /regex1
        route:
        - destination:
            host: service1.ns.svc.mydomain
            port:
              number: 4203
          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)
  2. src/runtime/internal/sys/intrinsics.go

    // TrailingZeros8 returns the number of trailing zero bits in x; the result is 8 for x == 0.
    func TrailingZeros8(x uint8) int {
    	return int(ntz8tab[x])
    }
    
    const len8tab = "" +
    	"\x00\x01\x02\x02\x03\x03\x03\x03\x04\x04\x04\x04\x04\x04\x04\x04" +
    	"\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05" +
    	"\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06" +
    	"\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:45 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/ingress/testdata/simple.yaml

                port:
                  number: 4203
          # Regex ending with *
          - path: /regex2*
            backend:
              service:
                name: service1
                port:
                  number: 4204
          # Regex ending with /*
          - path: /regex3/*
            backend:
              service:
                name: service1
                port:
                  number: 4205
          # Subpath without trailing /, Exact match
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. tests/test_starlette_exception.py

    
    @app.get("/http-no-body-statuscode-exception")
    async def no_body_status_code_exception():
        raise HTTPException(status_code=204)
    
    
    @app.get("/http-no-body-statuscode-with-detail-exception")
    async def no_body_status_code_with_detail_exception():
        raise HTTPException(status_code=204, detail="I should just disappear!")
    
    
    @app.get("/starlette-items/{item_id}")
    async def read_starlette_item(item_id: str):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/fiat/p256_fiat64.go

    	x16 := (x14 >> 8)
    	x17 := (uint8(x16) & 0xff)
    	x18 := uint8((x16 >> 8))
    	x19 := (uint8(x3) & 0xff)
    	x20 := (x3 >> 8)
    	x21 := (uint8(x20) & 0xff)
    	x22 := (x20 >> 8)
    	x23 := (uint8(x22) & 0xff)
    	x24 := (x22 >> 8)
    	x25 := (uint8(x24) & 0xff)
    	x26 := (x24 >> 8)
    	x27 := (uint8(x26) & 0xff)
    	x28 := (x26 >> 8)
    	x29 := (uint8(x28) & 0xff)
    	x30 := (x28 >> 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 41.2K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/CallKotlinTest.kt

            sink.writeUtf8("<element/>")
            sink.flush()
          }
        }
    
        server.enqueue(MockResponse(code = 201))
        server.enqueue(MockResponse(code = 204))
        server.enqueue(MockResponse(code = 204))
    
        val endpointUrl = server.url("/endpoint")
    
        var request =
          Request.Builder()
            .url(endpointUrl)
            .header("Content-Type", "application/xml")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. test/fixedbugs/bug369.dir/main.go

    	speedup := float64(tslow) / float64(tfast)
    	want := 1.8
    	if runtime.GOARCH == "arm" {
    		want = 1.3
    	}
    	if speedup < want {
    		// TODO(rsc): doesn't work on linux-amd64 or darwin-amd64 builders, nor on
    		// a Lenovo x200 (linux-amd64) laptop.
    		// println("fast:", tfast, "slow:", tslow, "speedup:", speedup, "want:", want)
    		// println("not fast enough")
    		// os.Exit(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 19:54:30 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  8. ci/official/containers/linux_arm64/builder.patchelf/build_patchelf.sh

    # limitations under the License.
    # ==============================================================================
    
    # Need a newer version of patchelf as the installed version is buggy in 20.04
    # so get patchelf source from 22.04 ie 'jammy' and build it to avoid dependency
    # problems that would occur with a binary package
    
    mkdir -p /patchelf
    cd /patchelf
    echo deb-src http://ports.ubuntu.com/ubuntu-ports/ jammy universe>>/etc/apt/sources.list
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 15:53:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/fiat/p224_fiat64.go

    	var x200 uint64
    	p224CmovznzU64(&x200, p224Uint1(x199), x190, x181)
    	var x201 uint64
    	p224CmovznzU64(&x201, p224Uint1(x199), x192, x183)
    	var x202 uint64
    	p224CmovznzU64(&x202, p224Uint1(x199), x194, x185)
    	var x203 uint64
    	p224CmovznzU64(&x203, p224Uint1(x199), x196, x187)
    	out1[0] = x200
    	out1[1] = x201
    	out1[2] = x202
    	out1[3] = x203
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 43.2K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go

    	"\x04>\x03\b\x00\x00\x04\xe7" + // 0x043E0308: 0x000004E7
    	"\x04\xe8\x03\b\x00\x00\x04\xea" + // 0x04E80308: 0x000004EA
    	"\x04\xe9\x03\b\x00\x00\x04\xeb" + // 0x04E90308: 0x000004EB
    	"\x04-\x03\b\x00\x00\x04\xec" + // 0x042D0308: 0x000004EC
    	"\x04M\x03\b\x00\x00\x04\xed" + // 0x044D0308: 0x000004ED
    	"\x04#\x03\x04\x00\x00\x04\xee" + // 0x04230304: 0x000004EE
    	"\x04C\x03\x04\x00\x00\x04\xef" + // 0x04430304: 0x000004EF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 376.8K bytes
    - Viewed (0)
Back to top