Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for deflate (0.21 sec)

  1. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

                modelBuilder.get()
            }
        }
    
        private static boolean documentIsEquivalentTo(
            String expectedDocumentText,
            def actualDocument // can't declare it as DeclarativeDocument, throws NCDFE from the test runner (???)
        ) {
            def doc = actualDocument as DeclarativeDocument
            def parsed = ParserKt.parse(expectedDocumentText)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. src/time/tick_test.go

    	t.Ticker.Reset(d)
    	return pending
    }
    
    func testTimerChan(t *testing.T, tim timer, C <-chan Time, synctimerchan bool) {
    	_, isTimer := tim.(*Timer)
    	isTicker := !isTimer
    
    	// Retry parameters. Enough to deflake even on slow machines.
    	// Windows in particular has very coarse timers so we have to
    	// wait 10ms just to make a timer go off.
    	const (
    		sched      = 10 * Millisecond
    		tries      = 100
    		drainTries = 5
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    This will effectively lock all resolvable configurations that have locking enabled.
    Note that in a multi project setup, `dependencies` only is executed on _one_ project, the root one in this case.
    * Declare a custom task that resolves all configurations. This does not work for Android projects.
    
    .Resolving all configurations
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. api/maven-api-plugin/src/main/mdo/plugin.mdo

              </association>
              <description>
                A set of dependencies which the plugin requires in order to function. This enables the plugin to function
                independently of its POM (or at least to declare the libraries it needs to run).
              </description>
            </field>
          </fields>
          <codeSegments>
            <codeSegment>
              <version>2.0.0+</version>
              <code><![CDATA[
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                @Override
                public void execute(Capability capability) {
                    // This is a performance optimization. Most modules do not declare capabilities. So, instead of systematically registering
                    // an implicit capability for each module that we see, we only consider modules which _declare_ capabilities. If they do,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    We believe this situation is very unlikely to occur in real projects, as IDE integration and test execution would not work correctly.
    If you need to use the Gradle API, declare a `gradleApi` dependency or use the `java-gradle-plugin` plugin.
    
    ==== Configuration cache implementation packages now under `org.gradle.internal`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  7. doc/go_spec.html

    <p>
    The built-in function <code>delete</code> removes the element with key
    <code>k</code> from a <a href="#Map_types">map</a> <code>m</code>. The
    value <code>k</code> must be <a href="#Assignability">assignable</a>
    to the key type of <code>m</code>.
    </p>
    
    <pre class="grammar">
    delete(m, k)  // remove element m[k] from map m
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/inline.go

    		n++
    	}
    
    	// If we've already scanned the whole string (for a different count),
    	// we can skip a failed scan by checking whether we saw this count.
    	// To enable this optimization, following cmark-gfm, we declare by fiat
    	// that more than maxBackticks backquotes is too many.
    	if n > len(b.last) || b.scanned && b.last[n-1] < i+n {
    		goto NoMatch
    	}
    
    	for end := i + n; end < len(s); {
    		if s[end] != '`' {
    			end++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       smallest sensible numbers of threads, collection sizes, etc needed to check basic
     *       conformance.
     *   <li>The test classes currently do not declare inclusion in any particular package to simplify
     *       things for people integrating them in TCK test suites.
     *   <li>As a convenience, the {@code main} of this class (JSR166TestCase) runs all JSR166 unit
     *       tests.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

                    + " java.lang.NullPointerException]]");
      }
    
      public void testSetIndirectSelf_toString() {
        final SettableFuture<Object> orig = SettableFuture.create();
        // unlike the above this indirection defeats the trivial cycle detection and causes a SOE
        orig.setFuture(
            new ForwardingListenableFuture<Object>() {
              @Override
              protected ListenableFuture<Object> delegate() {
                return orig;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
Back to top