Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 968 for Mutated (0.16 sec)

  1. pkg/registry/networking/ingress/strategy_test.go

    	if len(errs) == 0 {
    		t.Errorf("Expected a validation error")
    	}
    	if invalidIngress.ResourceVersion != "4" {
    		t.Errorf("Incoming resource version on update should not be mutated")
    	}
    }
    
    func TestIngressStatusStrategy(t *testing.T) {
    	ctx := genericapirequest.NewDefaultContext()
    	if !StatusStrategy.NamespaceScoped() {
    		t.Errorf("Ingress must be namespace scoped")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 02 23:13:31 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/DirectoryProperty.java

         * as defined by {@link org.gradle.api.Project#files(Object...)}.
         *
         * This method can also be used to create an empty collection, but the collection may not be mutated later.
         *
         * @param paths The paths to the files. May be empty.
         * @return The file collection.
         * @since 6.0
         */
        FileCollection files(Object... paths);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 10 18:00:11 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelNode.java

            Created(true), // Private data has been created, initial rules discovered
            DefaultsApplied(true), // Default values have been applied
            Initialized(true),
            Mutated(true),
            Finalized(false),
            SelfClosed(false),
            GraphClosed(false);
    
            public final boolean mutable;
    
            State(boolean mutable) {
                this.mutable = mutable;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/hash/HashCodeTest.java

        assertSideEffectFree(hash);
        assertReadableBytes(hash);
      }
    
      private static void assertSideEffectFree(HashCode hash) {
        byte[] original = hash.asBytes();
        byte[] mutated = hash.asBytes();
        mutated[0]++;
        assertTrue(Arrays.equals(original, hash.asBytes()));
      }
    
      private static void assertReadableBytes(HashCode hashCode) {
        assertTrue(hashCode.bits() >= 32); // sanity
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/Directory.java

         * as defined by {@link org.gradle.api.Project#files(Object...)}.
         *
         * This method can also be used to create an empty collection, but the collection may not be mutated later.
         *
         * @param paths The paths to the files. May be empty.
         * @return The file collection.
         * @since 6.0
         */
        FileCollection files(Object... paths);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 15:52:49 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/variable_info_util.h

                                      std::vector<VariableInfo>* result);
    
    // variables_updated is a set containing the indices of the variables that are
    // going to be mutated. If variables_updated is empty, then in LockVariables all
    // variables would only be reader-locked. If variables_updated is null, then we
    // consider this information unknown and will acquire writer-lock for all
    // variables.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 14 21:57:02 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NodeBackedModelMapSpec.groovy

        ModelType<ModelMap<T>> getModelMapType() {
            ModelTypes.modelMap(itemType)
        }
    
        void mutate(@DelegatesTo(ModelMap) Closure<?> action) {
            registry.mutate(ModelReference.of(path, modelMapType), ClosureBackedAction.of(action))
        }
    
        void mutateWithoutDelegation(Action<ModelMap<T>> action) {
            registry.mutate(ModelReference.of(path, modelMapType), action)
        }
    
        void realize() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuild.java

            boolean isImplicit,
            BuildState owner,
            BuildTreeState buildTree,
            Instantiator instantiator
        ) {
            // Use a defensive copy of the build definition, as it may be mutated during build execution
            super(buildTree, buildDefinition.newInstance(), owner);
            this.buildIdentifier = buildIdentifier;
            this.identityPath = Path.path(buildIdentifier.getBuildPath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 15:09:14 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. pkg/kubelet/lifecycle/interfaces.go

    limitations under the License.
    */
    
    package lifecycle
    
    import "k8s.io/api/core/v1"
    
    // PodAdmitAttributes is the context for a pod admission decision.
    // The member fields of this struct should never be mutated.
    type PodAdmitAttributes struct {
    	// the pod to evaluate for admission
    	Pod *v1.Pod
    	// all pods bound to the kubelet excluding the pod being evaluated
    	OtherPods []*v1.Pod
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 17:25:57 UTC 2017
    - 4K bytes
    - Viewed (0)
  10. 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)
Back to top