Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,358 for bundles (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    - Where to find the built testable bundle (on macOS) or executable (on Linux) (property: link:{groovyDslPath}/org.gradle.nativeplatform.test.xctest.tasks.XCTest.html#org.gradle.nativeplatform.test.xctest.tasks.XCTest:testInstallDirectory[XCTest.getTestInstalledDirectory()])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. src/cmd/internal/moddeps/moddeps_test.go

    			r.run(t, goBinCopy, "generate", `-run=^//go:generate bundle `, pkgs) // See issue 41409.
    			advice := "$ cd " + m.Dir + "\n" +
    				"$ go mod tidy                               # to remove extraneous dependencies\n" +
    				"$ go mod vendor                             # to vendor dependencies\n" +
    				"$ go generate -run=bundle " + pkgs + "               # to regenerate bundled packages\n"
    			if m.Path == "std" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. build-logic/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.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
    - 6.4K 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. tensorflow/cc/saved_model/saved_model_bundle_lite_test.cc

    TEST_F(LoaderTest, ExtendFailsTest) {
      SavedModelBundleLite 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));
      Status s = bundle.GetSession()->Extend({});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  10. 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)
Back to top