Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,505 for Mutation (0.2 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/MutationFailureFromProviderConfigureRealizedDomainObjectContainerIntegrationTest.groovy

     */
    
    package org.gradle.api
    
    abstract class MutationFailureFromProviderConfigureRealizedDomainObjectContainerIntegrationTest extends AbstractDomainObjectContainerIntegrationTest {
        def "cannot execute mutation method #mutationMethod.key from Provider.configure (realized)"() {
            buildFile << """
                realized.configure {
                    ${mutationMethod.value}
                }
                toBeRealized.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 05 09:53:33 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/MutationFailureFromRegisterDomainObjectContainerIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.api
    
    abstract class MutationFailureFromRegisterDomainObjectContainerIntegrationTest extends AbstractDomainObjectContainerIntegrationTest {
        def "cannot execute mutation method #mutationMethod.key from register"() {
            buildFile << """
                testContainer.register("a") {
                    ${mutationMethod.value}
                }.get()
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 05 09:53:33 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/graph/MutableValueGraph.java

    import com.google.common.annotations.Beta;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import javax.annotation.CheckForNull;
    
    /**
     * A subinterface of {@link ValueGraph} which adds mutation methods. When mutation is not required,
     * users should prefer the {@link ValueGraph} interface.
     *
     * @author James Sexton
     * @param <N> Node parameter type
     * @param <V> Value parameter type
     * @since 20.0
     */
    @Beta
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  4. pkg/securitycontext/accessors_test.go

    			if !reflect.DeepEqual(podSC, originalPodSC) {
    				t.Errorf("%s: unexpected mutation: %#v, %#v", k, podSC, originalPodSC)
    			}
    			if !reflect.DeepEqual(sc, originalSC) {
    				t.Errorf("%s: unexpected mutation: %#v, %#v", k, sc, originalSC)
    			}
    			if !reflect.DeepEqual(m.ContainerSecurityContext(), originalSC) {
    				t.Errorf("%s: unexpected mutation: %#v, %#v", k, m.ContainerSecurityContext(), originalSC)
    			}
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 16:15:27 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/MutationFailureFromMatchingConfigureEachDomainObjectContainerIntegrationTest.groovy

     */
    
    package org.gradle.api
    
    abstract class MutationFailureFromMatchingConfigureEachDomainObjectContainerIntegrationTest extends AbstractDomainObjectContainerIntegrationTest {
        def "cannot execute mutation method #mutationMethod.key from matching.configureEach"() {
            buildFile << """
                testContainer.matching({ it in testContainer.type }).configureEach {
                    ${mutationMethod.value}
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 05 09:53:33 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/mutation/unstructured/typeresolver.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package unstructured
    
    import (
    	"strings"
    
    	"k8s.io/apiserver/pkg/cel/mutation/common"
    )
    
    const object = common.RootTypeReferenceName
    
    type TypeResolver struct {
    }
    
    // Resolve resolves the TypeRef for the given type name
    // that starts with "Object".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 00:01:35 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/FinalizableValue.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal;
    
    /**
     * Mutable value type for which mutation can be disabled at a certain point in time,
     * by calling the {@code disableFurtherMutations()} method.
     * <p>
     * After {@code disableFurtherMutations()} has been called, any subsequent calls to methods that mutate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 18:48:59 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller.go

    		panic(err)
    	}
    
    	for _, curr := range list {
    		if curr.Spec.Group != group {
    			continue
    		}
    
    		// for each item here, see if we have a mutation cache entry that is more recent
    		// this makes sure that if we tight loop on update and run, our mutation cache will show
    		// us the version of the objects we just updated to.
    		item := curr
    		obj, exists, err := c.crdMutationCache.GetByKey(curr.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/MutableNetwork.java

     */
    
    package com.google.common.graph;
    
    import com.google.common.annotations.Beta;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    
    /**
     * A subinterface of {@link Network} which adds mutation methods. When mutation is not required,
     * users should prefer the {@link Network} interface.
     *
     * @author James Sexton
     * @author Joshua O'Madadhain
     * @param <N> Node parameter type
     * @param <E> Edge parameter type
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/DirectoryTree.java

    package org.gradle.api.file;
    
    import org.gradle.api.tasks.util.PatternSet;
    
    import java.io.File;
    
    /**
     * <p>A directory with some associated include and exclude patterns.</p>
     *
     * <p>This interface does not allow mutation. However, the actual implementation may not be immutable.</p>
     */
    public interface DirectoryTree {
        /**
         * Returns the base directory of this tree.
         * @return The base dir, never returns null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.2K bytes
    - Viewed (0)
Back to top