Search Options

Results per page
Sort
Preferred Languages
Advance

Results 541 - 550 of 1,182 for CHECK (0.04 sec)

  1. cmd/erasure-healing.go

    			}
    			if err := healEntry(bucket, entry, scanMode); err != nil {
    				cancel()
    			}
    		},
    		partial: func(entries metaCacheEntries, _ []error) {
    			entry, ok := entries.resolve(&resolver)
    			if !ok {
    				// check if we can get one entry at least
    				// proceed to heal nonetheless.
    				entry, _ = entries.firstFound()
    			}
    			if !recursive && prefix != entry.name {
    				return
    			}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  2. okhttp/src/jvmMain/kotlin/okhttp3/internal/platform/ConscryptPlatform.kt

        val trustManagers =
          TrustManagerFactory
            .getInstance(TrustManagerFactory.getDefaultAlgorithm())
            .apply {
              init(null as KeyStore?)
            }.trustManagers!!
        check(trustManagers.size == 1 && trustManagers[0] is X509TrustManager) {
          "Unexpected default trust managers: ${trustManagers.contentToString()}"
        }
        val x509TrustManager = trustManagers[0] as X509TrustManager
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/NtlmAuthenticator.java

         * If this method returns <code>null</code> the <code>SmbAuthException</code> that triggered the authenticator check will simply be rethrown. The default implementation returns <code>null</code>.
         * @return the authentication credentials or null if none available
         */
        protected NtlmPasswordAuthentication getNtlmPasswordAuthentication() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  4. docs/em/docs/tutorial/query-params.md

    * `limit=10`: â†Šī¸ 👈 đŸ”ĸ 💲
    
    ## đŸ“Ļ đŸ”ĸ
    
    🎏 🌌, 👆 đŸ’Ē đŸ“Ŗ đŸ“Ļ đŸ”ĸ đŸ”ĸ, ⚒ đŸ‘Ģ đŸ”ĸ `None`:
    
    {* ../../docs_src/query_params/tutorial002.py hl[9] *}
    
    👉 đŸ’ŧ, đŸ”ĸ đŸ”ĸ `q` 🔜 đŸ“Ļ, &amp; 🔜 `None` đŸ”ĸ.
    
    /// check
    
    👀 👈 **FastAPI** 🙃 đŸĨƒ 👀 👈 ➡ đŸ”ĸ `item_id` ➡ đŸ”ĸ &amp; `q` đŸšĢ,, âšĢī¸ đŸ”ĸ đŸ”ĸ.
    
    ///
    
    ## đŸ”ĸ đŸ”ĸ 🆎 đŸ› ī¸
    
    👆 đŸ’Ē đŸ“Ŗ `bool` 🆎, &amp; đŸ‘Ģ 🔜 🗜:
    
    {* ../../docs_src/query_params/tutorial003.py hl[9] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/AllocInfoTest.java

            }
    
            @Test
            @DisplayName("Should support available space check pattern")
            void shouldSupportAvailableSpaceCheckPattern() {
                // Given
                TestAllocInfo allocInfo = new TestAllocInfo(1024L * 1024L, 512L * 1024L);
                long requiredSpace = 256L * 1024L;
    
                // When - check if enough space available
                boolean hasEnoughSpace = allocInfo.getFree() >= requiredSpace;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  6. cmd/sftp-server-driver.go

    	stopFn := globalSftpMetrics.log(r, f.AccessKey())
    	defer stopFn(0, err)
    
    	flags := r.Pflags()
    	if !flags.Read {
    		// sanity check
    		return nil, os.ErrInvalid
    	}
    
    	bucket, object := path2BucketObject(r.Filepath)
    	if bucket == "" {
    		return nil, errors.New("bucket name cannot be empty")
    	}
    
    	clnt, err := f.getMinIOClient()
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Feb 10 16:35:49 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzerTest.java

            assertNotNull(tokens);
            assertEquals(2, tokens.size());
            assertEquals("test", tokens.get(0).getTerm());
            assertEquals("text", tokens.get(1).getTerm());
            // Check that readings are added
            assertEquals("TEST", ((TestAnalyzeToken) tokens.get(0)).getReading());
            assertEquals("TEXT", ((TestAnalyzeToken) tokens.get(1)).getReading());
        }
    
        @Test
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 15.7K bytes
    - Viewed (0)
  8. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java

            // TODO use cache
        }
    
        /**
         * Checks if a URL has been visited by looking in both the queue and access results.
         *
         * @param urlQueue The URL queue entry to check.
         * @return true if the URL has been visited, false otherwise.
         */
        @Override
        public boolean visited(final OpenSearchUrlQueue urlQueue) {
            final String url = urlQueue.getUrl();
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 17K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/dependencies/index.md

    read_users["/users/"]
    
    common_parameters --> read_items
    common_parameters --> read_users
    ```
    
    This way you write shared code once and **FastAPI** takes care of calling it for your *path operations*.
    
    /// check
    
    Notice that you don't have to create a special class and pass it somewhere to **FastAPI** to "register" it or anything similar.
    
    You just pass it to `Depends` and **FastAPI** knows how to do the rest.
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  10. src/test/java/jcifs/util/PathValidatorTest.java

            // Test invalid server name with dots - caught by directory traversal check
            assertThrows(SmbException.class, () -> {
                validator.validatePath("\\\\..\\share");
            });
    
            // Test invalid characters in paths - caught by null byte check
            assertThrows(SmbException.class, () -> {
                // Null byte will be caught
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.6K bytes
    - Viewed (0)
Back to top