Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 309 for explainTo (0.19 sec)

  1. src/cmd/go/internal/modcmd/why.go

    	"fmt"
    	"strings"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/imports"
    	"cmd/go/internal/modload"
    )
    
    var cmdWhy = &base.Command{
    	UsageLine: "go mod why [-m] [-vendor] packages...",
    	Short:     "explain why packages or modules are needed",
    	Long: `
    Why shows a shortest path in the import graph from the main module to
    each of the listed packages. If the -m flag is given, why treats the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 21:32:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_downup_indirect_pruned.txt

    go list -m all
    ! stdout '^example.com/b '
    stdout '^example.com/c v0.1.0 '
    stdout '^example.com/d v0.2.0 '
    cmp go.mod go.mod.down2
    
    # If a user explicitly requests the incompatible versions together,
    # 'go get' should explain why they are not compatible.
    ! go get example.com/c@v0.1.0 example.com/d@v0.1.0
    stderr '^go: example\.com/c@v0\.1\.0 requires example\.com/d@v0\.2\.0, not example\.com/d@v0\.1\.0'
    
    -- go.mod --
    module example.com/a
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/model/Checksum.java

     * impossible to fix so let's trust this source".
     *
     * In addition to the list of alternatives, a checksum also provides a source,
     * which is documentation to explain where a checksum was found.
     */
    public class Checksum {
        private final ChecksumKind kind;
        private final String value;
        private final Set<String> alternatives;
        private final String origin;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleTest.java

    /*
     * Written by Doug Lea and Martin Buchholz with assistance from
     * members of JCP JSR-166 Expert Group and released to the public
     * domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/test/tck-jsr166e/AtomicDoubleTest.java?revision=1.8
     * (Modified to adapt to guava coding conventions)
     */
    
    package com.google.common.util.concurrent;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_downup_indirect.txt

    go list -m all
    ! stdout '^example.com/b '
    stdout '^example.com/c v0.1.0 '
    stdout '^example.com/d v0.2.0 '
    cmp go.mod go.mod.down2
    
    # If a user explicitly requests the incompatible versions together,
    # 'go get' should explain why they are not compatible.
    ! go get example.com/c@v0.1.0 example.com/d@v0.1.0
    stderr '^go: example\.com/c@v0\.1\.0 requires example\.com/d@v0\.2\.0, not example\.com/d@v0\.1\.0'
    
    -- go.mod --
    module example.com/a
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/DefaultNativeToolChainRegistryTest.groovy

        }
    
        def unavailableToolChain(String name, String message = "Not available") {
            PlatformToolProvider platformToolChain = Stub(PlatformToolProvider) {
                _ * isAvailable() >> false
                _ * explain(_) >> { it[0].node(message) }
            }
            TestNativeToolChain testToolChain = Mock(TestNativeToolChain) {
                _ * getName() >> name
                _ * getDisplayName() >> "Tool chain '$name'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Ordering.java

       * method directly.
       *
       * <p>The returned object is serializable if {@code comparator} is serializable.
       *
       * <p><b>Java 8+ users:</b> this class is now obsolete as explained in the class documentation, so
       * there is no need to use this method.
       *
       * @param comparator the comparator that defines the order
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/cpp_testing.adoc

    Testing C++ projects in Gradle is fairly limited when compared to <<java_testing.adoc#java_testing,Testing in Java & JVM projects>>. In this chapter, we explain the ways to control how tests are run (<<#sec:cpp_test_execution,Test execution>>).
    
    But first, we look at the basics of native testing in Gradle.
    
    [[sec:cpp_testing_basics]]
    == The basics
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/device_compilation_profiler.cc

                << " because it is megamorphic.";
        return false;
      }
    
      // TODO(b/255826209): Figure out if Lazy compilation is still needed given
      // that we always compile a cluster the first time it is executed (explained
      // below) regardless of compilation mode. If it is not, clean up the related
      // logic.
      // We always compile a cluster the very first time it is executed.  This is an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/rich_versions.adoc

    [[rich-version-constraints]]
    = Declaring Rich Versions
    
    Gradle supports a rich model for declaring versions, which allows to combine different level of version information.
    The terms and their meaning are explained below, from the strongest to the weakest:
    
    [[sec:strict-version]]
    `strictly`::
    Any version not matched by this version notation will be excluded.
    This is the strongest version declaration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top