- Sort Score
- Result 10 results
- Languages All
Results 621 - 630 of 881 for state (0.04 sec)
-
guava-tests/test/com/google/common/cache/CacheManualTest.java
CacheStats stats = cache.stats(); assertEquals(0, stats.missCount()); assertEquals(0, stats.loadSuccessCount()); assertEquals(0, stats.loadExceptionCount()); assertEquals(0, stats.hitCount()); Object one = new Object(); Object two = new Object(); assertNull(cache.getIfPresent(one)); stats = cache.stats(); assertEquals(1, stats.missCount());
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
String LDAP_ATTR_INTERNATIONALI_S_D_N_NUMBER = "ldap.attr.internationaliSDNNumber"; /** The key of the configuration. e.g. st */ String LDAP_ATTR_STATE = "ldap.attr.state"; /** The key of the configuration. e.g. employeeType */ String LDAP_ATTR_EMPLOYEE_TYPE = "ldap.attr.employeeType"; /** The key of the configuration. e.g. facsimileTelephoneNumber */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 468.5K bytes - Viewed (1) -
.teamcity/src/main/kotlin/configurations/DocsTest.kt
} class DocsTest( model: CIBuildModel, stage: Stage, os: Os, testJava: JvmCategory, index: Int, docsTestType: DocsTestType, testSplitType: TestSplitType, testClasses: List<String>, ) : OsAwareBaseGradleBuildType(os = os, stage = stage, init = { id("${model.projectId}_${docsTestType.docsTestName}_${os.asName()}_$index")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Sep 25 07:23:49 UTC 2024 - 4.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
return BuildDistributions(model, stage) } }, Gradleception { override fun create(model: CIBuildModel, stage: Stage): OsAwareBaseGradleBuildType { return Gradleception(model, stage, BuildToolBuildJvm, "Default") } }, GradleceptionWithGroovy4 {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 16 06:14:14 UTC 2024 - 22.9K bytes - Viewed (0) -
istioctl/pkg/writer/pilot/testdata/multiXdsStatusMultiPilot.txt
proxy1 cluster1 STALE SYNCED SYNCED NOT SENT SYNCED istiod1 1.20 proxy2 cluster2 STALE SYNCED STALE SYNCED STALE istiod2 1.19 proxy3 cluster3 NOT SENT ERROR STALE NOT SENT NOT SENT istiod3 1.20
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Mar 06 03:42:52 UTC 2024 - 522 bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/CheckLinks.kt
package configurations import common.Os import common.buildScanTagParam import model.CIBuildModel import model.Stage class CheckLinks(model: CIBuildModel, stage: Stage) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage = stage, failStage = false, init = { id("${model.projectId}_CheckLinks") name = "CheckLinks" description = "Check links in documentations" applyDefaults( model, this,
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 24 06:22:49 UTC 2024 - 578 bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt
override fun createPerformanceTestsFor(model: CIBuildModel, stage: Stage, performanceTestCoverage: PerformanceTestCoverage, bucketIndex: Int): PerformanceTest = createPerformanceTest( model, performanceTestCoverage, stage, bucketIndex, "Performance tests for $testProject", mapOf(testProject to scenarios) ) }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Feb 19 11:22:56 UTC 2024 - 15.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/CacheStatsTest.java
assertThat(stats.missRate()).isEqualTo(13.0 / 24); assertEquals(17, stats.loadSuccessCount()); assertEquals(19, stats.loadExceptionCount()); assertThat(stats.loadExceptionRate()).isEqualTo(19.0 / 36); assertEquals(17 + 19, stats.loadCount()); assertEquals(23, stats.totalLoadTime()); assertThat(stats.averageLoadPenalty()).isEqualTo(23.0 / (17 + 19)); assertEquals(27, stats.evictionCount()); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 03 18:10:55 UTC 2024 - 4.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/StageTriggers.kt
} class StageTrigger( model: CIBuildModel, stage: Stage, prevStage: Stage?, os: Os?, dependencies: List<BaseGradleBuildType>, generateTriggers: Boolean = true, ) : BaseGradleBuildType(init = { id(stageTriggerId(model, stage, os)) uuid = stageTriggerUuid(model, stage, os) name = stage.stageName.stageName + " (Trigger)" + (os?.asName()?.toCapitalized()?.let { "($it)" } ?: "")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Nov 06 08:08:13 UTC 2024 - 5.8K bytes - Viewed (0) -
cmd/metrics-resource.go
} if hm.Mem != nil && len(hm.Mem.Info.Addr) > 0 { labels := map[string]string{} stats := hm.Mem.Info updateResourceMetrics(memSubsystem, total, float64(stats.Total), labels, false) updateResourceMetrics(memSubsystem, memUsed, float64(stats.Used), labels, false) perc := math.Round(float64(stats.Used*100*100)/float64(stats.Total)) / 100
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jul 24 23:30:33 UTC 2024 - 17.2K bytes - Viewed (0)