Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 143 for approach (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    What are the main benefits you are looking for?
    
    To better understand, consider the following opposing scenarios:
    
     * An imported build via <<ant#sec:import_ant_build,`ant.importBuild()`>>
    +
    This approach is quick, simple, and works for many Ant-based builds.
    You end up with a build that is effectively identical to the original Ant build, except your Ant targets become Gradle tasks.
    Even the dependencies between targets are retained.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    [[sub:declaring_dependency_with_dynamic_version]]
    == Declaring a dynamic version
    
    Projects might adopt a more aggressive approach for consuming dependencies to modules.
    For example you might want to always integrate the latest version of a dependency to consume cutting edge features at any given time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. src/net/conf.go

    // constants.
    
    // conf is used to determine name resolution configuration.
    type conf struct {
    	netGo  bool // prefer go approach, based on build tag and GODEBUG
    	netCgo bool // prefer cgo approach, based on build tag and GODEBUG
    
    	dnsDebugLevel int // from GODEBUG
    
    	preferCgo bool // if no explicit preference, use cgo
    
    	goos     string   // copy of runtime.GOOS, used for testing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. maven-core/plugin-manager.txt

    workspace of an IDE, a local Maven repository, or a remote Maven repository. During development in an IDE we would need layered resolution approach that would allow resolution from the workspace, then the local Maven repository and then from any number of remote Maven repositories. During development from the command line we would need a layered resolution approach that would allow resolution from the local Maven repository and then from any number of remote Maven repositories. In production the resolution...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  5. cmd/kube-apiserver/app/testing/testserver.go

    // test, we can just look at the runtime call stack. However, bazel compiles go
    // binaries with the -trimpath option so the simple approach fails however we
    // can consult environment variables to derive the path.
    //
    // The approach taken here works for both go test and bazel on the assumption
    // that if and only if trimpath is passed, we are running under bazel.
    func pkgPath(t Logger) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/preconditions/IntegTestPreconditions.groovy

            }
        }
    
        static final class HasMsBuild implements TestPrecondition {
            @Override
            boolean isSatisfied() {
                // Simplistic approach at detecting MSBuild by assuming Windows imply MSBuild is present
                return satisfied(UnitTestPreconditions.Windows) && notSatisfied(IsEmbeddedExecutor)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

    import okio.ByteString.Companion.toByteString
    
    /**
     * Logs SSL keys to a log file, allowing Wireshark to decode traffic and be examined with http2
     * filter. The approach is to hook into JSSE log events for the messages between client and server
     * during handshake, and then take the agreed masterSecret from private fields of the session.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    ----
    
    It is a common practice to implement any custom build logic (like plugins and task types) that is more complex in nature as external classes in a standalone project. The main driver behind this approach is bundle the compiled code into a JAR file, publish it to a binary repository and reuse it across various projects.
    
    [[sub:test-kit-classpath-injection]]
    == Getting the plugin-under-test into the test build
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ForwardingMap.java

       * #remove} to forward to this implementation.
       *
       * <p>Alternately, you may wish to override {@link #remove} with {@code keySet().remove}, assuming
       * that approach would not lead to an infinite loop.
       *
       * @since 7.0
       */
      @CheckForNull
      protected V standardRemove(@CheckForNull Object key) {
        Iterator<Entry<K, V>> entryIterator = entrySet().iterator();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_tf_xla_call_module_to_stablehlo_pass.cc

              kStablehloModuleDefaultEntryFuncName);
          // TODO(b/291988976): move enforcement of this variable outside of this
          // rewrite pattern such that it's only checked once. Currently, this
          // approach results in duplicate error messages as this pattern executes
          // more than once.
          if (!IsShloMainFuncOp(main_func_op)) {
            auto error_msg =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 25 09:43:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top