Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 85 for Signatures (0.24 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    [WARNING]
    ====
    Signatures _can_ also be used to assess the integrity of a dependency similarly to checksums.
    Signatures are signatures of the _hash_ of artifacts, not artifacts themselves.
    This means that if the signature is done on an _unsafe hash_ (even SHA1), then you're not correctly assessing the _integrity_ of a file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        self.assertCountEqual(root.signatures.keys(), {'serving_default'})
        new_outputs_1 = root.signatures['serving_default'](
            x=ops.convert_to_tensor(input_data)
        )
    
        root = load.load(output_saved_model_path_2)
        self.assertCountEqual(root.signatures.keys(), {'serving_default'})
        new_outputs_2 = root.signatures['serving_default'](
            x=ops.convert_to_tensor(input_data)
        )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

    This can indicate that a dependency has been compromised. Please carefully verify the signatures and checksums."""
    
            def artifactFile = getCachedArtifactLocation(module, 'jar.asc')
            outputContains("Expected a signature list in ${artifactFile}, but got invalid file. Skipping this signature.")
            assertConfigCacheDiscarded()
        }
    
        private static void tamperWithFile(File file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  4. src/crypto/x509/x509.go

    	return checkSignature(c.SignatureAlgorithm, c.RawTBSCertificate, c.Signature, parent.PublicKey, false)
    }
    
    // CheckSignature verifies that signature is a valid signature over signed from
    // c's public key.
    //
    // This is a low-level API that performs no validity checks on the certificate.
    //
    // [MD5WithRSA] signatures are rejected, while [SHA1WithRSA] and [ECDSAWithSHA1]
    // signatures are currently accepted.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

    import org.jetbrains.kotlin.analysis.api.resolution.symbol
    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.*
    import org.jetbrains.kotlin.analysis.api.symbols.KaSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        if arg_def.type_list_attr:
          attr_names.append(arg_def.type_list_attr)
    
        # TODO(fengliuai): currently we don't support backward type inference, so we
        # have to store these non-derivable type in the signatures, and then they
        # can be used to cast the values when raising to tf ops.
        if arg_def.type == types_pb2.DT_FLOAT:
          attr_names.append('f32_')
        elif arg_def.type == types_pb2.DT_INT32:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

    // -----
    
    !tf_res = tensor<!tf_type.resource<tensor<f32>>>
    
    // Do not convert control outputs to chains in the presence of an op with
    // unknown side effects in the while body.
    // This test checks that loop signatures are unchanged and no control output is
    // erased from while loop body.
    
    // CHECK-LABEL: func @unknown_resource_op_while_body
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  8. gradle/verification-metadata.xml

       <configuration>
          <verify-metadata>false</verify-metadata>
          <verify-signatures>true</verify-signatures>
          <keyring-format>armored</keyring-format>
          <key-servers enabled="false"/>
          <trusted-artifacts>
             <trust group="gradle" name="gradle"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        """
        return func.signature.name.startswith('quantized_')
    
      def _is_composite_function(self, func: function_pb2.FunctionDef) -> bool:
        """Determine whether a FunctionDef is composite function.
    
        Args:
          func: A FunctionDef object.
    
        Returns:
          True iff `func` is composte function.
        """
        return func.signature.name.startswith('composite_')
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  10. cmd/xl-storage-format-v2.go

    }
    
    // signatureErr is a signature returned when an error occurs.
    var signatureErr = [4]byte{'e', 'r', 'r', 0}
    
    // getSignature will return a signature that is expected to be the same across all disks.
    func (j xlMetaV2Version) getSignature() [4]byte {
    	switch j.Type {
    	case ObjectType:
    		return j.ObjectV2.Signature()
    	case DeleteType:
    		return j.DeleteMarker.Signature()
    	case LegacyType:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top