Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,358 for bundles (0.11 sec)

  1. misc/ios/README

    the bundle id before installing a new app. If the uninstalled app is the last app by
    the developer identity, the device might also remove the permission to run apps from
    that developer, and the exec wrapper will fail to install the new app. To avoid that,
    install another app with the same developer identity but with a different bundle id.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 21:49:26 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  2. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/rules/JacocoPluginCoverageVerificationIntegrationTest.groovy

            when:
            fails TEST_AND_JACOCO_COVERAGE_VERIFICATION_TASK_PATHS
    
            then:
            executedAndNotSkipped(TEST_AND_JACOCO_COVERAGE_VERIFICATION_TASK_PATHS)
            failure.assertHasCause("Rule violated for bundle $testDirectory.name: $errorMessage")
    
            where:
            limits                                                      | description                                                              | errorMessage
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device.h

        // compute stream. Otherwise each XLA device will having their own compute
        // streams.
        bool use_global_compute_stream = false;
    
        // A vector of ShapeDeterminationFn (i.e., a bundle of LayoutSelectionFn,
        // ShapeRepresentationFn). Each bundle describes how the on-host shapes of
        // a) argument and return value, for entry computations b) variables, for
        // all computations, should be represented in XLA. Parameters/return values
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/templates/structuring-software-projects/android-app/app/src/main/java/com/example/myproduct/app/MyProductAppActivity.kt

    package com.example.myproduct.app
    
    import android.app.Activity
    import android.os.AsyncTask
    import android.os.Bundle
    import android.text.Html
    import android.text.method.LinkMovementMethod
    import android.widget.ScrollView
    import android.widget.TableLayout
    import android.widget.TableRow
    import android.widget.TextView
    import com.example.myproduct.user.table.TableBuilder
    
    
    class MyProductAppActivity : Activity() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top