- Sort Score
- Result 10 results
- Languages All
Results 651 - 660 of 1,206 for _config (0.12 sec)
-
src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectRequest.java
/** * Creates a new SMB2 tree connect request to establish a connection to a network share. * * @param config the CIFS configuration * @param path the UNC path to the share to connect to */ public Smb2TreeConnectRequest(final Configuration config, final String path) { super(config, SMB2_TREE_CONNECT); this.path = path; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.5K bytes - Viewed (0) -
tests/error_translator_test.go
t.Fatalf("expected err: %v got err: %v", untranslatedErr, err) } // it should translate error when the TranslateError flag is true db, _ = gorm.Open(tests.DummyDialector{TranslatedErr: translatedErr}, &gorm.Config{TranslateError: true}) err = db.AddError(untranslatedErr) if !errors.Is(err, translatedErr) { t.Fatalf("expected err: %v got err: %v", translatedErr, err) } }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Jul 21 02:46:58 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsKeyMatchCA.java
*/ package org.codelibs.fess.opensearch.config.cbean.ca.bs; import org.codelibs.fess.opensearch.config.allcommon.EsAbstractConditionAggregation; import org.codelibs.fess.opensearch.config.allcommon.EsAbstractConditionQuery; import org.codelibs.fess.opensearch.config.cbean.ca.KeyMatchCA; import org.codelibs.fess.opensearch.config.cbean.cq.KeyMatchCQ; import org.codelibs.fess.opensearch.config.cbean.cq.bs.BsKeyMatchCQ;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 61.5K bytes - Viewed (0) -
tests/generics_test.go
func TestGenericsPreloads(t *testing.T) { ctx := context.Background() db := gorm.G[User](DB) u := *GetUser("GenericsPreloads_1", Config{Company: true, Pets: 3, Friends: 7}) u2 := *GetUser("GenericsPreloads_2", Config{Company: true, Pets: 5, Friends: 5}) u3 := *GetUser("GenericsPreloads_3", Config{Company: true, Pets: 7, Friends: 3}) names := []string{u.Name, u2.Name, u3.Name} db.CreateInBatches(ctx, &[]User{u3, u, u2}, 10)
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Sep 04 13:13:16 UTC 2025 - 28K bytes - Viewed (0) -
src/test/java/jcifs/smb/NetServerEnumIteratorTest.java
@MockitoSettings(strictness = Strictness.LENIENT) class NetServerEnumIteratorTest { @Mock private SmbResourceLocator locator; @Mock private SmbTreeHandleImpl treeHandle; @Mock private Configuration config; @Mock private ResourceNameFilter nameFilter; private SmbFile parent; @BeforeAll static void setupURLHandler() { // Register the SMB URL handler to avoid MalformedURLException
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.8K bytes - Viewed (0) -
.gitignore
*~ minio !*/ site/ **/*.test **/*.sublime-workspace /.idea/ /Minio.iml **/access.log vendor/ .DS_Store *.syso coverage.txt .vscode/ *.tar.bz2 parts/ prime/ stage/ .sia_temp/ config.json node_modules/ mc.* s3-check-md5* xl-meta* healing-* inspect*.zip 200M* hash-set minio.RELEASE* mc nancy inspects/* .bin/ *.gz docs/debugging/s3-verify/s3-verify
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon May 27 19:17:46 UTC 2024 - 802 bytes - Viewed (0) -
buildscripts/rewrite-old-new.sh
#!/bin/bash -e set -E set -o pipefail set -x WORK_DIR="$PWD/.verify-$RANDOM" MINIO_CONFIG_DIR="$WORK_DIR/.minio" MINIO_OLD=("$PWD/minio.RELEASE.2020-10-28T08-16-50Z" --config-dir "$MINIO_CONFIG_DIR" server) MINIO=("$PWD/minio" --config-dir "$MINIO_CONFIG_DIR" server) if [ ! -x "$PWD/minio" ]; then echo "minio executable binary not found in current directory" exit 1 fi function download_old_release() {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon May 27 19:17:46 UTC 2024 - 3.4K bytes - Viewed (0) -
.teamcity/settings.kts
import common.VersionedSettingsBranch import jetbrains.buildServer.configs.kotlin.project import jetbrains.buildServer.configs.kotlin.version import projects.GradleBuildToolRootProject version = "2025.07" /* Master (buildTypeId: Gradle_Master) |----- Check (buildTypeId: Gradle_Master_Check) | |---- QuickFeedbackLinux (buildTypeId: Gradle_Master_Check_QuickFeedbackLinux) | |---- QuickFeedback | |---- ...
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Aug 14 07:58:26 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lock/Smb2LockRequest.java
* * @param config the configuration for this request * @param fileId the file identifier for the file to lock * @param locks the array of lock elements to apply */ public Smb2LockRequest(final Configuration config, final byte[] fileId, final Smb2Lock[] locks) { super(config, SMB2_LOCK); this.fileId = fileId; this.locks = locks; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponse.java
* * @param config * the configuration to use for this response * @param expectInfoClass * the expected file information class in the response */ public Smb2QueryDirectoryResponse(final Configuration config, final byte expectInfoClass) { super(config); this.expectInfoClass = expectInfoClass; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.1K bytes - Viewed (0)