Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 264 for github (0.42 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

            where:
            dynamicPropertyExpression << [
                'gradleProp',
                'ext.gradleProp'
            ]
        }
    
        @Issue("https://github.com/gradle/gradle/issues/19793")
        def "gradle properties must be accessible from task in #build"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            build.setup(this)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/graph/Traverser.java

     *       to be traversed is a tree or forest even if it is a subgraph of a graph which is neither.)
     *   <li>Are the node objects' implementations of {@code equals()}/{@code hashCode()} <a
     *       href="https://github.com/google/guava/wiki/GraphsExplained#non-recursiveness">recursive</a>?
     * </ol>
     *
     * <p>If your answers are:
     *
     * <ul>
     *   <li>(1) "no" and (2) "no", use {@link #forGraph(SuccessorsFunction)}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/graph/Traverser.java

     *       to be traversed is a tree or forest even if it is a subgraph of a graph which is neither.)
     *   <li>Are the node objects' implementations of {@code equals()}/{@code hashCode()} <a
     *       href="https://github.com/google/guava/wiki/GraphsExplained#non-recursiveness">recursive</a>?
     * </ol>
     *
     * <p>If your answers are:
     *
     * <ul>
     *   <li>(1) "no" and (2) "no", use {@link #forGraph(SuccessorsFunction)}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Queues.java

       * ordering.
       *
       * @since 11.0 (but the bound of {@code E} was changed from {@code Object} to {@code Comparable}
       *     in 15.0)
       */
      @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989
      @J2ktIncompatible
      @GwtIncompatible // PriorityBlockingQueue
      public static <E extends Comparable> PriorityBlockingQueue<E> newPriorityBlockingQueue() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/DependencyHandlerExtensionsTest.kt

                    )
                }
            }
    
            assertThat(
                events,
                equalTo(listOf("created", "configured", "added"))
            )
        }
    
        @Test
        @Issue("https://github.com/gradle/gradle/issues/16865")
        fun `given string notation, 'create' extension will create and configure dependency`() {
    
            val dependencyHandlerMock = newDependencyHandlerMock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/TreeBasedTable.java

     * concurrently and one of the threads modifies the table, it must be synchronized externally.
     *
     * <p>See the Guava User Guide article on <a href=
     * "https://github.com/google/guava/wiki/NewCollectionTypesExplained#table">{@code Table}</a>.
     *
     * @author Jared Levy
     * @author Louis Wasserman
     * @since 7.0
     */
    @GwtCompatible(serializable = true)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/Hashing.java

      @SuppressWarnings("GoodTime") // reading system time without TimeSource
      static final int GOOD_FAST_HASH_SEED = (int) System.currentTimeMillis();
    
      /**
       * Returns a hash function implementing the <a
       * href="https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp">32-bit murmur3
       * algorithm, x86 variant</a> (little-endian variant), using the given seed value, <b>with a known
       * bug</b> as described in the deprecation text.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

        assertThat(ClassPath.getClassPathEntries(new ClassLoader(parent) {}))
            .containsExactly(new File("/a"), grandParent);
      }
    
      @AndroidIncompatible // Android forbids null parent ClassLoader
      // https://github.com/google/guava/issues/2152
      public void testClassPathEntries_URLClassLoader_pathWithSpace() throws Exception {
        URL url = new URL("file:///c:/Documents and Settings/");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Queues.java

       * ordering.
       *
       * @since 11.0 (but the bound of {@code E} was changed from {@code Object} to {@code Comparable}
       *     in 15.0)
       */
      @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989
      @J2ktIncompatible
      @GwtIncompatible // PriorityBlockingQueue
      public static <E extends Comparable> PriorityBlockingQueue<E> newPriorityBlockingQueue() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginAccessorsTest.kt

                """
                dependencies {
                    implementation("com.github.jruby-gradle:jruby-gradle-plugin:1.4.0")
                }
                """
            )
    
            withPrecompiledKotlinScript(
                "plugin.gradle.kts",
                """
                plugins {
                    com.github.`jruby-gradle`.base
                }
                """
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 29.6K bytes
    - Viewed (0)
Back to top