- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 707 for extension (0.11 sec)
-
src/cmd/asm/internal/arch/arm64.go
return errors.New("unsupported general register extension type: " + ext) } } else if reg <= arm64.REG_V31 && reg >= arm64.REG_V0 { switch ext { case "B8": if isIndex { return errors.New("invalid register extension") } a.Reg = arm64.REG_ARNG + (reg & 31) + ((arm64.ARNG_8B & 15) << 5) case "B16": if isIndex { return errors.New("invalid register extension") }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Sep 29 09:04:58 UTC 2022 - 10.4K bytes - Viewed (0) -
okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt
assertThat(CertificateAdapters.extension.toDer(extension)) .isEqualTo(bytes) assertThat(CertificateAdapters.extension.fromDer(bytes)) .isEqualTo(extension) } @Test fun `extension with unknown type hint`() { val extension = Extension( // common name is not an extension. COMMON_NAME, false, "3006800109810109".decodeHex(), )
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 31.7K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt
return Validity( notBefore = notBefore, notAfter = notAfter, ) } private fun extensions(): MutableList<Extension> { val result = mutableListOf<Extension>() if (maxIntermediateCas != -1) { result += Extension( id = BASIC_CONSTRAINTS, critical = true, value = BasicConstraints(
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 21.6K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/RelocatedArtifact.java
this.artifactId = (artifactId != null && !artifactId.isEmpty()) ? artifactId : null; this.classifier = (classifier != null && !classifier.isEmpty()) ? classifier : null; this.extension = (extension != null && !extension.isEmpty()) ? extension : null; this.version = (version != null && !version.isEmpty()) ? version : null; this.message = (message != null && !message.isEmpty()) ? message : null; } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinatesFactory.java
} @Nonnull default ArtifactCoordinates create( @Nonnull Session session, String groupId, String artifactId, String version, String extension) { return create(ArtifactCoordinatesFactoryRequest.build(session, groupId, artifactId, version, extension)); } @Nonnull default ArtifactCoordinates create( @Nonnull Session session, String groupId,
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 3.4K bytes - Viewed (0) -
compat/maven-resolver-provider/src/test/resources/repo/org/apache/maven/its/dep-mng5459/0.4.0-SNAPSHOT/maven-metadata.xml
</snapshot> <lastUpdated>20130404093657</lastUpdated> <snapshotVersions> <snapshotVersion> <extension>pom</extension> <value>0.4.0-20130404.090532-2</value> <updated>20130404090532</updated> </snapshotVersion> <snapshotVersion> <extension>jar</extension> <value>0.4.0-20130404.093655-3</value> <updated>20130404093655</updated> </snapshotVersion>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocExtensionsBuilder.java
} classExtensionDoc.getMixinClasses().add(model.getClassDoc(mixin.getMixinClass())); } for (ExtensionMetaData extension : classDoc.getExtensionMetaData().getExtensionClasses()) { String pluginId = extension.getPluginId(); ClassExtensionDoc classExtensionDoc = plugins.get(pluginId); if (classExtensionDoc == null) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 4.9K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 20.3K bytes - Viewed (0) -
internal/store/store.go
// Key denotes the key present in the store. type Key struct { Name string Compress bool Extension string ItemCount int } // String returns the filepath name func (k Key) String() string { keyStr := k.Name if k.ItemCount > 1 { keyStr = fmt.Sprintf("%d:%s", k.ItemCount, k.Name) } return keyStr + k.Extension + func() string { if k.Compress { return compressExt } return "" }() }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 4.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java
GradleDocumentationExtension extension = project.getExtensions().getByType(GradleDocumentationExtension.class); generateJavadocs(project, layout, tasks, extension); } private void generateJavadocs(Project project, ProjectLayout layout, TaskContainer tasks, GradleDocumentationExtension extension) { // TODO: Staging directory should be a part of the Javadocs extension
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Aug 20 14:11:17 UTC 2024 - 7.3K bytes - Viewed (0)