Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 630 for esbuild (0.66 sec)

  1. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinBuildScriptModelCrossVersionSpec.groovy

            assertTrue barJar.isFile()
    
            def parentBuildScript = withFile("$location/build.gradle.kts", buildScriptDependencyOn(parentJar))
            def fooBuildScript = withFile("$location/foo/build.gradle.kts", buildScriptDependencyOn(fooJar))
            def barBuildScript = withFile("$location/bar/build.gradle.kts", buildScriptDependencyOn(barJar))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 08:52:51 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginTest.kt

                        project.run {
                            copy {
                                from("build.gradle.kts")
                                into("build/build.gradle.kts.copy")
                            }
                        }
                    }
                }
    
                """
            )
    
            val result = build("classes")
    
            result.assertTaskExecuted(":compileKotlin")
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

        def "can build plugin with project dependencies"() {
            given:
            createDirs("my-lib", "my-plugin")
            settingsFile << """
                include 'my-lib'
                include 'my-plugin'
            """
            file('my-lib/build.gradle') << """
                plugins { id 'java' }
            """
            file('my-plugin/build.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java

        super.setUp();
    
        fakeTicker = new FakeTicker();
      }
    
      public void testLoader() throws ExecutionException {
    
        final Cache<Integer, Integer> cache = CacheBuilder.newBuilder().build();
    
        Callable<Integer> loader =
            new Callable<Integer>() {
              private int i = 0;
    
              @Override
              public Integer call() throws Exception {
                return ++i;
              }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Aug 05 17:21:46 UTC 2022
    - 15.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginCrossVersionSmokeTest.kt

                )
    
                assertThat(
                    output,
                    containsString("some!")
                )
            }
        }
    
        @Test
        @Requires(
            IntegTestPreconditions.NotEmbeddedExecutor::class,
            reason = "Kotlin version leaks on the classpath when running embedded"
        )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/net/HostAndPort.java

          return Objects.equal(this.host, that.host) && this.port == that.port;
        }
        return false;
      }
    
      @Override
      public int hashCode() {
        return Objects.hashCode(host, port);
      }
    
      /** Rebuild the host:port string, including brackets if necessary. */
      @Override
      public String toString() {
        // "[]:12345" requires 8 extra bytes.
        StringBuilder builder = new StringBuilder(host.length() + 8);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/cache/CacheEvictionTest.java

          assertEquals(i, CacheTesting.getTotalSegmentSize(cache));
        }
      }
    
      public void testEviction_setMaxSegmentWeight() {
        IdentityLoader<Object> loader = identityLoader();
        for (int i = 1; i < 1000; i++) {
          LoadingCache<Object, Object> cache =
              CacheBuilder.newBuilder().maximumWeight(i).weigher(constantWeigher(1)).build(loader);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 14.9K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache-local/src/integTest/groovy/org/gradle/caching/local/internal/AbstractBuildCacheCleanupIntegrationTest.groovy

            2                 | null                   | 2                | "configured period for build cache cleanup"
            null              | 2                      | 2                | "configured period for deprecated build cache cleanup"
            1                 | 10                     | 10               | "configured period for deprecated build cache cleanup when both are configured"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

        }
    
        private List<String> projectsWithBuildScripts(Collection<String> projects) {
            def result = []
            for (path in projects) {
                def baseName = path == ':' ? "build" : (path.drop(1).replace(':', '/') + "/build")
                if (spec.file("${baseName}.gradle").isFile() || spec.file("${baseName}.gradle.kts").isFile()) {
                    result.add(path)
                }
            }
            return result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. maven-model/src/test/java/org/apache/maven/model/merge/MavenMergerTest.java

        }
    
        @Test
        public void mergeSameFilters()
        {
            Build target = new Build();
            target.setFilters( Arrays.asList( "first", "second", "third" ) );
            Build source = new Build();
            source.setFilters( Arrays.asList( "first", "second", "third" ) );
    
            modelMerger.mergeBuild( target, source, true, null );
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top