Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 968 for Mutated (0.11 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/EnvironmentChangeTracker.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    
    @ServiceScope(Scope.BuildTree.class)
    public interface EnvironmentChangeTracker {
    
        /**
         * System properties mutated in runtime
         * */
        void systemPropertyChanged(Object key, @Nullable Object value, @Nullable String consumer);
    
        /**
         * System properties loaded from included build/buildSrc gradle.properties
         * */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/graph/MapIteratorCache.java

    /**
     * A map-like data structure that wraps a backing map and caches values while iterating through
     * {@link #unmodifiableKeySet()}. By design, the cache is cleared when this structure is mutated. If
     * this structure is never mutated, it provides a thread-safe view of the backing map.
     *
     * <p>The {@link MapIteratorCache} assumes ownership of the backing map, and cannot guarantee
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/conversion.go

    	Attributes
    	// VersionedOldObject holds Attributes.OldObject (if non-nil), converted to VersionedKind.
    	// It must never be mutated.
    	VersionedOldObject runtime.Object
    	// VersionedObject holds Attributes.Object (if non-nil), converted to VersionedKind.
    	// If mutated, Dirty must be set to true by the mutator.
    	VersionedObject runtime.Object
    	// VersionedKind holds the fully qualified kind
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/surroundingobject.go

    //
    //	acc(obj) == x
    //	reflect.DeepEqual(acc(DeepCopy(obj), x) == x
    //
    // where x is the original instance for slices and maps.
    //
    // If after computation of acc the node holding x in obj is mutated (e.g. pruned),
    // the accessor will return that mutated node value (e.g. the pruned x).
    //
    // Example (ignoring the last two return values):
    //
    //	NewRootObjectFunc()(x) == x
    //	NewRootObjectFunc().Index()(x) == [x]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelActionRole.java

        Defaults(ModelNode.State.DefaultsApplied, true), // Allows a mutation to setup default values for an element
        Initialize(ModelNode.State.Initialized, true), // Mutation action provided when an element is defined
        Mutate(ModelNode.State.Mutated, true), // Customisations
        Finalize(ModelNode.State.Finalized, true), // Post customisation default values
        Validate(ModelNode.State.SelfClosed, true); // Post mutation validations
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/resource/amount_test.go

    				t.Errorf("%v: overflow addition mutated source: %d", test, c)
    			}
    		}
    
    		// addition is commutative
    		c = test.b
    		if ok := c.Add(test.a); ok != test.ok {
    			t.Errorf("%v: unexpected ok: %t", test, ok)
    		}
    		if ok {
    			if c != test.c {
    				t.Errorf("%v: unexpected result: %d", test, c)
    			}
    		} else {
    			if c != test.b {
    				t.Errorf("%v: overflow addition mutated source: %d", test, c)
    			}
    		}
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 20:54:15 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/config/LoggingSystem.java

     * limitations under the License.
     */
    
    package org.gradle.internal.logging.config;
    
    /**
     * Some configurable logging system, whose state can be snapshot, mutated and restored.
     */
    public interface LoggingSystem {
        /**
         * Snapshots the current configuration state of this logging system.
         */
        Snapshot snapshot();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/FinalizedExecutionPlan.java

    package org.gradle.execution.plan;
    
    import org.gradle.api.Describable;
    
    import javax.annotation.concurrent.ThreadSafe;
    import java.io.Closeable;
    
    /**
     * An execution plan that has been finalized and can no longer be mutated.
     */
    @ThreadSafe
    public interface FinalizedExecutionPlan extends Describable, Closeable {
        FinalizedExecutionPlan EMPTY = new FinalizedExecutionPlan() {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 20:13:45 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/internal/PluginRepositoryHandlerProvider.java

    public interface PluginRepositoryHandlerProvider {
        /**
         * Returns the {@link RepositoryHandler} that will contain the shared repositories to be used to resolve plugins for all project of this build.
         * Should be mutated only during settings configuration.
         */
        RepositoryHandler getPluginRepositoryHandler();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. src/internal/fuzz/mutator_test.go

    				m.r = newPcgRand()
    				m.mutate([]any{t}, workerSharedMemSize)
    			}
    		})
    	}
    }
    
    func TestStringImmutability(t *testing.T) {
    	v := []any{"hello"}
    	m := newMutator()
    	m.mutate(v, 1024)
    	original := v[0].(string)
    	originalCopy := make([]byte, len(original))
    	copy(originalCopy, []byte(original))
    	for i := 0; i < 25; i++ {
    		m.mutate(v, 1024)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 2.3K bytes
    - Viewed (0)
Back to top