Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pkg/controller/endpointslice/endpointslice_controller_test.go

    func (cmc *cacheMutationCheck) Check(t *testing.T) {
    	for _, o := range cmc.objects {
    		if !reflect.DeepEqual(o.original, o.deepCopy) {
    			// Cached objects can't be safely mutated and instead should be deep
    			// copied before changed in any way.
    			t.Errorf("Cached object was unexpectedly mutated. Original: %+v, Mutated: %+v", o.deepCopy, o.original)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K 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. 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)
  10. tensorflow/compiler/mlir/tensorflow/transforms/optimize_global_tensors.cc

      // Global tensor is already known to be immutable.
      if (!global_tensor.getIsMutable()) {
        return false;
      }
      // An exported global tensor that is not already known to be immutable might
      // be externally mutated.
      if (IsExported(global_tensor)) {
        return false;
      }
    
      // A global tensor is immutable if the resource analyzer deems it so.
      for (auto& global_tensor_use : global_tensor_uses) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top