Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 441 - 450 of 1,478 for x$ (0.01 seconds)

  1. android/guava-tests/test/com/google/common/reflect/ReflectionTest.java

      }
    
      public void testNewProxy() throws Exception {
        Runnable runnable = Reflection.newProxy(Runnable.class, X_RETURNER);
        assertThat(runnable.toString()).isEqualTo("x");
      }
    
      public void testNewProxyCantWorkOnAClass() throws Exception {
        assertThrows(
            IllegalArgumentException.class, () -> Reflection.newProxy(Object.class, X_RETURNER));
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/hash/AbstractStreamingHasherTest.java

          assertEquals(expectedBytes / chunkSize, processCalled);
          assertEquals(expectedBytes % chunkSize != 0, remainingCalled);
        }
    
        // returns the minimum x such as x >= a && (x % b) == 0
        private static int ceilToMultiple(int a, int b) {
          int remainder = a % b;
          return remainder == 0 ? a : a + b - remainder;
        }
    
        void assertBytes(byte[] expected) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Oct 28 18:19:59 GMT 2025
    - 8.6K bytes
    - Click Count (0)
  3. scripts/coverage.sh

    #!/usr/bin/env bash
    
    set -e
    set -x
    
    coverage combine
    coverage report
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Oct 08 09:03:21 GMT 2025
    - 83 bytes
    - Click Count (0)
  4. docs_src/response_headers/tutorial002_py310.py

    from fastapi import FastAPI, Response
    
    app = FastAPI()
    
    
    @app.get("/headers-and-object/")
    def get_headers(response: Response):
        response.headers["X-Cat-Dog"] = "alone in the world"
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 222 bytes
    - Click Count (0)
  5. docs/zh-hant/docs/deployment/https.md

    /// note | 技術細節
    
    這些代理標頭包括:
    
    * [X-Forwarded-For](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/X-Forwarded-For)
    * [X-Forwarded-Proto](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/X-Forwarded-Proto)
    * [X-Forwarded-Host](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/X-Forwarded-Host)
    
    ///
    
    然而,因為**應用伺服器**並不知道自己在受信任的**代理**之後,預設情況下它不會信任這些標頭。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  6. src/cmd/asm/internal/asm/asm.go

    					Offset: p.getConstant(prog, op, &a[0]),
    				}
    
    			}
    
    			// Likewise, fixup usage like:
    			//   BC x,LT,...
    			//   BC x,foo+2,...
    			//   BC x,4
    			//   BC x,$5
    			// into
    			//   BC x,CR0LT,...
    			//   BC x,CR0EQ,...
    			//   BC x,CR1LT,...
    			//   BC x,CR1GT,...
    			// The first and second cases demonstrate a symbol name which is
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Mar 20 17:02:17 GMT 2026
    - 27.5K bytes
    - Click Count (0)
  7. src/main/java/jcifs/internal/smb2/lock/Smb2LeaseBreakAcknowledgment.java

            return 0;
        }
    
        @Override
        public String toString() {
            return String.format("Smb2LeaseBreakAcknowledgment[leaseKey=%s,leaseState=0x%x,flags=0x%x]", leaseKey, leaseState, flags);
        }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 23 02:21:31 GMT 2025
    - 4.2K bytes
    - Click Count (0)
  8. tests/test_compat.py

        field_info = FieldInfo(annotation=Union[None, list[str]])  # noqa: UP007
        field = v2.ModelField(name="items", field_info=field_info)
        result = v2.serialize_sequence_value(field=field, value=["x", "y"])
        assert result == ["x", "y"]
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  9. docs/changelogs/changelog_3x.md

        why we're doing this and how to upgrade.
    
        The OkHttp 3.12.x branch will be our long-term branch for Android 2.3+ (API level 9+) and Java
        7+. These platforms lack support for TLS 1.2 and should not be used. But because upgrading is
        difficult we will backport critical fixes to the 3.12.x branch through December 31, 2021. (This
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Click Count (0)
  10. .github/workflows/maven.yml

          - name: Checkout maven
            uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
            with:
              persist-credentials: false
    
          - name: Prepare Mimir for Maven 3.x
            shell: bash
            run: |
              mkdir -p ${{ env.MIMIR_BASEDIR }}
              cp .github/ci-mimir-session.properties ${{ env.MIMIR_BASEDIR }}/session.properties
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Mar 24 08:21:28 GMT 2026
    - 12.2K bytes
    - Click Count (0)
Back to Top