- Sort Score
- Num 10 results
- Language All
Results 221 - 230 of 289 for registered (0.09 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
cmd/metrics-router.go
metricsRouter.Handle(prometheusMetricsV2ResourcePath, auth(metricsResourceHandler())) // Metrics v3 metricsV3Server := newMetricsV3Server(auth) // Register metrics v3 handler. It also accepts an optional query // parameter `?list` - see handler for details. metricsRouter.Methods(http.MethodGet).Path(metricsV3Path + "{pathComps:.*}").Handler(metricsV3Server)
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Mon Jul 15 16:28:02 GMT 2024 - 2.6K bytes - Click Count (0) -
okhttp-osgi-tests/build.gradle.kts
} } // Expose OSGi jars to the test environment. val osgiTestDeploy: Configuration by configurations.creating val test = tasks.named("test") val copyOsgiTestDeployment = tasks.register<Copy>("copyOsgiTestDeployment") { from(osgiTestDeploy) into(layout.buildDirectory.dir("resources/test/okhttp3/osgi/deployments")) } test.configure { dependsOn(copyOsgiTestDeployment) } dependencies {
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Fri Aug 01 08:17:18 GMT 2025 - 2.5K bytes - Click Count (0) -
android/guava/src/com/google/common/net/InternetDomainName.java
* Foundation's <a href="http://publicsuffix.org/">Public Suffix List</a> (PSL). A public suffix * is one under which Internet users can directly register names, such as {@code com}, {@code * co.uk} or {@code pvt.k12.wy.us}. Examples of domain names that are <i>not</i> public suffixes * include {@code google.com}, {@code foo.co.uk}, and {@code myblog.blogspot.com}. *
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 27.9K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/amd64enc_extra.s
VEXTRACTPS $-1, X1, AX // c4e37917c8ff VPEXTRB $-1, X1, AX // c4e37914c8ff VPEXTRD $-1, X1, AX // c4e37916c8ff VPEXTRQ $-1, X1, AX // c4e3f916c8ff // EVEX: High-16 X registers. VADDPD X30, X1, X0 // 6291f50858c6 VADDPD X2, X29, X0 // 62f1950058c2 VADDPD X30, X29, X0 // 6291950058c6 VADDPD X2, X1, X28 // 6261f50858e2
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Feb 20 11:20:03 GMT 2025 - 57.7K bytes - Click Count (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioProvisioningPlugin.kt
dependencies { androidStudioRuntime("android-studio:android-studio:$androidStudioVersion@$androidStudioFileName") } tasks.register(UNPACK_ANDROID_STUDIO_TASK_NAME, ExtractAndroidStudioTask::class) { this.androidStudioRuntime.setFrom(androidStudioRuntime) outputDir.set(layout.buildDirectory.dir(ANDROID_STUDIO_INSTALL_PATH))Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Sep 19 16:20:44 GMT 2025 - 4.4K bytes - Click Count (0) -
schema/field_test.go
user = AdvancedDataTypeUser{ ID: sql.NullInt64{Int64: 10, Valid: true}, Name: &sql.NullString{String: name, Valid: true}, Birthday: sql.NullTime{Time: time.Now(), Valid: true}, RegisteredAt: mytime(time.Now()), DeletedAt: &deletedAt, Active: mybool(true), Admin: &isAdmin, } reflectValue = reflect.ValueOf(&user) ) // test valuerCreated: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Sat Feb 19 09:02:53 GMT 2022 - 12.7K bytes - Click Count (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt
// This is the case for kotlin-dsl integration tests. if (testType == TestType.INTEGRATION && groovySourceDir != null) { val autoTestedSamplesTest = tasks.register<GenerateAutoTestedSamplesTestTask>("generateAutoTestedSamplesTest") { mainSources.from(main.java) generateAutoTestedSamplesTest.set(project.the<IntegrationTestExtension>().generateDefaultAutoTestedSamplesTest)Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Aug 18 16:39:23 GMT 2025 - 12.8K bytes - Click Count (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts
rootVariant?.let { computeExternalDependenciesNotAccessibleFromProjectDependencies(rootComponent, it) } ?: emptySet() }.get() } val classpathManifest = tasks.register("classpathManifest", ClasspathManifest::class) { this.projectDependencies.from(runtimeClasspath.incoming.artifactView { componentFilter { it is ProjectComponentIdentifier }Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri May 16 18:26:52 GMT 2025 - 4.4K bytes - Click Count (0) -
build-logic/build-init-samples/src/main/kotlin/gradlebuild/generate-samples.gradle.kts
val multiProjectSuffix = if (modularizationOption.isMulti()) " with libraries" else "" val generateSampleTask = project.tasks.register<GenerateSample>("generateSample${sampleName.capitalize()}") { readmeTemplates.convention(layout.projectDirectory.dir("src/samples/readme-templates"))
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Jun 24 13:46:12 GMT 2025 - 3.4K bytes - Click Count (0) -
schema/serializer.go
"database/sql" "database/sql/driver" "encoding/gob" "encoding/json" "fmt" "math" "reflect" "strings" "sync" "time" ) var serializerMap = sync.Map{} // RegisterSerializer register serializer func RegisterSerializer(name string, serializer SerializerInterface) { serializerMap.Store(strings.ToLower(name), serializer) } // GetSerializer get serializer
Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Sun Oct 26 12:29:44 GMT 2025 - 5.1K bytes - Click Count (0)