- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for base16 (0.06 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/JcifsEngine.java
* @return the Base64-encoded Type 1 message * @throws NTLMEngineException if an NTLM engine error occurs */ @Override public String generateType1Msg(final String domain, final String workstation) throws NTLMEngineException { final Type1Message type1Message = new Type1Message(cifsContext, TYPE_1_FLAGS, domain, workstation); return Base64.getEncoder().encodeToString(type1Message.toByteArray());
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 4.3K bytes - Viewed (0) -
cmd/erasure-multipart.go
// // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import ( "context" "encoding/base64" "errors" "fmt" "io" "os" "path" "sort" "strconv" "strings" "sync" "time" "github.com/klauspost/readahead" "github.com/minio/minio-go/v7/pkg/set"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Sep 07 16:13:09 UTC 2025 - 47.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/HcHttpClientTest.java
assertEquals("mailto:******@****.***", HcHttpClient.constructRedirectLocation("http://localhost/", "mailto:******@****.***")); assertEquals("data:text/plain;base64,SGVsbG8gd29ybGQ=", HcHttpClient.constructRedirectLocation("http://localhost/", "data:text/plain;base64,SGVsbG8gd29ybGQ=")); assertEquals("http://192.168.1.1/path/file", HcHttpClient.constructRedirectLocation("http://192.168.1.1/path/", "file"));
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 11.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthentication.java
* * <p> * It provides methods to set and retrieve the server address, port, username, * password, and domain. Additionally, it offers a method to construct a path * prefix for SMB1 URLs based on the configured server and port. * </p> * * <p> * The path prefix is in the format "smb1://server:port/", where the port is * included only if it's greater than 0. If the server is not set, the path
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 3.9K bytes - Viewed (0) -
guava-gwt/pom.xml
.java files in c.g.c.collect.Collect, a module that the c.g.c.base test module inherits, and .java files in c.g.c.collect.testModule, one that it doesn't[*]. Consequently, c.g.c.base.testModule transitively pulls in .java files from both modules while reading
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 19.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AbstractCrawlerClient.java
*/ @Override public void setInitParameterMap(final Map<String, Object> params) { initParamMap = params; } /** * Executes the request based on the HTTP method. * @param request The request data. * @return The response data. */ @Override public ResponseData execute(final RequestData request) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 9.7K bytes - Viewed (0) -
cmd/erasure-object.go
// Reorder online disks based on erasure distribution order. // Reorder parts metadata based on erasure distribution order. onlineDisks, metaArr = shuffleDisksAndPartsMetadataByIndex(onlineDisks, metaArr, fi) // For negative length read everything. if length < 0 {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Sep 07 16:13:09 UTC 2025 - 80.4K bytes - Viewed (0) -
.github/workflows/check-commits.yml
pull_request: types: - opened - synchronize permissions: {} jobs: # See .github/workflows/CheckBadMerge.groovy for explanation check_bad_merge: if: github.event.pull_request.base.ref == 'master' permissions: contents: read issues: write runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v5 with:
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Sep 04 22:13:34 UTC 2025 - 3K bytes - Viewed (0) -
src/archive/tar/strconv.go
return 0 } if inv == 0xff { return ^int64(x) } return int64(x) } // Normal case is base-8 (octal) format. return p.parseOctal(b) } // formatNumeric encodes x into b using base-8 (octal) encoding if possible. // Otherwise it will attempt to use base-256 (binary) encoding. func (f *formatter) formatNumeric(b []byte, x int64) { if fitsInOctal(len(b), x) { f.formatOctal(b, x)
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Sep 08 17:08:20 UTC 2025 - 9.1K bytes - Viewed (0) -
.github/workflows/contributor-pr.yml
concurrency: # On master/release, we don't want any jobs cancelled so the sha is used to name the group group: ${{ (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/release' ) && format('contributor-pr-base-{0}', github.sha) || format('contributor-pr-{0}', github.ref) }} cancel-in-progress: false env: # Set the DEVELOCITY_ACCESS_KEY so that a Build Scan is generated
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Sep 04 22:13:34 UTC 2025 - 4.1K bytes - Viewed (0)