Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for approach (0.53 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    makes it easier to keep plugin versions consistent across projects within a build. The approach also improves the performance of the build.
    
    The <<plugins#sec:subprojects_plugins_dsl,Using Gradle plugins>> chapter explains how you can declare plugins in the root project build script with a version and then apply them to the appropriate subprojects' build scripts. What follows is an example of this approach using three subprojects and three plugins. Note how the root build script only declares...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    If you want to set up your own `Test` task with its own set of test classes, then the easiest approach is to create your own source set and `Test` task instance, as shown in <<#sec:configuring_java_integration_tests,Configuring integration tests>>.
    
    [[sec:test_execution]]
    == Test execution
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    ----
    ====
    
    For this to work, `link:{groovyDslPath}/org.gradle.testing.jacoco.plugins.JacocoTaskExtension.html[JacocoTaskExtension]` needs to have the correct input and output annotations.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    		// We can't figure out the type. Conservative
    		// approach is to assume it has a pointer.
    		return true
    	case *ast.SelectorExpr:
    		if l, ok := t.X.(*ast.Ident); !ok || l.Name != "C" {
    			// Type defined in a different package.
    			// Conservative approach is to assume it has a
    			// pointer.
    			return true
    		}
    		if f == nil {
    			// Conservative approach: assume pointer.
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    [[rel4.9:lazy_task_creation]]
    === [4.9] Consider trying the lazy API for task creation and configuration
    
    Gradle 4.9 introduced a new way to create and configure tasks that works lazily.
    When you use this approach for tasks that are expensive to configure, or when you have many, many tasks, your build configuration time can drop significantly when those tasks don't run.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis_test.cc

        // enable_optimistic = true or not should produce the same results because
        // of fallback.  However, note that the order of iv_inner/cond:0 and
        // iv_inner/iv:0 is different because the optimistic approach does not
        // create predicates for all merges and it can change the predicate id and
        // hence the symbol order.
        EXPECT_EQ(predicate_map[ControlOutputFor(dependent_inner_iv0)],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    It demonstrates the two options for renaming:
    
    1. Using a regular expression
    2. Using a closure
    
    Regular expressions are a flexible approach to renaming, particularly as Gradle supports regex groups that allow you to remove and replace parts of the source filename.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      // have the same requested device, which in turn will be the requested device
      // for the entire encapsulated subgraph. In case of soft placement, use a
      // deterministic approach to fill in the requested device. Handle co-location
      // constraints similarly if they exist.
      if (device_.empty()) {
        device_ = node->assigned_device_name().empty()
                      ? node->requested_device()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  9. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.liberty-request+xml",
    				"application/vnd.llamagraphics.life-balance.desktop",
    				"application/vnd.llamagraphics.life-balance.exchange+xml",
    				"application/vnd.lotus-1-2-3",
    				"application/vnd.lotus-approach",
    				"application/vnd.lotus-freelance",
    				"application/vnd.lotus-notes",
    				"application/vnd.lotus-organizer",
    				"application/vnd.lotus-screencam",
    				"application/vnd.lotus-wordpro",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				}
    				if(this.data.core.to_open.length) {
    					$.each(this.data.core.to_open, function (i, val) {
    						_this.open_node(val, false, true);
    					});
    				}
    				if(done) {
    					// TODO: find a more elegant approach to synchronizing returning requests
    					if(this.data.core.reopen) { clearTimeout(this.data.core.reopen); }
    					this.data.core.reopen = setTimeout(function () { _this.__callback({}, _this); }, 50);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
Back to top