Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 90 for projected (0.18 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

       * instance, since {@code PermittedExceptions} is thrown only when a method call is invalid.
       *
       * <p>This class is accessible but not supported in GWT as it references {@link
       * PermittedMetaException}.
       */
      protected final class MultiExceptionListIterator implements ListIterator<E> {
        // TODO: track seen elements when order isn't guaranteed
        // TODO: verify contents afterward
        // TODO: something shiny and new instead of Stack
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/AbstractUserTypeCodecTest.kt

    import org.hamcrest.MatcherAssert.assertThat
    import java.io.ByteArrayInputStream
    import java.io.ByteArrayOutputStream
    import java.io.OutputStream
    
    
    abstract class AbstractUserTypeCodecTest {
    
        protected
        fun serializationProblemsOf(bean: Any, codec: Codec<Any?> = userTypesCodec()): List<PropertyProblem> =
            mutableListOf<PropertyProblem>().also { problems ->
                writeTo(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaToolchainsIntegrationTest.groovy

    import org.gradle.integtests.fixtures.configurationcache.ConfigurationCacheBuildOperationsFixture
    
    class ConfigurationCacheJavaToolchainsIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        protected ConfigurationCacheBuildOperationsFixture configurationCache
    
        def setup() {
            configurationCache = newConfigurationCacheFixture()
        }
    
        def "show toolchains task works properly"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/AbstractConfigurationCacheOptInFeatureIntegrationTest.groovy

    abstract class AbstractConfigurationCacheOptInFeatureIntegrationTest extends AbstractIntegrationSpec {
        static final String WARN_PROBLEMS_CLI_OPT = "--${StartParameterBuildOptions.ConfigurationCacheProblemsOption.LONG_OPTION}=warn"
    
        protected ConfigurationCacheProblemsFixture problems
    
        def setup() {
            // Verify that the previous test cleaned up state correctly
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/TaskExecutionAccessCheckers.kt

                broadcaster.onConventionAccess(invocationDescription, task, currentTask())
            }
        }
    
        private
        fun currentTask() = workExecutionTracker.currentTask.orElse(null)
    
        protected
        abstract fun shouldReportExecutionTimeAccess(task: TaskInternal): Boolean
    }
    
    
    object TaskExecutionAccessCheckers {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/VisitableURLClassLoader.java

        private final String name;
    
        public VisitableURLClassLoader(String name, ClassLoader parent, Collection<URL> urls) {
            this(name, urls.toArray(new URL[0]), parent);
        }
    
        protected VisitableURLClassLoader(String name, ClassLoader parent, ClassPath classPath) {
            this(name, classPath.getAsURLArray(), parent);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

       * instance, since {@code PermittedExceptions} is thrown only when a method call is invalid.
       *
       * <p>This class is accessible but not supported in GWT as it references {@link
       * PermittedMetaException}.
       */
      protected final class MultiExceptionListIterator implements ListIterator<E> {
        // TODO: track seen elements when order isn't guaranteed
        // TODO: verify contents afterward
        // TODO: something shiny and new instead of Stack
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. common/scripts/setup_env.sh

        TARGET_OS=darwin
        readlink_flags=""
    else
        echo "This system's OS, $LOCAL_OS, isn't supported"
        exit 1
    fi
    
    # Build image to use
    TOOLS_REGISTRY_PROVIDER=${TOOLS_REGISTRY_PROVIDER:-gcr.io}
    PROJECT_ID=${PROJECT_ID:-istio-testing}
    if [[ "${IMAGE_VERSION:-}" == "" ]]; then
      IMAGE_VERSION=master-89ff97db972e1ec7d61a7831bf9408f509e17d73
    fi
    if [[ "${IMAGE_NAME:-}" == "" ]]; then
      IMAGE_NAME=build-tools
    fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

            final PackageStatementDetector packageDetector = new PackageStatementDetector();
            GroovyClassLoader groovyClassLoader = new GroovyClassLoader(classLoader, configuration, false) {
                @Override
                protected CompilationUnit createCompilationUnit(
                    CompilerConfiguration compilerConfiguration,
                    CodeSource codeSource
                ) {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/GradlePropertiesIncludedBuildFixture.groovy

        static abstract class BuildWithGradleProperties {
    
            abstract void setup(AbstractIntegrationSpec spec)
    
            abstract String task()
    
            abstract String expectedPropertyOutput()
    
            protected static String echoTaskForProperty(String propertyName) {
                """
                    task echo(type: DefaultTask) {
                        def property = providers.gradleProperty('$propertyName')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top