Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 551 for Signatures (0.13 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/signatureSubstitution/AbstractAnalysisApiSignatureContractsTest.kt

            symbol: KaFunctionLikeSymbol,
            signature: KaFunctionLikeSignature<*>,
            substitutor: KaSubstitutor,
            testServices: TestServices,
        ) {
            testServices.assertions.assertEquals(symbol.receiverType?.let(substitutor::substitute), signature.receiverType)
            testServices.assertions.assertEquals(symbol.returnType.let(substitutor::substitute), signature.returnType)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. src/crypto/rsa/boring_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	_, err = asn1.Marshal(k.PublicKey)
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    func TestBoringVerify(t *testing.T) {
    	// Check that signatures that lack leading zeroes don't verify.
    	key := &PublicKey{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 00:16:30 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/signature_def_function.h

    // https://github.com/tensorflow/tensorflow/blob/9bcefa44cd335c1db4a703a13da09f29ae1bbdb2/tensorflow/core/protobuf/saved_object_graph.proto#L60
    // Additionally they are guaranteed to be children of the .signatures attribute
    // of the root object, where the child object "name" is the signature_def key:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  4. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SignOperationSpec.groovy

            output1.exists() && output2.exists()
            [input1, input2] == operation.filesToSign.files.toList()[0..1]
            [output1, output2] == operation.signatureFiles.files.toList()[0..1]
            [output1, output2] == operation.signatures*.file.toList()
        }
    
        def "sign multiple artifacts with defaults"() {
            when:
            def operation = signing.sign(input1Artifact, input2Artifact)
            
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdmethods/doc.go

    // Package stdmethods defines an Analyzer that checks for misspellings
    // in the signatures of methods similar to well-known interfaces.
    //
    // # Analyzer stdmethods
    //
    // stdmethods: check signature of methods of well-known interfaces
    //
    // Sometimes a type may be intended to satisfy an interface but may fail to
    // do so because of a mistake in its method signature.
    // For example, the result of this WriteTo method should be (int64, error),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtFunctionLikeSignature.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.signatures
    
    import org.jetbrains.kotlin.analysis.api.symbols.KaFunctionLikeSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.KaValueParameterSymbol
    import org.jetbrains.kotlin.analysis.api.types.KaSubstitutor
    
    /**
     * A signature of a function-like symbol. This includes functions, getters, setters, lambdas, etc.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1010 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/ifaceassert/doc.go

    // the target interface T. This occurs when V and T contain methods with the same
    // name but different signatures. Example:
    //
    //	var v interface {
    //		Read()
    //	}
    //	_ = v.(io.Reader)
    //
    // The Read method in v has a different signature than the Read method in
    // io.Reader, so this assertion cannot succeed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 866 bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbTransportInternal.java

    
        /**
         * @return whether signatures are supported but not required
         * @throws SmbException
         */
        boolean isSigningOptional () throws SmbException;
    
    
        /**
         * @return whether signatures are enforced from either side
         * @throws SmbException
         */
        boolean isSigningEnforced () throws SmbException;
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/InvalidSignature.java

        @Override
        public File getSignatureFile() {
            return signatureFile;
        }
    
        @Override
        public void explainTo(TreeFormatter formatter) {
            formatter.append("artifact has signature file, but it contains no valid signatures");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/pywrap_tensorflow_to_stablehlo.cc

          },
          R"pbdoc(
            Converts a TensorFlow SavedModel into StableHLO bytecode.
    
            * input-path: The path to the input TensorFlow SavedModel.
            * exported-model-signatures: Comma-separated list of exported model
              signatures to convert.
            * tag_names: Comma-separated list of tags for loading SavedModel.
            * input-arg-shapes: A string representation of input argument shapes for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top