Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 650 for bundles (0.16 sec)

  1. tensorflow/cc/saved_model/saved_model_fuzz.cc

      SavedModelBundleLite bundle;
      SessionOptions session_options;
      RunOptions run_options;
    
      string export_dir = "ram://";
      TF_CHECK_OK(tsl::WriteBinaryProto(tensorflow::Env::Default(),
                                        export_dir + kSavedModelFilenamePb, model));
    
      LoadSavedModel(session_options, run_options, export_dir,
                     {kSavedModelTagServe}, &bundle)
          .IgnoreError();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 09 23:47:46 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/tasks/InstallXCTestBundle.java

        @Optional
        @PathSensitive(PathSensitivity.NAME_ONLY)
        @InputFile
        protected File getBundleBinary() {
            RegularFile bundle = getBundleBinaryFile().get();
            File bundleFile = bundle.getAsFile();
            if (!bundleFile.exists()) {
                return null;
            }
            return bundleFile;
        }
    
        /**
         * Returns the install directory property.
         */
        @OutputDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/BUILD

        data = [
            ":extra_files",
            ":test_utilities",
        ],
        driver = "@llvm-project//mlir:run_lit.sh",
        test_file_exts = [
            "mlir",
            "cc",
            "json",
        ],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            ":importer_test_min_max",
            ":test_schema.fbs",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DependencyBundleValueSource.java

            Property<DefaultVersionCatalog> getConfig();
        }
    
        @Override
        public List<DependencyModel> obtain() {
            String bundle = getParameters().getBundleName().get();
            DefaultVersionCatalog config = getParameters().getConfig().get();
            BundleModel bundleModel = config.getBundle(bundle);
            return bundleModel.getComponents().stream()
                .map(config::getDependencyData)
                .collect(Collectors.toList());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. android/guava/pom.xml

          </plugin>
          <plugin>
            <extensions>true</extensions>
            <groupId>org.apache.felix</groupId>
            <artifactId>maven-bundle-plugin</artifactId>
            <version>5.1.8</version>
            <executions>
              <execution>
                <id>bundle-manifest</id>
                <phase>process-classes</phase>
                <goals>
                  <goal>manifest</goal>
                </goals>
              </execution>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 11 16:37:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. android-test-app/src/main/kotlin/okhttp/android/testapp/MainActivity.kt

    package okhttp.android.testapp
    
    import android.os.Bundle
    import androidx.activity.ComponentActivity
    import okhttp3.Call
    import okhttp3.Callback
    import okhttp3.HttpUrl.Companion.toHttpUrl
    import okhttp3.OkHttpClient
    import okhttp3.Request
    import okhttp3.Response
    import okio.IOException
    
    class MainActivity : ComponentActivity() {
      override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. build-logic/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle-integ-tests.gradle.kts

    Mikhail Lopatkin <******@****.***> 1697226821 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 720 bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/mlir/mlir_transform.cc

    Handle LoadModule(Object self, String saved_model) {
      // Parse arguments.
      // Load SavedModel into memory.
      tensorflow::SavedModelV2Bundle bundle;
      tensorflow::Status status =
          tensorflow::SavedModelV2Bundle::Load(saved_model.get(), &bundle);
      if (!status.ok()) {
        return None();
      }
      // Fetch MLIR context
      auto* context = self.Get<internal::Capsule>(String("_context"))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 12 16:28:19 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXTarget.java

            TOOL("com.apple.product-type.tool"),
            BUNDLE("com.apple.product-type.bundle"),
            FRAMEWORK("com.apple.product-type.framework"),
            STATIC_FRAMEWORK("com.apple.product-type.framework.static"),
            APPLICATION("com.apple.product-type.application"),
            UNIT_TEST("com.apple.product-type.bundle.unit-test"),
            IN_APP_PURCHASE_CONTENT("com.apple.product-type.in-app-purchase-content"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. cluster/images/etcd/migrate/options.go

    		"directory of etcd and etcdctl binaries, must contain etcd-<version> and etcdctl-<version> for each version listed in <bundled-versions>.")
    	flags.StringVar(&opts.dataDir, "data-dir", "",
    		"etcd data directory of etcd server to migrate. If unset fallbacks to DATA_DIRECTORY env.")
    	flags.StringSliceVar(&opts.bundledVersions, "bundled-versions", supportedEtcdVersions,
    		"comma separated list of etcd binary versions present under the bin-dir.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top