Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 931 - 940 of 1,045 for certify (0.05 seconds)

  1. impl/maven-core/pom.xml

            <executions>
              <execution>
                <!--  <phase></phase> -->
                <goals>
                  <goal>integration-test</goal>
                  <goal>verify</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>com.github.siom79.japicmp</groupId>
            <artifactId>japicmp-maven-plugin</artifactId>
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Nov 26 10:37:56 GMT 2025
    - 16.9K bytes
    - Click Count (0)
  2. internal/hash/reader.go

    		r.sha256.Write(p[:n])
    	}
    	if r.contentHasher != nil {
    		r.contentHasher.Write(p[:n])
    	} else if r.ServerSideHasher != nil {
    		r.ServerSideHasher.Write(p[:n])
    	}
    
    	if err == io.EOF { // Verify content SHA256, if set.
    		if r.expectedMin > 0 {
    			if r.bytesRead < r.expectedMin {
    				return 0, SizeTooSmall{Want: r.expectedMin, Got: r.bytesRead}
    			}
    		}
    		if r.expectedMax > 0 {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Jun 25 15:08:54 GMT 2025
    - 11.8K bytes
    - Click Count (0)
  3. requirements_lock_3_13.txt

        --hash=sha256:05c70a234fa14c140aa6d9076135d9550962d95849911b8d5d0419a3add09f00 \
        --hash=sha256:31cbd8045d4ff6776f79bef328b5fd563e5ecc8ae82ea34b6fe5e76efe2a84eb
        # via -r ci/official/requirements_updater/requirements.in
    certifi==2025.1.31 \
        --hash=sha256:3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651 \
        --hash=sha256:ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe
        # via requests
    charset-normalizer==3.4.1 \
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Tue Apr 07 11:39:48 GMT 2026
    - 67.8K bytes
    - Click Count (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

    import static org.junit.Assert.assertThrows;
    import static org.mockito.Mockito.doThrow;
    import static org.mockito.Mockito.mock;
    import static org.mockito.Mockito.timeout;
    import static org.mockito.Mockito.verify;
    
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.J2ktIncompatible;
    import com.google.common.collect.ImmutableList;
    import com.google.common.reflect.Reflection;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 63K bytes
    - Click Count (0)
  5. cmd/bucket-policy-handlers_test.go

    		if err != nil {
    			t.Fatalf("Test %d: %s: Failed parsing response body: <ERROR> %v", i+1, instanceType, err)
    		}
    
    		if recV4.Code != testCase.expectedRespStatus {
    			// Verify whether the bucket policy fetched is same as the one inserted.
    			var expectedPolicy *policy.BucketPolicy
    			expectedPolicy, err = policy.ParseBucketPolicyConfig(strings.NewReader(expectedBucketPolicyStr), testCase.bucketName)
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 32.9K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            docs.add(doc2);
    
            setupMockComponents(docs);
    
            final String result = indexExportJob.execute();
    
            assertEquals("Exported 2 documents.", result);
    
            // Verify first document
            final Path file1 = tempDir.resolve("example.com/page1.html");
            assertTrue(Files.exists(file1));
            final String html1 = Files.readString(file1, StandardCharsets.UTF_8);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 09:08:38 GMT 2026
    - 66.1K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

            String sessionCountId3 = crawlingConfigHelper.store(sessionId, crawlingConfigHelper.getCrawlingConfig("W3"));
            assertEquals("testSession-3", sessionCountId3);
    
            // Verify stored configs
            assertEquals("1", crawlingConfigHelper.get(sessionCountId1).getId());
            assertEquals("2", crawlingConfigHelper.get(sessionCountId2).getId());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 35.3K bytes
    - Click Count (0)
  8. internal/s3select/sql/funceval.go

    	case int64:
    		return fmt.Sprintf("%v", x), nil
    	case string:
    		return x, nil
    	case []byte:
    		return string(x), nil
    	case bool:
    		return fmt.Sprintf("%v", x), nil
    	case nil:
    		// FIXME: verify this case is correct
    		return "NULL", nil
    	}
    	// This does not happen
    	return "", errCastFailure(fmt.Sprintf("cannot cast %v to string type", v.GetTypeString()))
    }
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 13.2K bytes
    - Click Count (0)
  9. src/test/java/jcifs/ntlmssp/av/AvPairsTest.java

                    4 + 4 + // AvTargetName header + data
                    4; // EOL
            assertEquals(expectedLength, encoded.length, "Encoded length should match expected");
    
            // Verify EOL at the end
            int eolPos = encoded.length - 4;
            assertEquals(AvPair.MsvAvEOL, SMBUtil.readInt2(encoded, eolPos), "Should end with EOL");
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 20.5K bytes
    - Click Count (0)
  10. docs/zh-hant/docs/tutorial/security/oauth2-jwt.md

    使用 `pwdlib`,你甚至可以把它設定為能讀取由 **Django**、**Flask** 的安全外掛或其他許多系統所建立的密碼。
    
    例如,你可以讓 Django 應用與 FastAPI 應用共用同一個資料庫中的資料。或者逐步遷移一個 Django 應用,同樣使用該資料庫。
    
    而你的使用者可以同時從 Django 應用或 **FastAPI** 應用登入。
    
    ///
    
    ## 雜湊與驗證密碼 { #hash-and-verify-the-passwords }
    
    從 `pwdlib` 匯入我們需要的工具。
    
    用建議設定建立一個 PasswordHash 執行個體——它會用於雜湊與驗證密碼。
    
    /// tip | 提示
    
    pwdlib 也支援 bcrypt 雜湊演算法,但不包含傳統(legacy)演算法——若需要處理過時的雜湊,建議使用 passlib 函式庫。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 10.1K bytes
    - Click Count (0)
Back to Top