Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 161 - 170 of 822 for wire (0.03 seconds)

  1. tests/association_generics_test.go

    	if err != nil {
    		t.Fatalf("Set Update with multiple associations failed: %v", err)
    	}
    	// Only association operations were executed; no row update is expected
    	if rows != 0 {
    		t.Fatalf("expected 0 rows affected for association-only update, got %d", rows)
    	}
    
    	// Verify both associations were created using real database queries
    	AssertAssociationCount(t, &user, "Pets", 1, "after Set Update with multiple associations")
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Fri Sep 12 05:42:26 GMT 2025
    - 37.9K bytes
    - Click Count (0)
  2. docs/de/docs/advanced/settings.md

    {* ../../docs_src/settings/app02_an_py310/test_main.py hl[9:10,13,21] *}
    
    Bei der Abhängigkeitsüberschreibung legen wir einen neuen Wert für `admin_email` fest, wenn wir das neue `Settings`-Objekt erstellen, und geben dann dieses neue Objekt zurück.
    
    Dann können wir testen, ob das verwendet wird.
    
    ## Lesen einer `.env`-Datei { #reading-a-env-file }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/it/admin/DocumentsTests.java

            // Execute bulk create
            checkMethodBase(requestBody).put(API_PATH + "/" + BULK_ENDPOINT).then().body("response.status", equalTo(0));
            refresh();
    
            // Verify documents were created
            final Map<String, Object> searchBody = new HashMap<>();
            searchBody.put("size", 100);
            searchBody.put("q", NAME_PREFIX + "*");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  4. docs/fr/docs/advanced/index.md

    /// tip | Astuce
    
    Les sections suivantes ne sont **pas nécessairement « avancées »**.
    
    Et il est possible que, pour votre cas d'utilisation, la solution se trouve dans l'une d'entre elles.
    
    ///
    
    ## Lire d'abord le tutoriel { #read-the-tutorial-first }
    
    Vous pouvez utiliser la plupart des fonctionnalités de **FastAPI** grâce aux connaissances du [Tutoriel - Guide de l'utilisateur](../tutorial/index.md).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 908 bytes
    - Click Count (0)
  5. .ci/jobs.t/elastic+elasticsearch+periodic+platform-support.yml

        description: "Testing of the Elasticsearch %BRANCH% branch platform support tests.\n"
        project-type: multijob
        node: master
        vault: []
        scm:
          - git:
              wipe-workspace: false
        builders:
          - multijob:
              name: Packaging tests
              projects:
                - name: elastic+elasticsearch+%BRANCH%+multijob+platform-support-darwin
                  kill-phase-on: NEVER
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 1.2K bytes
    - Click Count (0)
  6. src/test/java/jcifs/smb/SmbFileOutputStreamTest.java

            byte[] data2 = "World".getBytes();
    
            // When
            outputStream.write(data1);
            outputStream.write(data2);
    
            // Then - verify two write requests were sent
            verify(mockTreeHandle, times(2)).send(any(Smb2WriteRequest.class), any());
        }
    
        @Test
        void testConstructorWithSmbFileOnly() throws IOException, CIFSException {
            // Given
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 15.8K bytes
    - Click Count (0)
  7. .ci/jobs.t/elastic+elasticsearch+multijob+platform-support-unix.yml

        display-name: "elastic / elasticsearch # %BRANCH% - unix compatibility"
        description: "Elasticsearch %BRANCH% unix compatibility testing.\n"
        project-type: matrix
        node: master
        scm:
          - git:
              wipe-workspace: false
        axes:
          - axis:
              type: label-expression
              name: os
              values:
                - "centos-7&&immutable"
                - "centos-8&&immutable"
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Sep 14 17:35:45 GMT 2021
    - 1.3K bytes
    - Click Count (0)
  8. docs/en/docs/history-design-future.md

    ## Development { #development }
    
    By the time I started creating **FastAPI** itself, most of the pieces were already in place, the design was defined, the requirements and tools were ready, and the knowledge about the standards and specifications was clear and fresh.
    
    ## Future { #future }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 4K bytes
    - Click Count (0)
  9. src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java

            // Securely wipe the modified session key
            SecureKeyManager.secureWipe(modifiedSessionKey);
    
            // Rotate keys using existing method
            rotateKeys(newEncryptionKey, newDecryptionKey);
    
            log.info("Automatic key rotation completed for session: {} (rotation count: {})", sessionId, rotationCount);
        }
    
        /**
         * Securely wipe encryption keys from memory
         */
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 35.5K bytes
    - Click Count (0)
  10. docs/fr/docs/advanced/security/index.md

    /// tip | Astuce
    
    Les sections suivantes **ne sont pas nécessairement « advanced »**.
    
    Et il est possible que, pour votre cas d’utilisation, la solution se trouve dans l’une d’entre elles.
    
    ///
    
    ## Lire d’abord le tutoriel { #read-the-tutorial-first }
    
    Les sections suivantes partent du principe que vous avez déjà lu le [Tutoriel - Guide utilisateur : Sécurité](../../tutorial/security/index.md) principal.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 829 bytes
    - Click Count (0)
Back to Top