Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,821 for Bundle (0.26 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyCollector.java

        @Override
        public <D extends Dependency> void bundle(Iterable<? extends D> bundle) {
            doAddBundleEager(bundle, null);
        }
    
        @Override
        public <D extends Dependency> void bundle(Iterable<? extends D> bundle, Action<? super D> configuration) {
            doAddBundleEager(bundle, configuration);
        }
    
        @Override
        public <D extends Dependency> void bundle(Provider<? extends Iterable<? extends D>> bundle) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:10:09 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/kotlin/build.gradle.kts

        @get:PathSensitive(PathSensitivity.RELATIVE)     // <4>
        abstract val configFiles: ConfigurableFileCollection
    
        @get:OutputFile
        abstract val bundle: RegularFileProperty
    
        init {
            args.addAll("run", "bundle")
            bundle = projectLayout.buildDirectory.file("bundle.js")
            scripts = projectLayout.projectDirectory.dir("scripts")
            configFiles.from(projectLayout.projectDirectory.file("package.json"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/saved_model_bundle_test.cc

    TEST_F(LoaderTest, TagMatch) {
      SavedModelBundle bundle;
      SessionOptions session_options;
      RunOptions run_options;
    
      const string export_dir =
          io::JoinPath(testing::TensorFlowSrcRoot(), kTestDataSharded);
      TF_ASSERT_OK(LoadSavedModel(session_options, run_options, export_dir,
                                  {kSavedModelTagServe}, &bundle));
      CheckSavedModelBundle(export_dir, bundle);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyCollector.java

        <D extends Dependency> void bundle(Iterable<? extends D> bundle, Action<? super D> configuration);
    
        /**
         * Add a bundle.
         *
         * @param bundle the bundle to add
         *
         * @since 8.6
         */
        <D extends Dependency> void bundle(Provider<? extends Iterable<? extends D>> bundle);
    
        /**
         * Add a bundle and configure them.
         *
         * @param bundle the bundle to add
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilderTest.groovy

        def "can use arbitrary separators when building bundles"() {
            builder.library("foo.bar", "foo:bar:1.0")
            builder.library("foo-baz", "foo:baz:1.0")
            builder.library("foo_qux", "foo:qux:1.0")
    
            builder.bundle("my", ["foo-bar", "foo_baz", "foo.qux"])
            builder.bundle("a.b", ["foo.bar"])
            builder.bundle("a_c", ["foo.bar"])
            builder.bundle("a-d", ["foo.bar"])
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/groovy/build.gradle

            .withPathSensitivity(PathSensitivity.RELATIVE)
    
        outputs.file(layout.buildDirectory.file("bundle.js"))
            .withPropertyName("bundle")
    }
    // end::bundle-task[]
    
    tasks.register('printBundle') {
        dependsOn bundle
    
        def projectLayout = layout
    
        doLast {
            println projectLayout.buildDirectory.file("bundle.js").get().asFile.text
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/bundle_v2_test.cc

          testing::TensorFlowSrcRoot(), kTestData, "VarsAndArithmeticObjectGraph");
    
      SavedModelV2Bundle bundle;
      TF_ASSERT_OK(SavedModelV2Bundle::Load(export_dir, &bundle));
    
      // Ensure that there are nodes in the trackable_object_graph.
      EXPECT_GT(bundle.trackable_object_graph().nodes_size(), 0);
    
      RestoreVarsAndVerify(&bundle, {"variable_x", "variable_y", "child_variable"});
    }
    
    TEST_F(BundleV2Test, LoadsCyclicModule) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 17:51:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/kotlin/build.gradle.kts

            .withPathSensitivity(PathSensitivity.RELATIVE)
    
        outputs.file(layout.buildDirectory.file("bundle.js"))
            .withPropertyName("bundle")
    }
    // end::bundle-task[]
    
    tasks.register("printBundle") {
        dependsOn("bundle")
    
        val projectLayout = layout
    
        doLast {
            println(projectLayout.buildDirectory.file("bundle.js").get().asFile.readText())
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/groovy/build.gradle

        BundleTask() {
            args.addAll("run", "bundle")
            bundle = projectLayout.buildDirectory.file("bundle.js")
            scripts = projectLayout.projectDirectory.dir("scripts")
            configFiles.from(projectLayout.projectDirectory.file("package.json"))
            configFiles.from(projectLayout.projectDirectory.file("package-lock.json"))
        }
    }
    
    tasks.register('bundle', BundleTask)
    // end::bundle-task[]
    
    tasks.register('printBundle') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BNDSmokeTest.groovy

        outputBndrun = layout.buildDirectory.file("my.bndrun")
        bundles = configurations.bundles
        properties = ["project.osgiIdentity" : "org.apache.felix.eventadmin"]
    }
    
    configurations {
        bundles
    }
    
    dependencies {
        bundles 'org.apache.felix:org.apache.felix.framework:6.0.5'
        bundles 'org.apache.felix:org.apache.felix.eventadmin:1.4.6'
        bundles project(":direct")
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top