Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 224 for sids (0.02 sec)

  1. CHANGELOG/CHANGELOG-1.19.md

    - Respect annotation size limit for server-side apply updates to the client-side apply annotation. Also, fix opt-out of this behavior by setting the client-side apply annotation to the empty string. ([#102105](https://github.com/kubernetes/kubernetes/pull/102105), [@julianvmodesto](https://github.com/julianvmodesto)) [SIG API Machinery]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
  2. docs/es/docs/advanced/response-cookies.md

    Así que tendrás que asegurarte de que tus datos son del tipo correcto. Por ejemplo, que sea compatible con JSON, si estás devolviendo un `JSONResponse`.
    
    Y también que no estés enviando ningún dato que debería haber sido filtrado por un `response_model`.
    
    ///
    
    ### Más información
    
    /// note | Detalles Técnicos
    
    También podrías usar `from starlette.responses import Response` o `from starlette.responses import JSONResponse`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. docs/pt/docs/advanced/response-cookies.md

    Portanto, você terá que garantir que seus dados sejam do tipo correto. E.g. será compatível com JSON se você estiver retornando um `JSONResponse`.
    
    E também que você não esteja enviando nenhum dado que deveria ter sido filtrado por um `response_model`.
    
    ///
    
    ### Mais informações
    
    /// note | Detalhes Técnicos
    
    Você também poderia usar `from starlette.responses import Response` ou `from starlette.responses import JSONResponse`.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/form-validator/security.js

    };a.formUtils.addAsyncValidator({name:"server",validatorFunction:function(a,b,c,d,e,g){var h=c.valAttr("url")||d.backendUrl||document.location.href;g.addClass("validating-server-side"),c.addClass("validating-server-side"),f(h,c,b,d,function(b){g.removeClass("validating-server-side"),c.removeClass("validating-server-side"),b.message&&c.attr(d.validationErrorMsgAttribute,b.message),a(b.valid)})},errorMessage:"",errorMessageKey:"badBackend"}),a.formUtils.addValidator({name:"letternumeric",validator...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 10.5K bytes
    - Viewed (1)
  5. src/test/java/jcifs/spnego/SpnegoConstantsTest.java

        // Simple OID format: numbers separated by dots (at least one dot)
        private static final Pattern OID_PATTERN = Pattern.compile("\\d+(?:\\.\\d+)+");
    
        @Test
        @DisplayName("Constant values match expected OIDs")
        void constantValues() {
            assertEquals("1.3.6.1.5.5.2", SpnegoConstants.SPNEGO_MECHANISM, "SPNEGO_MECHANISM mismatch");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.23.md

    - k8s.io/system-validators: v1.5.0 → v1.6.0
    - sigs.k8s.io/apiserver-network-proxy/konnectivity-client: v0.0.23 → v0.0.25
    - sigs.k8s.io/kustomize/api: v0.8.11 → v0.10.1
    - sigs.k8s.io/kustomize/cmd/config: v0.9.13 → v0.10.2
    - sigs.k8s.io/kustomize/kustomize/v4: v4.2.0 → v4.4.1
    - sigs.k8s.io/kustomize/kyaml: v0.11.0 → v0.13.0
    - sigs.k8s.io/structured-merge-diff/v4: v4.1.2 → v4.2.0
    
    ### Removed
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/CommonServerMessageBlockTest.java

        }
    
        @Test
        @DisplayName("Test setUid with boundary values")
        void testSetUidWithBoundaryValues() {
            // Test with various uid values
            int[] uids = { 0, 1, Integer.MAX_VALUE, Integer.MIN_VALUE };
    
            for (int uid : uids) {
                doNothing().when(messageBlock).setUid(uid);
                messageBlock.setUid(uid);
                verify(messageBlock).setUid(uid);
            }
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Predicate.java

       * class documentation above). This method is <i>generally expected</i>, but not absolutely
       * required, to have the following properties:
       *
       * <ul>
       *   <li>Its execution does not cause any observable side effects.
       *   <li>The computation is <i>consistent with equals</i>; that is, {@link Objects#equal
       *       Objects.equal}{@code (a, b)} implies that {@code predicate.apply(a) ==
       *       predicate.apply(b))}.
       * </ul>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jun 18 15:22:00 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.20.md

    - Respect annotation size limit for server-side apply updates to the client-side apply annotation. Also, fix opt-out of this behavior by setting the client-side apply annotation to the empty string. ([#102105](https://github.com/kubernetes/kubernetes/pull/102105), [@julianvmodesto](https://github.com/julianvmodesto)) [SIG API Machinery]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb/Kerb5ContextTest.java

        @MethodSource("supportedMechs")
        @DisplayName("isSupported returns true for supported OIDs")
        void isSupported_supportedOids(ASN1ObjectIdentifier oid) {
            assertTrue(ctx.isSupported(oid));
            assertTrue(ctx.isPreferredMech(oid));
        }
    
        @Test
        @DisplayName("isSupported returns false for null/unknown OIDs")
        void isSupported_unknownOrNull() {
            assertFalse(ctx.isSupported(null));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.2K bytes
    - Viewed (0)
Back to top