Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for isIncremental (0.2 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeCreator.kt

    import org.jetbrains.kotlin.analysis.api.types.KaTypeParameterType
    import org.jetbrains.kotlin.descriptors.ClassDescriptor
    import org.jetbrains.kotlin.descriptors.TypeParameterDescriptor
    import org.jetbrains.kotlin.incremental.components.NoLookupLocation
    import org.jetbrains.kotlin.name.SpecialNames
    import org.jetbrains.kotlin.types.SimpleType
    import org.jetbrains.kotlin.types.StarProjectionImpl
    import org.jetbrains.kotlin.types.TypeProjectionImpl
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Source for JavaCompile, JavaExec and Javadoc tasks, it also contains logic for incremental Java compilation"
    
    errorprone {
        disabledChecks.addAll(
            "CheckReturnValue", // 2 occurrences
            "DoNotClaimAnnotations", // 6 occurrences
            "InconsistentCapitalization", // 1 occurrences
            "InvalidInlineTag", // 3 occurrences
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/injected-services-should-have-service-scope-applied.txt

    Class <org.gradle.api.internal.tasks.compile.GroovyCompilerFactory> is not annotated with @ServiceScope in (GroovyCompilerFactory.java:0)
    Class <org.gradle.api.internal.tasks.compile.incremental.IncrementalCompilerFactory> is not annotated with @ServiceScope in (IncrementalCompilerFactory.java:0)
    Class <org.gradle.api.internal.tasks.options.OptionReader> is not annotated with @ServiceScope in (OptionReader.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.internal.tasks.compile.incremental.RecompilationNotNecessary> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (RecompilationNotNecessary.java:0)
    Class <org.gradle.api.internal.tasks.compile.incremental.SelectiveCompiler> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (SelectiveCompiler.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
  5. pilot/pkg/xds/delta.go

    	}
    
    	if !s.ProxyNeedsPush(con.proxy, pushRequest) {
    		deltaLog.Debugf("Skipping push to %v, no updates required", con.ID())
    		if pushRequest.Full {
    			// Only report for full versions, incremental pushes do not have a new version
    			reportAllEventsForProxyNoPush(con, s.StatusReporter, pushRequest.Push.LedgerVersion)
    		}
    		return nil
    	}
    
    	// Send pushes to all generators
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/build.gradle.kts

    import java.util.Properties
    
    plugins {
        id("gradlebuild.internal.java")
    }
    
    description = "Collection of test fixtures for integration tests, internal use only"
    
    sourceSets {
        main {
            // Incremental Groovy joint-compilation doesn't work with the Error Prone annotation processor
            errorprone.enabled = false
        }
    }
    
    dependencies {
        api(project(":base-services")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. pilot/pkg/model/endpointshards.go

    // It also tracks the changes to ServiceAccounts. It returns whether endpoints need to be pushed and
    // it also returns if they need to be pushed whether a full push is needed or incremental push is sufficient.
    func (e *EndpointIndex) UpdateServiceEndpoints(
    	shard ShardKey,
    	hostname string,
    	namespace string,
    	istioEndpoints []*IstioEndpoint,
    ) PushType {
    	if len(istioEndpoints) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. subprojects/core/build.gradle.kts

        optionalProjects.add("gradle-runtime-api-info")
    }
    
    // Instrumentation interceptors for tests
    // Separated from the test source set since we don't support incremental annotation processor with Java/Groovy joint compilation
    sourceSets {
        val testInterceptors = create("testInterceptors") {
            compileClasspath += sourceSets.main.get().output
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    The Daemon enables in-memory caching across builds.
    This includes classes for plugins and build scripts.
    
    Similarly, the Daemon maintains in-memory caches of build data, such as the hashes of task inputs and outputs for incremental builds.
    
    == Performance Monitoring
    
    Gradle actively monitors heap usage to detect memory leaks in the Daemon.
    
    When a memory leak exhausts available heap space, the Daemon:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. pkg/kubelet/config/config.go

    	ObservedPodOnWatch(pod *v1.Pod, when time.Time)
    }
    
    // PodConfig is a configuration mux that merges many sources of pod configuration into a single
    // consistent structure, and then delivers incremental change notifications to listeners
    // in order.
    type PodConfig struct {
    	pods *podStorage
    	mux  *mux
    
    	// the channel of denormalized changes passed to listeners
    	updates chan kubetypes.PodUpdate
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top