Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 168 for happens (0.49 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/UndeclaredBuildInputListener.kt

    import org.gradle.internal.service.scopes.Scope
    import java.io.File
    
    
    @EventScope(Scope.BuildTree::class)
    interface UndeclaredBuildInputListener {
        /**
         * Called when an undeclared system property read happens.
         */
        fun systemPropertyRead(key: String, value: Any?, consumer: String?)
    
        fun envVariableRead(key: String, value: String?, consumer: String?)
    
        fun fileOpened(file: File, consumer: String?)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/DefaultClassFileTransformer.java

                return instrumentingLoader.instrumentClass(className, protectionDomain, classfileBuffer);
            } catch (Throwable th) {
                // Throwing exception from the ClassFileTransformer has no effect - if it happens, the class is loaded unchanged silently.
                // This is not something we want, so we notify the class loader about this.
                instrumentingLoader.transformFailed(className, th);
                return null;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentControl.java

                return ClassLoader.getSystemClassLoader().loadClass(agentClassName);
            } catch (ClassNotFoundException e) {
                // This typically means that the agent is not loaded at all.
                // For now, this happens when running in a no-daemon mode, or when the Gradle distribution is not available.
                LoggerFactory.getLogger(AgentControl.class).debug("Agent {} is not loaded", agentClassName);
            }
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiCompositeBuildsIntegrationTest.groovy

                fileChanged("libs/build.gradle")
                projectConfigured(":plugins")
                projectsConfigured(":libs:a", ":libs:b") // TODO - should not be configured, but this currently happens to calculate the dependency substitutions
                modelsCreated(":libs")
                modelsReused(":", ":plugins", ":libs:a", ":libs:b")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

     * builds with the configuration phase. The second mode applies the restored state to the environment and doesn't
     * track anything. This mode is used when the configuration is restored from the configuration cache.
     * Mode selection happens upon the first use of the class. Calling an operation that isn't supported in the current
     * mode results in the IllegalStateException.
     */
    
    @ServiceScope(Scope.BuildTree::class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

            val nodeCount = nodes.size
            writeSmallInt(nodeCount)
            val scheduledNodeIds = HashMap<Node, Int>(nodeCount)
            // Not all entry nodes are always scheduled.
            // In particular, it happens when the entry node is a task of the included plugin build that runs as part of building the plugin.
            // Such tasks do not rerun when configuration cache is re-used, even if specified on the command line.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

            return when {
                // TODO - always include this as a build failure;
                //  currently it is disabled when a serialization problem happens
                failDueToProblems -> {
                    ConfigurationCacheProblemsException(summary.causes, summaryText)
                }
    
                hasTooManyProblems -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

                // serialize the value directly as it will be part of the
                // cached state fingerprint.
                // Currently not necessary due to the unpacking that happens
                // to the TypeSanitizingProvider put around the ValueSourceProvider.
                throw IllegalStateException("build logic input")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                    if (!containsModule(moduleName)) {
                        /*
                         * Not patching an existing module. This case should be unusual. If it nevertheless
                         * happens, add on class-path or module-path if allowed, or keep patching otherwise.
                         * The latter case (keep patching) is okay if the main module will be defined later.
                         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. pilot/pkg/model/endpointshards.go

    	// would clear it shortly after anyways.
    	e.clearCacheForService(hostname, namespace)
    
    	return pushType
    }
    
    // updateShardServiceAccount updates the service endpoints' sa when service/endpoint event happens.
    // Note: it is not concurrent safe.
    func updateShardServiceAccount(shards *EndpointShards, serviceName string) bool {
    	oldServiceAccount := shards.ServiceAccounts
    	serviceAccounts := sets.String{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top