- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 154 for withEnv (0.05 sec)
-
Jenkinsfile
script { properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: isDeployedBranch() ? '30' : '5'))]) if (isDeployedBranch()) { withEnv(["JAVA_HOME=${tool "jdk_17_latest"}", "PATH+MAVEN=${ tool "jdk_17_latest" }/bin:${tool "maven_3_latest"}/bin", "MAVEN_OPTS=-Xms4G -Xmx4G -Djava.awt.headless=true"]) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jul 10 12:31:48 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/Smb2RdmaTransform.java
// SMB_DIRECT_BUFFER_DESCRIPTOR_V1 structure private long offset; // 8 bytes: Offset within registered buffer private int token; // 4 bytes: RDMA provider token private int length; // 4 bytes: Length of buffer /** * Create SMB2 RDMA Transform * * @param offset offset within registered buffer * @param token RDMA provider token (steering tag/memory handle)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcConstantsTest.java
} } @Test @DisplayName("Fragment flags should be within byte range") void testFragmentFlagsRange() { // Verify that fragment flags are within byte range (0x00-0xFF) int[] fragmentFlags = { DcerpcConstants.DCERPC_FIRST_FRAG, DcerpcConstants.DCERPC_LAST_FRAG,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java
IntervalRule rule = new IntervalRule("22:00", "02:00", "*", 1000); // Within range (same day) assertTrue(rule.isTarget(23, 30, 1)); // 23:30 on Sunday assertTrue(rule.isTarget(22, 0, 1)); // 22:00 on Sunday (start time) // Within range (next day) assertTrue(rule.isTarget(1, 30, 1)); // 1:30 on Sunday (actually Monday morning)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcEnumerateAliasesInDomain.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.dcerpc.msrpc; /** * MSRPC implementation for enumerating aliases within a domain. * This class provides functionality to enumerate security aliases (local groups) * within a SAM domain using the SAMR RPC interface. */ public class MsrpcEnumerateAliasesInDomain extends samr.SamrEnumerateAliasesInDomain { /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcEnumerateAliasesInDomain.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.dcerpc.msrpc; /** * MSRPC implementation for enumerating aliases within a domain. * This class provides functionality to enumerate security aliases (local groups) * within a SAM domain using the SAMR RPC interface. */ public class MsrpcEnumerateAliasesInDomain extends samr.SamrEnumerateAliasesInDomain { /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/AbstractConfigHelperTest.java
configHelper.setLoadCallback(() -> { latch.countDown(); return 1; }); configHelper.update(); assertTrue("Load method should be called within 5 seconds", latch.await(5, TimeUnit.SECONDS)); assertEquals(1, configHelper.getLoadCallCount()); } public void test_update_multipleCallsIncrementLoadCount() throws InterruptedException {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 00:03:47 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacSidAttributes.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.pac; import jcifs.smb.SID; /** * Represents a Security Identifier (SID) with associated attributes within a PAC structure. * This class encapsulates a SID and its attribute flags as used in Kerberos PAC data. */ public class PacSidAttributes { private final SID id; private final int attributes; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTimingAttackTest.java
double minTime = Math.min(Math.min(timeStart, timeMiddle), timeEnd); double timingRatio = (maxTime - minTime) / maxTime; // Timing differences should be minimal (within tolerance) assertTrue(timingRatio < TIMING_TOLERANCE, String.format( "Timing attack vulnerability detected: timing ratio %.3f exceeds tolerance %.3f "
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/JobExecutor.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.job; /** * Abstract base class for job executors that handle script execution within the job system. * This class provides a framework for executing scripts and managing shutdown operations. */ public abstract class JobExecutor { /** Listener to handle shutdown events */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0)