Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,821 for Bundle (0.14 sec)

  1. 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)
  2. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/tests/cacheableBundleTask.sample.conf

    commands: [{
        executable: gradle
        args: "bundle clean"
        flags: --build-cache
    },{
        executable: gradle
        args: "bundle printBundle"
        flags: --build-cache
        expected-output-file: cacheableBundleTask.out
        allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 256 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/kotlinDsl/androidSingleBuild/kotlin/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)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionCatalog.java

        /**
         * Returns the provider for the corresponding bundle alias.
         * <p>
         * Note: Bundle will be automatically normalized: '-', '_' and '.' will be replaced with '.'
         * </p>
         * @param alias the alias of the bundle
         */
        Optional<Provider<ExternalModuleDependencyBundle>> findBundle(String alias);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 20:59:29 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/libtf/mlir/mlir_transform.cc

    namespace tf {
    namespace libtf {
    
    // TODO(b/190837282): All return None's become errors.
    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
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 12 16:28:19 UTC 2022
    - 3K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

            assertUnique(libraries, "library aliases", "");
            assertUnique(bundles, "dependency bundles", "Bundle");
            assertUnique(versions, "dependency versions", "Version");
            assertUnique(plugins, "plugins", "Plugin");
            int size = libraries.size() + bundles.size() + versions.size() + plugins.size();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/end2end/BUILD

        tags_override = {
            "add.pbtxt": ["no_rocm"],
            "conv_2d.pbtxt": ["no_rocm"],
            "fake_quant_per_channel.pbtxt": ["no_rocm"],
        },
        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/lite:flatbuffer_to_string",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. pkg/fuzz/README.md

    Here is an example:
    
    ```go
    // Define a new fuzzer. Must have Fuzz prefix
    func FuzzBuildHTTP(f *testing.F) {
      fuzz.Fuzz(f, func(fg fuzz.Helper) {
        // Setup a few structs for testing
        bundle := fuzz.Struct[trustdomain.Bundle](fg)
            // This one has a custom validator
        push := fuzz.Struct[*model.PushContext](fg, validatePush)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 21:25:25 UTC 2023
    - 1.9K 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