Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1371 - 1380 of 1,959 for operativos (0.06 seconds)

  1. guava-testlib/src/com/google/common/collect/testing/testers/SortedMapNavigationTester.java

    import java.util.Iterator;
    import java.util.List;
    import java.util.Map.Entry;
    import java.util.NoSuchElementException;
    import java.util.SortedMap;
    import org.junit.Ignore;
    
    /**
     * A generic JUnit test which tests operations on a SortedMap. Can't be invoked directly; please see
     * {@code SortedMapTestSuiteBuilder}.
     *
     * @author Jesse Wilson
     * @author Louis Wasserman
     */
    @GwtCompatible
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 6.1K bytes
    - Click Count (0)
  2. src/main/java/jcifs/util/Crypto.java

    import jcifs.CIFSUnsupportedCryptoException;
    
    /**
     * Cryptographic utility class providing encryption and decryption functionality for jCIFS.
     * Handles security provider initialization and cryptographic operations for SMB authentication.
     *
     * @author mbechler
     */
    public final class Crypto {
    
        private static Provider provider = null;
    
        /**
         *
         */
        private Crypto() {
        }
    
        /**
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  3. src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationTest.java

        }
    
        @Test
        @DisplayName("Test object state after multiple operations")
        void testObjectStateAfterMultipleOperations() {
            trans2QueryFSInfo = new Trans2QueryFSInformation(config, FileSystemInformation.SMB_INFO_ALLOCATION);
    
            byte[] buffer = new byte[256];
    
            // Perform multiple operations
            for (int i = 0; i < 5; i++) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 18.9K bytes
    - Click Count (0)
  4. src/test/java/jcifs/internal/smb1/trans/TransWaitNamedPipeTest.java

            assertEquals(SmbComTransaction.TRANS_WAIT_NAMED_PIPE, transWaitNamedPipe.getSubCommand());
        }
    
        @Test
        @DisplayName("Multiple wire format operations should be consistent")
        void testMultipleWireFormatOperations() {
            // Arrange
            transWaitNamedPipe = new TransWaitNamedPipe(mockConfig, testPipeName);
            byte[] dst1 = new byte[10];
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 8.8K bytes
    - Click Count (0)
  5. src/test/java/jcifs/util/CryptoTest.java

            assertEquals(length, random2.length);
            // Very unlikely to be equal
            assertNotEquals(new String(random1), new String(random2));
        }
    
        @Test
        @DisplayName("Should handle AES encryption operations")
        void testAESOperations() throws Exception {
            // Given
            byte[] key = new byte[16]; // 128-bit key
            byte[] iv = new byte[16]; // 128-bit IV
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 7.4K bytes
    - Click Count (0)
  6. docs/ja/docs/advanced/response-cookies.md

    # レスポンスの Cookie { #response-cookies }
    
    ## `Response` パラメータを使う { #use-a-response-parameter }
    
    *path operation 関数*で `Response` 型のパラメータを宣言できます。
    
    そして、その*一時的*なレスポンスオブジェクトに Cookie を設定できます。
    
    {* ../../docs_src/response_cookies/tutorial002_py310.py hl[1, 8:9] *}
    
    その後は通常どおり、必要な任意のオブジェクト(`dict`、データベースモデルなど)を返せます。
    
    `response_model` を宣言している場合でも、返したオブジェクトは引き続きフィルタおよび変換されます。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  7. docs/ja/docs/how-to/graphql.md

    # GraphQL { #graphql }
    
    **FastAPI** は **ASGI** 標準に基づいているため、ASGI に対応した任意の **GraphQL** ライブラリを簡単に統合できます。
    
    同じアプリケーション内で通常の FastAPI の *path operation* と GraphQL を組み合わせて使えます。
    
    /// tip | 豆知識
    
    **GraphQL** は非常に特定のユースケースを解決します。
    
    一般的な **Web API** と比べると、**長所** と **短所** があります。
    
    ご自身のユースケースで得られる **利点** が **欠点** を補うかどうかを評価してください。 🤓
    
    ///
    
    ## GraphQL ライブラリ { #graphql-libraries }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  8. docs/ru/docs/tutorial/server-sent-events.md

    Так как Pydantic будет сериализовать это на стороне **Rust**, вы получите значительно более высокую **производительность**, чем если не объявите тип возврата.
    
    ///
    
    ### Несинхронные функции-обработчики пути { #non-async-path-operation-functions }
    
    Вы также можете использовать обычные функции `def` (без `async`) и применять `yield` тем же образом.
    
    FastAPI проследит, чтобы выполнение прошло корректно и не блокировало цикл событий.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 7.4K bytes
    - Click Count (0)
  9. internal/config/heal/heal.go

    type Config struct {
    	// Bitrot will perform bitrot scan on local disk when checking objects.
    	Bitrot string `json:"bitrotscan"`
    
    	// maximum sleep duration between objects to slow down heal operation.
    	Sleep   time.Duration `json:"sleep"`
    	IOCount int           `json:"iocount"`
    
    	DriveWorkers int `json:"drive_workers"`
    
    	// Cached value from Bitrot field
    	cache struct {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Mon Nov 04 19:06:02 GMT 2024
    - 4.9K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

        /**
         * Default constructor.
         */
        public FailureUrlService() {
            // Default constructor
        }
    
        /** Behavior class for FailureUrl entity operations */
        @Resource
        protected FailureUrlBhv failureUrlBhv;
    
        /** Configuration settings for Fess */
        @Resource
        protected FessConfig fessConfig;
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 9.2K bytes
    - Click Count (0)
Back to Top