Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 6,362 for gives (0.04 sec)

  1. src/cmd/go/testdata/script/mod_tidy_compat_irrelevant.txt

    cp stdout out-117.txt
    
    go mod edit -go=1.16
    go list -deps -test -f $MODFMT all
    cmp stdout out-117.txt
    
    
    # If we explicitly drop compatibility with 1.16, we retain fewer checksums,
    # which gives a cleaner go.sum file but causes 1.16 to fail in readonly mode.
    
    cp go.mod.orig go.mod
    go mod tidy -compat=1.17
    cmp go.mod go.mod.orig
    
    # Make sure that -diff behaves the same as tidy.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/problems/DefaultProblemLocationAnalyzer.java

                // - an unexpected exception thrown in user code that is called from other user code, where the called code should be blamed
                // So, for now, just blame the first user code that can be identified. This gives the user some clues for where to start
                startPos = 0;
                endPos = stack.size();
            } else {
                // When analysing a problem stack trace, consider only the deepest user code in the stack.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/CancellationSpec.groovy

            if (targetDist.toolingApiRetainsOriginalFailureOnCancel) {
                if (targetDist.toolingApiDoesNotAddCausesOnTaskCancel) {
                    // Verify the cause exception gives some context about the cancellation
                    // Some versions either do not included this, or provide a pointless wrapper, or include multiple 'build cancelled' failures
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSetOutput.java

     * <p>
     * In general, we recommend generating resources into folders different than the regular resourcesDir and classesDirs.
     * Usually, it makes the build easier to understand and maintain. Also it gives some additional benefits
     * because other Gradle plugins can take advantage of the output dirs 'registered' in the SourceSet.output.
     * For example: Java plugin will use those dirs in calculating class paths and for jarring the content;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. pkg/test/framework/components/cluster/topology.go

    		ClusterProxyKubectlOnly: config.ProxyKubectlOnly,
    		AllClusters:             allClusters,
    		Index:                   len(allClusters),
    		ConfigMetadata:          config.Meta,
    	}
    }
    
    // Topology gives information about the relationship between clusters.
    // Cluster implementations can embed this struct to include common functionality.
    type Topology struct {
    	ClusterName             string
    	Network                 string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/magic.go

    //
    // The first thing to note is that for odd integers, exact division can be computed
    // by using the modular inverse with respect to the word size 2^n.
    //
    // Given c, compute m such that (c * m) mod 2^n == 1
    // Then if c divides x (x%c ==0), the quotient is given by q = x/c == x*m mod 2^n
    //
    // x can range from 0, c, 2c, 3c, ... ⎣(2^n - 1)/c⎦ * c the maximum multiple
    // Thus, x*m mod 2^n is 0, 1, 2, 3, ... ⎣(2^n - 1)/c⎦
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Util.h

     *  consisting entirely of entity characters of converted length 
     *  CUNIT_MAX_ENTITY_LEN.  Neither szSrc nor szDest may be NULL 
     *  (checked by assertion).<br /><br />
     *
     *  maxlen gives the maximum number of characters in the translated string.
     *  If szDest does not have enough room to hold the converted string, the
     *  return value will be zero and szDest will contain an empty string.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/set_tpu_infeed_layout.cc

        if (succeeded(layout)) {
          minor_to_major = layout.value();
        } else {
          /* If we're not running on a TPU node, we might not be able to
           * actually call the part of the TPU API that gives us layout.
           * This happens e.g. for unit tests. Below we just create a reasonable
           * layout.  We sort by dimension size, which makes the layout agree with
           * the "correct" TPU layout in surprisingly many cases.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. src/internal/chacha8rand/chacha8.go

    		// but we do it immediately before computing the next block,
    		// to allow a much smaller serialized state (just the seed plus offset).
    		// This gives a delayed benefit for the forward secrecy
    		// (you can reconstruct the recent past given a memory dump),
    		// which we deem acceptable in exchange for the reduced size.
    		s.seed[0] = s.buf[len(s.buf)-reseed+0]
    		s.seed[1] = s.buf[len(s.buf)-reseed+1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:47:29 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolutionResultApiIntegrationTest.groovy

    leaf:2.0 forced
    bar:1.0 requested
    baz:1.0 requested
    """
        }
    
        @ToBeFixedForConfigurationCache(because = "task exercises the resolution result API")
        def "resolution result API gives access to dependency reasons in case of conflict"() {
            given:
            mavenRepo.with {
                def leaf1 = module('org.test', 'leaf', '1.0').publish()
                def leaf2 = module('org.test', 'leaf', '1.1').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30.5K bytes
    - Viewed (0)
Back to top