Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 132 for logic (0.06 sec)

  1. platforms/software/dependency-management/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-java")
    }
    
    description = """This project contains most of the dependency management logic of Gradle:
        |* the resolution engine,
        |* how to retrieve and process dependencies and their metadata,
        |* the dependency locking and verification implementations.
        |
        |DSL facing APIs are to be found in 'core-api'""".trimMargin()
    
    errorprone {
        disabledChecks.addAll(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInitScriptsIntegrationTest.groovy

        def configurationCache = newConfigurationCacheFixture()
    
        @Issue("https://github.com/gradle/gradle/issues/16849")
        def "init script can declare build logic input"() {
            given:
            TestFile buildLogicInput = file('input.txt').tap {
                text = 'foo!'
            }
            TestFile initScript = file('initscript.gradle').tap {
                text = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. pilot/pkg/xds/delta.go

    	// initialize with empty config, leading to reconnected Envoys loosing
    	// configuration. This is an additional safety check inaddition to adding
    	// cachesSynced logic to readiness probe to handle cases where kube-proxy
    	// ip tables update latencies.
    	// See https://github.com/istio/istio/issues/25495.
    	if !s.IsServerReady() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/destination_rule.go

    // IOW, given three dest rules (*.foo.com, *.foo.com, *.com) without selectors, calling this function for
    // each config will result in a final dest rule set (*.foo.com, and *.com).
    //
    // The following is the merge logic:
    // 1. Unique subsets (based on subset name) are concatenated to the original rule's list of subsets
    // 2. If the original rule did not have any top level traffic policy, traffic policies from the new rule will be
    // used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationIntegrationTest.groovy

    abstract class AbstractProcessInstrumentationIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
        // Note that all tests use a relative path to the script because its absolute path may contain
        // spaces and it breaks logic String.execute which splits the given string at spaces without
        // any options to escape the space.
        ShellScript baseScript = ShellScript.builder().printEnvironmentVariable('FOOBAR').printWorkingDir().writeTo(testDirectory, "test")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_node_status.go

    		return false
    	}
    
    	if originalNodeReady.Status == v1.ConditionTrue {
    		return true
    	}
    
    	// This is in addition to the regular syncNodeStatus logic so we can get the container runtime status earlier.
    	// This function itself has a mutex and it doesn't recursively call fastNodeStatusUpdate or syncNodeStatus.
    	kl.updateRuntimeUp()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/transfer/SimplexTransferListener.java

    import static java.util.Objects.requireNonNull;
    
    /**
     * A {@link TransferListener} implementation that wraps another delegate {@link TransferListener} but makes it run
     * on single thread, keeping the listener logic simple. This listener also blocks on last transfer event to allow
     * output to perform possible cleanup. It spawns a daemon thread to consume queued events that may fall in even
     * concurrently.
     *
     * @since 4.0.0
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 20:50:56 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. docs/en/data/github_sponsors.yml

        url: https://github.com/apitally
      - login: logic-automation
        avatarUrl: https://avatars.githubusercontent.com/u/144732884?v=4
        url: https://github.com/logic-automation
      - login: ddilidili
        avatarUrl: https://avatars.githubusercontent.com/u/42176885?u=c0a849dde06987434653197b5f638d3deb55fc6c&v=4
        url: https://github.com/ddilidili
      - login: ramonalmeidam
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 27K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiPhasedBuildActionIntegrationTest.groovy

            executer.withArguments(ENABLE_CLI)
            def models = runPhasedBuildAction(new FetchPartialCustomModelForEachProject(), new FetchCustomModelForEachProject()) {
                // Empty list means "run tasks defined by build logic or default tasks"
                forTasks([])
            }
    
            then:
            def messages = models.left
            messages.size() == 2
            messages[0] == "It works from project :"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. pkg/envoy/proxy.go

    		// than the flush interval.
    		"--file-flush-interval-msec", "1000",
    		"--disable-hot-restart", // We don't use it, so disable it to simplify Envoy's logic
    		"--allow-unknown-static-fields",
    	}
    
    	startupArgs = append(startupArgs, e.extraArgs...)
    
    	if overrideFname != "" {
    		s, err := readBootstrapToJSON(overrideFname)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top