- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 113 for signify (0.1 sec)
-
common-protos/k8s.io/api/certificates/v1beta1/generated.proto
// // Valid values are: // "signing", // "digital signature", // "content commitment", // "key encipherment", // "key agreement", // "data encipherment", // "cert sign", // "crl sign", // "encipher only", // "decipher only", // "any", // "server auth", // "client auth", // "code signing", // "email protection", // "s/mime",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 6.7K bytes - Viewed (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts
tasks.withType<Sign>().configureEach { isEnabled = signArtifacts } signing { useInMemoryPgpKeys( project.providers.environmentVariable("PGP_SIGNING_KEY").orNull, project.providers.environmentVariable("PGP_SIGNING_KEY_PASSPHRASE").orNull ) publishing.publications.configureEach { if (signArtifacts) { signing.sign(this) } } } fun configureJavadocVariant() {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Sep 19 13:21:47 UTC 2024 - 5.9K bytes - Viewed (0) -
internal/config/identity/openid/jwt_test.go
token := jwtgo.NewWithClaims(jwtgo.SigningMethodHS256, claimsMap) tokenString, err := token.SignedString(signKey) if err != nil { t.Error(err) } // Parse token to be sure it is valid err = jwtm.ParseWithClaims(tokenString, claimsMap, func(*jwtm.MapClaims) ([]byte, error) { return signKey, nil }) if err != nil { t.Error(err) } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 8.3K bytes - Viewed (0) -
.teamcity/test-buckets.json
"execution-e2e-tests", "file-collections", "test-kit", "ide-plugins", "build-configuration", "ide", "ide-native", "diagnostics", "signing", "antlr", "platform-base", "declarative-dsl-tooling-builders" ] } ], "testCoverageUuid":1 }, { "buckets":[ { "parallelizationMethod":{
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 08 11:14:16 UTC 2024 - 87.8K bytes - Viewed (0) -
docs/fr/docs/deployment/index.md
# Déploiement Le déploiement d'une application **FastAPI** est relativement simple. ## Que signifie le déploiement **Déployer** une application signifie effectuer les étapes nécessaires pour la rendre **disponible pour les utilisateurs**. Pour une **API Web**, cela implique normalement de la placer sur une **machine distante**, avec un **programme serveur**
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Jun 24 14:47:15 UTC 2023 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
if ( request.getDigest() != null ) { /* success - install the signing digest */ setDigest(request.getDigest()); } else if ( !anonymous && isSignatureSetupRequired() ) { throw new SmbException("Signing required but no session key available"); } setSessionSetup(response);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts
tasks.withType<Sign>().configureEach { isEnabled = signArtifacts } signing { useInMemoryPgpKeys(pgpSigningKey.orNull, pgpSigningPassPhrase.orNull) publishing.publications.configureEach { if (signArtifacts) { signing.sign(this) } }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Aug 08 14:54:27 UTC 2024 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/NtlmFlags.java
/** * Indicates datagram authentication. */ public static final int NTLMSSP_NEGOTIATE_DATAGRAM_STYLE = 0x00000040; /** * Indicates that the LAN Manager session key should be used for * signing and sealing authenticated communication. */ public static final int NTLMSSP_NEGOTIATE_LM_KEY = 0x00000080; /** * ??? According to spec this is a reserved bit and must be set to zero */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6K bytes - Viewed (0) -
build-logic/dependency-modules/build.gradle.kts
plugins { id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin") } description = "Provides a plugin to minify and correct metadata for dependencies used by Gradle" dependencies { implementation("gradlebuild:basics") implementation("com.google.code.gson:gson")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Sat Sep 30 16:17:28 UTC 2023 - 276 bytes - Viewed (0) -
src/main/java/jcifs/internal/SMBSigningDigest.java
package jcifs.internal; /** * @author mbechler * */ public interface SMBSigningDigest { /** * Performs MAC signing of the SMB. This is done as follows. * The signature field of the SMB is overwritten with the sequence number; * The MD5 digest of the MAC signing key + the entire SMB is taken; * The first 8 bytes of this are placed in the signature field. * * @param data
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 2.2K bytes - Viewed (0)