Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 389 for Signatures (0.25 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest.groovy

            then:
            assertXmlContents """<?xml version="1.0" encoding="UTF-8"?>
    <verification-metadata>
       <configuration>
          <verify-metadata>true</verify-metadata>
          <verify-signatures>true</verify-signatures>
          <key-servers>
             <key-server uri="${keyServerFixture.uri}"/>
          </key-servers>
          <trusted-keys>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/sumdb/note/note.go

    }
    
    // A Note is a text and signatures.
    type Note struct {
    	Text           string      // text of note
    	Sigs           []Signature // verified signatures
    	UnverifiedSigs []Signature // unverified signatures
    }
    
    // A Signature is a single signature found in a note.
    type Signature struct {
    	// Name and Hash give the name and key hash
    	// for the key that generated the signature.
    	Name string
    	Hash uint32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriterTest.groovy

            then:
            contents == """<?xml version="1.0" encoding="UTF-8"?>
    <verification-metadata>
       <configuration>
          <verify-metadata>$verifyMetadata</verify-metadata>
          <verify-signatures>$verifySignatures</verify-signatures>
       </configuration>
       <components/>
    </verification-metadata>
    """
            and:
            hasNamespaceDeclaration()
    
            and:
            validateAgainstSchemasSince("1.3")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

          signatures = &saved_objects.nodes(child.node_id());
        }
      }
    
      // Some basic sanity checks that this object is actually our "signatures" map
      if (signatures == nullptr) {
        // This is where the "signatures" attribute is always set:
        // https://github.com/tensorflow/tensorflow/blob/a2c542a0d83227568f9214a2af9a38ae3625976f/tensorflow/python/saved_model/save.py#L1106-L1109
        return errors::FailedPrecondition(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

      graph.
    
      Args:
        signature_def_map: the signatures to validate.
        exported_graph: The PTQ-exported GraphDef.
    
      Returns:
        The signatures with tensor names prefixed with signature name if necessary.
    
      Raises:
        ValueError: Iff the signatures are not consistent with the graph.
      """
      for signature_key, signature_def in signature_def_map.items():
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Sign.java

            }
    
            for (Signature.Generator signature : sanitizedGenerators().values()) {
                signature.generate();
            }
        }
    
        /**
         * The signatures generated by this task.
         */
        @Internal
        public DomainObjectSet<Signature> getSignatures() {
            return signatures.get();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

            return {'output': out}
    
        model = EinsumModel()
        signatures = {
            'serving_default': model.einsum_with_kernel.get_concrete_function(
                tensor_spec.TensorSpec(
                    name='x', shape=x_signature, dtype=dtypes.float32
                )
            ),
        }
        saved_model_save.save(model, saved_model_path, signatures=signatures)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationWritingIntegTest.groovy

            }
    
            and:
            assertXmlContents """<?xml version="1.0" encoding="UTF-8"?>
    <verification-metadata>
       <configuration>
          <verify-metadata>true</verify-metadata>
          <verify-signatures>false</verify-signatures>
          <trusted-artifacts>
             <trust group="dummy" name="artifact"/>
             <trust group="other" name="artifact" version="with" file="file.jar" regex="true"/>
          </trusted-artifacts>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/signing_plugin.adoc

    Plugin adds the ability to digitally sign built files and artifacts. These digital signatures can then be used to prove who built the artifact the signature is attached to as well as other information such as when the signature was generated.
    
    The Signing Plugin currently only provides support for generating https://en.wikipedia.org/wiki/Pretty_Good_Privacy#OpenPGP[OpenPGP signatures] (which is the signature format http://central.sonatype.org/pages/requirements.html#sign-files-with-gpgpgp[required...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  10. src/go/types/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: Thu Feb 29 22:06:18 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top