Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 551 for Signatures (0.14 sec)

  1. 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)
  2. 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)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifierTest.groovy

    import org.gradle.api.internal.artifacts.verification.model.ImmutableComponentVerificationMetadata
    import org.gradle.api.internal.artifacts.verification.signatures.SignatureVerificationResultBuilder
    import org.gradle.api.internal.artifacts.verification.signatures.SignatureVerificationService
    import org.gradle.internal.component.external.model.DefaultModuleComponentIdentifier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 13:23:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/signature_constants.h

    #ifndef TENSORFLOW_CC_SAVED_MODEL_SIGNATURE_CONSTANTS_H_
    #define TENSORFLOW_CC_SAVED_MODEL_SIGNATURE_CONSTANTS_H_
    
    namespace tensorflow {
    
    /// Key in the signature def map for `default` serving signatures. The default
    /// signature is used in inference requests where a specific signature was not
    /// specified.
    static constexpr char kDefaultServingSignatureDefKey[] = "serving_default";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 22:31:28 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  5. platforms/software/security/src/main/java/org/gradle/plugins/signing/type/DefaultSignatureTypeProvider.java

    import org.gradle.plugins.signing.type.pgp.ArmoredSignatureType;
    
    /**
     * The default {@link SignatureTypeProvider} implementation including support for
     * {@link BinarySignatureType} and {@link ArmoredSignatureType} signatures.
     */
    public class DefaultSignatureTypeProvider extends AbstractSignatureTypeProvider {
    
        public DefaultSignatureTypeProvider() {
            register(new BinarySignatureType());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/experimental/public/signature_def_function.h

    namespace tensorflow {
    namespace experimental {
    namespace cc {
    
    // SignatureDefFunctions are functions that correspond to either:
    // "signatures" saved from a TF2 SavedModel APIs:
    // https://github.com/tensorflow/tensorflow/blob/8ce0600f58ed84a8c84a7bbdb014d1f09e44f4c8/tensorflow/python/saved_model/save.py#L830-L854
    // Or the "SignatureDefMap" saved from TF1 SavedModel APIs:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/signatures/SignatureVerificationResultBuilder.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.artifacts.verification.signatures;
    
    import org.bouncycastle.openpgp.PGPPublicKey;
    
    public interface SignatureVerificationResultBuilder {
        void missingKey(String keyId);
        void verified(PGPPublicKey key, boolean trusted);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 978 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo_translate.cc

        llvm::cl::Optional, llvm::cl::init(""));
    
    // NOLINTNEXTLINE
    opt<std::string> exported_model_signatures(
        "exported-model-signatures",
        llvm::cl::desc(
            "Comma-separated list of exported model signatures to convert"),
        llvm::cl::Optional, llvm::cl::init("serving_default"));
    
    // NOLINTNEXTLINE
    opt<std::string> tag_names(
        "tags",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/signatures/SignatureVerificationServiceFactory.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.artifacts.verification.signatures;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.net.URI;
    import java.util.List;
    
    @ServiceScope(Scope.Build.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtCallableSignature.kt

    import org.jetbrains.kotlin.analysis.api.types.KaType
    import org.jetbrains.kotlin.name.CallableId
    
    /**
     * A signature for a callable symbol. Comparing to a [KaCallableSymbol], a signature can carry use-site type information. For example
     * ```
     * fun test(l: List<String>) {
     *   l.get(1) // The symbol `get` has type `(Int) -> T` where is the type parameter declared in `List`.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top