- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 541 for initHC (0.07 sec)
-
.teamcity/src/main/kotlin/configurations/SmokeIdeTests.kt
import common.requiresNotEc2Agent import model.CIBuildModel import model.Stage class SmokeIdeTests(model: CIBuildModel, stage: Stage) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage = stage, init = { id(buildTypeId(model)) name = "Smoke Ide Tests" description = "Tests against IDE sync process" requirements { // These tests are usually heavy and the build time is twice on EC2 agents
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Sep 25 07:23:49 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/util/Crypto.java
/** * * @param key * @return RC4 cipher */ public static Cipher getArcfour ( byte[] key ) { try { Cipher c = Cipher.getInstance("RC4"); c.init(Cipher.ENCRYPT_MODE, new SecretKeySpec(key, "RC4")); return c; } catch ( NoSuchAlgorithmException | NoSuchPaddingException | InvalidKeyException e ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Aug 17 17:34:29 UTC 2021 - 5.2K bytes - Viewed (0) -
internal/event/target/amqp.go
if !filepath.IsAbs(a.QueueDir) { return errors.New("queueDir path should be absolute") } } return nil } // AMQPTarget - AMQP target type AMQPTarget struct { initOnce once.Init id event.TargetID args AMQPArgs conn *amqp091.Connection connMutex sync.Mutex store store.Store[event.Event] loggerOnce logger.LogOnce quitCh chan struct{} }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 10K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/DictionaryManagerTest.java
} public void test_init() { final DictionaryManager dictionaryManager = new DictionaryManager(); dictionaryManager.init(); assertEquals(0, dictionaryManager.creatorList.size()); dictionaryManager.addCreator(new CharMappingCreator()); dictionaryManager.init(); assertEquals(1, dictionaryManager.creatorList.size()); } /*
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/RC4.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 1.7K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/ForwardingRequestBody.kt
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1.4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/FunctionalTestProject.kt
) : Project({ this.id(testCoverage.asId(model)) this.name = testCoverage.asName() }) { val functionalTests: List<BaseGradleBuildType> = functionalTestBucketProvider.createFunctionalTestsFor(stage, testCoverage) init { functionalTests.forEach(this::buildType) }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Aug 29 11:04:48 UTC 2024 - 862 bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java
error); } public ArtifactMetadata(Artifact af) { /* if ( af != null ) { init( af ); } */ } // ------------------------------------------------------------------ // public void init( ArtifactMetadata af ) // { // setGroupId( af.getGroupId() ); // setArtifactId( af.getArtifactId() );
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResult.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.crawler.entity; /** * @author shinsuke * */ public interface AccessResult<IDTYPE> { void init(ResponseData responseData, ResultData resultData); IDTYPE getId(); void setId(IDTYPE id); String getSessionId(); void setSessionId(String sessionId); String getRuleId();
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/CheckTeamCityKotlinDSL.kt
import jetbrains.buildServer.configs.kotlin.buildSteps.script import model.CIBuildModel import model.Stage class CheckTeamCityKotlinDSL(model: CIBuildModel, stage: Stage) : OsAwareBaseGradleBuildType( os = Os.LINUX, stage = stage, init = { id("${model.projectId}_CheckTeamCityKotlinDSL") name = "CheckTeamCityKotlinDSL" description = "Check Kotlin DSL in .teamcity/" applyDefaultSettings() steps {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 30 04:10:13 UTC 2024 - 1K bytes - Viewed (0)