- Sort Score
- Result 10 results
- Languages All
Results 641 - 650 of 850 for extended (0.05 sec)
-
src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferral.java
* This class implements the TRANS2_GET_DFS_REFERRAL transaction to request * DFS referral information for distributed file system path resolution. */ public class Trans2GetDfsReferral extends SmbComTransaction { private final int maxReferralLevel; private final DfsReferralRequestBuffer request; /** * Constructs a Trans2GetDfsReferral request with default referral level. *
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/test/java/jcifs/BufferCacheTest.java
import org.mockito.Mock; /** * Comprehensive test suite for BufferCache interface. * Tests the contract and behavior of BufferCache implementations. */ @DisplayName("BufferCache Interface Tests") class BufferCacheTest extends BaseTest { @Mock private BufferCache mockBufferCache; private TestBufferCacheImpl testCache; @BeforeEach void setUp() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.3K bytes - Viewed (0) -
helm-releases/minio-1.0.2.tgz
.Values.mountPath }} ## If defined, it must be a sub-directory of the path specified in {{ .Values.mountPath }} ## bucketRoot: "" # Number of drives attached to a node drivesPerNode: 1 # Number of MinIO containers running replicas: 4 # Number of expanded MinIO clusters zones: 1 ## TLS Settings for MinIO tls: enabled: false ## Create a secret with private.key and public.crt files and pass that here. Ref: https://github.com/minio/minio/tree/master/docs/tls/kubernetes#2-create-kubernetes-secret certSecret:...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 24 18:58:05 UTC 2021 - 13.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsBoostDocumentRule.java
import org.codelibs.fess.opensearch.config.bsentity.dbmeta.BoostDocumentRuleDbm; /** * ${table.comment} * @author ESFlute (using FreeGen) */ public class BsBoostDocumentRule extends EsAbstractEntity { // =================================================================================== // Definition
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/plugin/ApiAdminPluginAction.java
import org.codelibs.fess.util.ComponentUtil; import org.lastaflute.web.Execute; import org.lastaflute.web.response.JsonResponse; /** * API action for admin plugin management. */ public class ApiAdminPluginAction extends FessApiAdminAction { // =================================================================================== // Constructor
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/QueryParseExceptionTest.java
*/ package org.codelibs.fess.exception; import org.apache.lucene.queryparser.classic.ParseException; import org.codelibs.fess.unit.UnitFessTestCase; public class QueryParseExceptionTest extends UnitFessTestCase { public void test_constructor() { // Test constructor with ParseException cause ParseException parseException = new ParseException("Test parse error");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.opensearch.client; import org.codelibs.fess.unit.UnitFessTestCase; public class CrawlerEngineClientTest extends UnitFessTestCase { private CrawlerEngineClient crawlerEngineClient; @Override public void setUp() throws Exception { super.setUp(); crawlerEngineClient = new CrawlerEngineClient();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2ReadResponse.java
/** * SMB2 Read response message. * * This response contains the data that was read from the file * along with information about the read operation. * * @author mbechler */ public class Smb2ReadResponse extends ServerMessageBlock2Response { /** * Protocol overhead size for SMB2 read response */ public static final int OVERHEAD = Smb2Constants.SMB2_HEADER_LENGTH + 16; private int dataRemaining;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NetServerEnum2Response.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; import jcifs.smb1.util.Hexdump; import jcifs.smb1.util.LogStream; class NetServerEnum2Response extends SmbComTransactionResponse { class ServerInfo1 implements FileEntry { String name; int versionMajor; int versionMinor; int type; String commentOrMasterBrowser;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/jcifs/spnego/SpnegoTokenTest.java
/** * Minimal concrete implementation for testing. * - parse: sets mechanismToken, throws on null * - toByteArray: returns mechanismToken or empty array if null */ static class TestSpnegoToken extends SpnegoToken { private boolean parsed = false; @Override public byte[] toByteArray() { byte[] tok = getMechanismToken(); return tok == null ? new byte[0] : tok;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.6K bytes - Viewed (0)