Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,119 for Signatures (0.15 sec)

  1. src/cmd/compile/internal/types2/signature.go

    func (s *Signature) TypeParams() *TypeParamList { return s.tparams }
    
    // RecvTypeParams returns the receiver type parameters of signature s, or nil.
    func (s *Signature) RecvTypeParams() *TypeParamList { return s.rparams }
    
    // Params returns the parameters of signature s, or nil.
    func (s *Signature) Params() *Tuple { return s.params }
    
    // Results returns the results of signature s, or nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/sig/sig.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package sig holds “code signatures” that can be called
    // and will result in certain code sequences being linked into
    // the final binary. The functions themselves are no-ops.
    package sig
    
    // BoringCrypto indicates that the BoringCrypto module is present.
    func BoringCrypto()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:58:43 UTC 2017
    - 614 bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/signatures/FirSymbolBasedSignature.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.fir.signatures
    
    import org.jetbrains.kotlin.analysis.api.fir.KaSymbolByFirBuilder
    import org.jetbrains.kotlin.fir.symbols.impl.FirCallableSymbol
    
    internal interface FirSymbolBasedSignature {
        val firSymbol: FirCallableSymbol<*>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 531 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/signatures/SignatureVerificationService.java

     */
    package org.gradle.api.internal.artifacts.verification.signatures;
    
    import org.gradle.internal.concurrent.Stoppable;
    import org.gradle.security.internal.PublicKeyService;
    
    import java.io.File;
    import java.util.Set;
    
    public interface SignatureVerificationService extends Stoppable {
        void verify(File origin, File signature, Set<String> trustedKeys, Set<String> ignoredKeys, SignatureVerificationResultBuilder result);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. src/crypto/internal/edwards25519/doc.go

    //
    //	-x^2 + y^2 = 1 + -(121665/121666)*x^2*y^2
    //
    // This is better known as the Edwards curve equivalent to Curve25519, and is
    // the curve used by the Ed25519 signature scheme.
    //
    // Most users don't need this package, and should instead use crypto/ed25519 for
    // signatures, golang.org/x/crypto/curve25519 for Diffie-Hellman, or
    // github.com/gtank/ristretto255 for prime order group logic.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:10 UTC 2022
    - 1K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/MatchesSignatureGeneratingSignatureTreeVisitor.java

    /**
     * Based on the {@link SignatureTree}, generates a method body that checks the
     * {@code Class[] argumentClasses} parameter of the method for representing one of the
     * signatures in the signature tree.
     */
    class MatchesSignatureGeneratingSignatureTreeVisitor {
        private final CodeBlock.Builder result;
    
        private static final TypeName SIGNATURE_AWARE_CALL_INTERCEPTOR_SIGNATURE_MATCH =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.analysis.api.signatures.KaCallableSignature
    import org.jetbrains.kotlin.analysis.api.signatures.KaFunctionLikeSignature
    import org.jetbrains.kotlin.analysis.api.signatures.KaVariableLikeSignature
    import org.jetbrains.kotlin.analysis.api.symbols.KaCallableSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/signatures/KtFirVariableLikeSignature.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.fir.signatures
    
    import org.jetbrains.kotlin.analysis.api.fir.KaSymbolByFirBuilder
    import org.jetbrains.kotlin.analysis.api.fir.buildSymbol
    import org.jetbrains.kotlin.analysis.api.fir.types.AbstractKaFirSubstitutor
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. test/func2.go

    // compile
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test function signatures.
    // Compiled but not run.
    
    package main
    
    type t1 int
    type t2 int
    type t3 int
    
    func f1(t1, t2, t3)
    func f2(t1, t2, t3 bool)
    func f3(t1, t2, x t3)
    func f4(t1, *t3)
    func (x *t1) f5(y []t2) (t1, *t3)
    func f6() (int, *string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 03:28:53 UTC 2012
    - 578 bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/doc.go

    //
    // # Analyzer tests
    //
    // tests: check for common mistaken usages of tests and examples
    //
    // The tests checker walks Test, Benchmark, Fuzzing and Example functions checking
    // malformed names, wrong signatures and examples documenting non-existent
    // identifiers.
    //
    // Please see the documentation for package testing in golang.org/pkg/testing
    // for the conventions that are enforced for Tests, Benchmarks, and Examples.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 703 bytes
    - Viewed (0)
Back to top