Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,275 for bundles (0.29 sec)

  1. tensorflow/cc/saved_model/loader.cc

                                  SavedModelBundle* const bundle) {
      TF_RETURN_IF_ERROR(ReadMetaGraphDefFromSavedModel(export_dir, tags,
                                                        &bundle->meta_graph_def));
      TF_RETURN_IF_ERROR(
          ReadSavedModelDebugInfoIfPresent(export_dir, &bundle->debug_info));
      TF_RETURN_IF_ERROR(LoadMetagraphIntoSession(
          session_options, bundle->meta_graph_def, &bundle->session));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/loader.h

                          const std::unordered_set<string>& tags,
                          SavedModelBundle* bundle);
    
    /// Loads a SavedModel from the specified export directory. The MetaGraphDef
    /// to be loaded is identified by the supplied tags, corresponding exactly to
    /// the set of tags used at SavedModel build time. Stores a SavedModel bundle
    /// in *bundle with a session created from the requested MetaGraphDef if found.
    ///
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 18:28:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    	// key cert bundle.
    	if bytes.Equal(oldRootCert, rotator.ca.keyCertBundle.GetRootCertPem()) {
    		t.Error("root cert in key cert bundle should be different after rotation.")
    	}
    	if !bytes.Equal(certItem1.caSecret.Data[CACertFile], rotator.ca.keyCertBundle.GetRootCertPem()) {
    		t.Error("root cert in key cert bundle should be the same as root " +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  4. pkg/registry/certificates/clustertrustbundle/storage/storage_test.go

    		func(object runtime.Object) runtime.Object {
    			bundle := object.(*certificates.ClusterTrustBundle)
    			bundle.Spec.TrustBundle = strings.Join([]string{validCert1, validCert2}, "\n")
    			return bundle
    		},
    		// Invalid update
    		func(object runtime.Object) runtime.Object {
    			bundle := object.(*certificates.ClusterTrustBundle)
    			bundle.Spec.TrustBundle = ""
    			return bundle
    		},
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:18 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/templates/java-android-application/app/src/main/java/org/gradle/samples/MainActivity.java

    package org.gradle.samples;
    
    import androidx.appcompat.app.AppCompatActivity;
    
    import android.os.Bundle;
    
    public class MainActivity extends AppCompatActivity {
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 332 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/templates/java-android-application/src/main/java/org/gradle/samples/MainActivity.java

    package org.gradle.samples;
    
    import androidx.appcompat.app.AppCompatActivity;
    
    import android.os.Bundle;
    
    public class MainActivity extends AppCompatActivity {
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 332 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/src/main/kotlin/org/gradle/kotlin/dsl/samples/androidstudio/MainActivity.kt

    package org.gradle.kotlin.dsl.samples.androidstudio
    
    import android.support.v7.app.AppCompatActivity
    import android.os.Bundle
    
    class MainActivity : AppCompatActivity() {
    
        override fun onCreate(savedInstanceState: Bundle?) {
            super.onCreate(savedInstanceState)
            setContentView(R.layout.activity_main)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 326 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/BUILD

        },
        test_file_exts = ["pbtxt"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir:tf-mlir-translate",
            "@llvm-project//llvm:FileCheck",
            "@llvm-project//llvm:not",
        ],
    )
    
    # Bundle together all the debug info files that are used by the tests.
    filegroup(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/debuginfo/BUILD

        test_file_exts = [
            "pbtxt",
            #        "py", TODO(b/150304798)
        ],
    )
    
    # Bundle together all the debug info files that are used by the tests.
    filegroup(
        name = "debug_info_files",
        srcs = glob(
            ["**/*.debug"],
        ),
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 26 21:40:15 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/initialization/dsl/VersionCatalogBuilder.java

        /**
         * Declares a bundle of dependencies. A bundle consists of a name for the bundle,
         * and a list of aliases. The aliases must correspond to aliases defined via
         * the {@code library()} methods.
         *
         * @param alias the alias of the bundle
         * @param aliases the aliases of the dependencies included in the bundle
         * @see #library(String, String, String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 20:59:29 UTC 2022
    - 6.2K bytes
    - Viewed (0)
Back to top