- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 272 for configureIde (0.32 sec)
-
build-logic/integration-testing/src/main/kotlin/gradlebuild.integration-tests.gradle.kts
*/ import gradlebuild.basics.testing.TestType import gradlebuild.basics.testing.includeSpockAnnotation import gradlebuild.integrationtests.addDependenciesAndConfigurations import gradlebuild.integrationtests.configureIde import gradlebuild.integrationtests.createTasks import gradlebuild.integrationtests.createTestTask import gradlebuild.integrationtests.extension.IntegrationTestExtension
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Aug 18 16:39:23 UTC 2025 - 2.4K bytes - Viewed (5) -
build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts
import gradlebuild.basics.testing.TestType import gradlebuild.integrationtests.addDependenciesAndConfigurations import gradlebuild.integrationtests.createTestTask import gradlebuild.integrationtests.configureIde import gradlebuild.integrationtests.setSystemPropertiesOfTestJVM plugins { java id("gradlebuild.module-identity") id("gradlebuild.dependency-modules") id("gradlebuild.jvm-compile") }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Sep 05 02:31:24 UTC 2025 - 4.5K bytes - Viewed (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt
systemProperties[integTestVersionsSysProp] = testVersions.get() } else { systemProperties[integTestVersionsSysProp] = defaultVersions } } internal fun Project.configureIde(testType: TestType) { val prefix = testType.prefix val sourceSet = the<SourceSetContainer>().getByName("${prefix}Test") // We apply lazy as we don't want to depend on the order
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Aug 18 16:39:23 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CurlHelper.java
* @param path the request path * @return the configured CurlRequest */ public CurlRequest get(final String path) { return request(Method.GET, path).header("Content-Type", "application/json"); } /** * Creates a POST request for the specified path. * @param path the request path * @return the configured CurlRequest */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 6.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/SourceRoot.java
* </p> * <pre>{@code * Optional<Path> configured = targetPath(); * if (configured.isPresent() && configured.get().isAbsolute()) { * return configured.get(); * } * Path outputDir = project.getOutputDirectory(scope()); * return configured.map(outputDir::resolve).orElse(outputDir); * }</pre> *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 07 13:11:07 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeHandleInternalTest.java
verify(handle, times(1)).ensureDFSResolved(); } @ParameterizedTest @ValueSource(ints = { 0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE }) @DisplayName("hasCapability(cap): returns configured value and captures argument across edge caps") void hasCapability_variousCaps_returnsTrue_andCapturesArgument(int cap) throws Exception { // Arrange: stub to return true regardless of input
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
docs/bucket/quota/README.md
 Buckets can be configured to have `Hard` quota - it disallows writes to the bucket after configured quota limit is reached. ## Prerequisites
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/Curl.java
* @return a new CurlRequest object configured with the PUT method and the specified URL */ public static CurlRequest put(final String url) { return new CurlRequest(Method.PUT, url); } /** * Creates a new CurlRequest with the DELETE method for the specified URL. * * @param url the URL to which the DELETE request will be sentRegistered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Thu Nov 20 13:34:13 UTC 2025 - 5.9K bytes - Viewed (0) -
cmd/bucket-metadata-sys.go
} // GetNotificationConfig returns configured notification config // The returned object may not be modified. func (sys *BucketMetadataSys) GetNotificationConfig(bucket string) (*event.Config, error) { meta, _, err := sys.GetConfig(GlobalContext, bucket) if err != nil { return nil, err } return meta.notificationConfig, nil } // GetSSEConfig returns configured SSE config
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 20.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java
* <p> * The serialization method used depends on the configured serializer type. * Supported types are Kryo and JavaBin serialization. * </p> * * @param obj the object to serialize * @return the serialized object as a byte array * @throws IllegalArgumentException if an unsupported serializer type is configured * @throws IORuntimeException if an I/O error occurs during serializationRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Wed Nov 19 07:09:17 UTC 2025 - 6.5K bytes - Viewed (3)