Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 968 for Mutated (0.13 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

                }
            }
            registry.configure(ModelActionRole.Mutate) {
                it.path("b").descriptor("b-mutate").action { Bean b ->
                    b.value = "b-mutate"
                }
            }
            registry.configure(ModelActionRole.Mutate) {
                it.path("a").descriptor("a-mutate").action { Bean a ->
                    a.value = "a-mutate"
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/projectresult/ResolvedLocalComponentsResultGraphVisitor.java

    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * Used to track which configurations in other projects a given resolution depends on. This data is
     * used to mark those configurations as observed so that they cannot be mutated later.
     *
     * <strong>Do not build on-top of this visitor. If you want to track cross-project dependencies,
     * use {@link org.gradle.api.internal.artifacts.configurations.ProjectComponentObservationListener}</strong>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentGraphResolveState.java

         * Returns the candidates for variant selection during graph resolution.
         */
        GraphSelectionCandidates getCandidatesForGraphVariantSelection();
    
        /**
         * Does this instance represent some temporary or mutated view of the component?
         *
         * Generally you should avoid retaining ad hoc instances in memory, whereas non-ad hoc instances can safely be cached for the lifetime of the build tree.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fuzz_mutator.txt

    # Each fuzz function writes the input to a log file. The coordinator and worker
    # use separate log files. check_logs.go verifies that the coordinator only
    # tests seed values and the worker tests mutated values on the fuzz target.
    
    [short] skip
    env GOCACHE=$WORK/cache
    
    go test -fuzz=FuzzA -fuzztime=100x -parallel=1 -log=fuzz
    go run check_logs.go fuzz fuzz.worker
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNode.java

         */
        protected abstract FileSystemNode withIncompleteChildren();
    
        /**
         * Returns an updated node with an updated list of children.
         *
         * Caller must ensure the child list is not be mutated as the method
         * doesn't make a defensive copy.
         */
        protected abstract FileSystemNode withIncompleteChildren(ChildMap<? extends FileSystemNode> newChildren);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/resolver/MavenChainedWorkspaceReader.java

    /**
     * A maven workspace reader that delegates to a chain of other readers, effectively aggregating their contents.
     * <p>
     * This class, while technically is not immutable, should be considered as such once set up. If not mutated, it is also
     * thread-safe. The mutation of this class instances should happen beforehand their use in session.
     */
    public class MavenChainedWorkspaceReader implements MavenWorkspaceReader {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/cycle_state.go

    	}
    	copy := NewCycleState()
    	// Safe copy storage in case of overwriting.
    	c.storage.Range(func(k, v interface{}) bool {
    		copy.storage.Store(k, v.(StateData).Clone())
    		return true
    	})
    	// The below are not mutated, so we don't have to safe copy.
    	copy.recordPluginMetrics = c.recordPluginMetrics
    	copy.SkipFilterPlugins = c.SkipFilterPlugins
    	copy.SkipScorePlugins = c.SkipScorePlugins
    
    	return copy
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 06:48:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. src/go/types/check.go

    	if info == nil {
    		info = new(Info)
    	}
    
    	// Note: clients may call NewChecker with the Unsafe package, which is
    	// globally shared and must not be mutated. Therefore NewChecker must not
    	// mutate *pkg.
    	//
    	// (previously, pkg.goVersion was mutated here: go.dev/issue/61212)
    
    	// In go/types, conf._EnableAlias is controlled by gotypesalias.
    	conf._EnableAlias = gotypesalias.Value() != "0"
    
    	return &Checker{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

        fun addSystemPropertyToFingerprint(key: String, value: Any?, consumer: String? = null) {
            if (isSystemPropertyMutated(key)) {
                // Mutated values of the system properties are not part of the fingerprint, as their value is
                // set at the configuration time. Everything that reads a mutated property value should be saved
                // as a fixed value.
                return
            }
            val propertyValue =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/connection/FastFallbackExchangeFinder.kt

      private var nextTcpConnectAtNanos = Long.MIN_VALUE
    
      /**
       * Plans currently being connected, and that will later be added to [connectResults]. This is
       * mutated by the call thread only. If is accessed by background connect threads.
       */
      private val tcpConnectsInFlight = CopyOnWriteArrayList<Plan>()
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top