Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 948 for Signatures (0.36 sec)

  1. tensorflow/cc/saved_model/loader.h

      SavedModelBundleLite& operator=(SavedModelBundleLite&& other) = default;
    
      SavedModelBundleLite(std::unique_ptr<Session> session,
                           protobuf::Map<string, SignatureDef> signatures)
          : session_(std::move(session)), signatures_(std::move(signatures)) {}
    
      /// A TensorFlow Session does not Close itself on destruction. To avoid
      /// resource leaks, we explicitly call Close on Sessions that we create.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 18:28:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/signatures/KtFirFunctionLikeSignature.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeToken
    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.analysis.api.signatures.KaFunctionLikeSignature
    import org.jetbrains.kotlin.analysis.api.signatures.KaVariableLikeSignature
    import org.jetbrains.kotlin.analysis.api.symbols.KaValueParameterSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.KaFunctionLikeSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. pkg/controller/bootstrap/bootstrapsigner.go

    			utilruntime.HandleError(err)
    		}
    
    		// Check to see if this signature is changed or new.
    		oldSig, _ := sigs[tokenID]
    		if sig != oldSig {
    			needUpdate = true
    		}
    		delete(sigs, tokenID)
    
    		newCM.Data[bootstrapapi.JWSSignatureKeyPrefix+tokenID] = sig
    	}
    
    	// If we have signatures left over we know that some signatures were
    	// removed.  We now need to update the ConfigMap
    	if len(sigs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/GwtFuturesCatchingSpecialization.java

     * different signatures.
     */
    @GwtCompatible(emulated = true)
    @J2ktIncompatible // Super-sourced
    @ElementTypesAreNonnullByDefault
    abstract class GwtFuturesCatchingSpecialization {
      /*
       * This server copy of the class is empty. The corresponding GWT copy contains alternative
       * versions of catching() and catchingAsync() with slightly different signatures from the ones
       * found in Futures.java.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/GwtFluentFutureCatchingSpecialization.java

     * versions of the {@link FluentFuture#catching(Class, com.google.common.base.Function)
     * FluentFuture.catching} family of methods. Those versions have slightly different signatures.
     */
    @GwtCompatible(emulated = true)
    @J2ktIncompatible // Super-sourced
    @ElementTypesAreNonnullByDefault
    abstract class GwtFluentFutureCatchingSpecialization<V extends @Nullable Object>
        extends AbstractFuture<V> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. 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)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/signatures/KtFe10VariableLikeSignature.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.descriptors.signatures
    
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeToken
    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.analysis.api.signatures.KaVariableLikeSignature
    import org.jetbrains.kotlin.analysis.api.symbols.KaVariableLikeSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. 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)
  9. src/internal/types/testdata/check/cycles4.go

    }
    
    type T2 interface {
    	m() interface{T2}
    }
    
    func _(x T1, y T2) {
    	// Checking for assignability of interfaces must check
    	// if all methods of x are present in y, and that they
    	// have identical signatures. The signatures recur via
    	// the result type, which is an interface that embeds
    	// a single method m that refers to the very interface
    	// that contains it. This requires cycle detection in
    	// identity checks for interface types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/stablehlo/quantization.cc

        const SavedModelBundle& saved_model_bundle) {
      // Translate protobuf::Map -> absl::flat_hash_map.
      const protobuf::Map<std::string, SignatureDef>& signatures =
          saved_model_bundle.GetSignatures();
      absl::flat_hash_map<std::string, SignatureDef> signature_def_map(
          signatures.begin(), signatures.end());
    
      // Init op is only used during initialization and it's not a target for
      // quantization.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 10:49:12 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top