- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 140 for requiresOs (0.07 sec)
-
.teamcity/src/main/kotlin/util/UpdateWrapper.kt
package util import common.BuildToolBuildJvm import common.Os import common.VersionedSettingsBranch import common.javaHome import common.requiresOs import common.toCapitalized import jetbrains.buildServer.configs.kotlin.AbsoluteId import jetbrains.buildServer.configs.kotlin.BuildType import jetbrains.buildServer.configs.kotlin.ParameterDisplay import jetbrains.buildServer.configs.kotlin.buildSteps.exec
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Jul 24 03:08:48 UTC 2025 - 2.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/CommonExtensions.kt
useGradleWrapper = true if (buildFile == null) { buildFile = "" // Let Gradle detect the build script } skipConditionally(buildType) } fun Requirements.requiresOs(os: Os) { contains("teamcity.agent.jvm.os.name", os.agentRequirement) } fun Requirements.requiresArch( os: Os, arch: Arch, ) { if (os == Os.MACOS) {
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Sep 10 01:37:13 UTC 2025 - 15K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/UserRoleLoginException.java
private static final long serialVersionUID = 1L; /** The action class that requires specific user roles */ private final Class<?> actionClass; /** * Constructs a new UserRoleLoginException with the specified action class. * * @param actionClass the action class that requires specific user roles */ public UserRoleLoginException(final Class<RootAction> actionClass) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Request.java
* This interface represents requests sent to network transports. */ public interface Request extends Message { /** * Gets the number of credits this request requires. * * @return number of credits this request requires */ int getCreditCost(); /** * Sets the number of request credits. * * @param credits the number of credits to set */
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/entity/PingResponseTest.java
public Set<String> getApiPingEsFieldSet() { return new HashSet<>(); } }; ComponentUtil.register(mockConfig, "fessConfig"); // Note: Full testing requires a running OpenSearch cluster // These tests verify the PingResponse class structure is correct assertTrue(true); } public void test_getClusterName_returnsCorrectValue() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/StaticJAASConfigurationTest.java
void nullOptions_throwOnAccess() { // Arrange StaticJAASConfiguration cfg = new StaticJAASConfiguration(null); // Act + Assert assertThrows(IllegalArgumentException.class, () -> cfg.getAppConfigurationEntry("any"), "JAAS AppConfigurationEntry requires non-null options"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmAuthenticator.java
return this.sae; } /** * Used internally by jCIFS when an <code>SmbAuthException</code> is trapped to retrieve new user credentials. * * @param url the URL that requires authentication * @param sae the authentication exception that was thrown * @return credentials returned by prompt */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.4K bytes - Viewed (0) -
doc/next/5-toolchain.md
## Compiler {#compiler} ## Assembler {#assembler} ## Linker {#linker} ## Bootstrap {#bootstrap} <!-- go.dev/issue/69315 --> As mentioned in the [Go 1.24 release notes](/doc/go1.24#bootstrap), Go 1.26 now requires Go 1.24.6 or later for bootstrap.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Aug 11 21:25:55 UTC 2025 - 338 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
} public void test_isTarget() { // Test isTarget method generator = new TestThumbnailGenerator(); Map<String, Object> docMap = new HashMap<>(); // Note: isTarget requires FessConfig which needs container // We can only verify the method handles missing container gracefully try { generator.isTarget(docMap); } catch (IllegalStateException e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java
assertTrue(emptyGenerator.isAvailable()); } public void test_isTarget() { // Initialize without container emptyGenerator = new EmptyGenerator(); // Note: isTarget method requires FessConfig from ComponentUtil // which needs container initialization. // We can only test that the method can be called without crashing // when proper conditions are not met.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.3K bytes - Viewed (0)