Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,505 for Mutation (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_dispatcher.go

    // The dispatcher delegate is responsible for updating the object on the
    // admission attributes in the case of mutation, or returning a status error in
    // the case of validation.
    //
    // The delegate provides the "validation" or "mutation" aspect of dispatcher functionality
    // (in contrast to generic.PolicyDispatcher which only selects active policies and params)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/conversion/conversion_test.go

    				client := ctc.versionedClient(ns, getVersion.Name)
    				obj, err := client.Get(context.TODO(), name, metav1.GetOptions{})
    				if err != nil {
    					t.Fatal(err)
    				}
    
    				// check that the direct mutation in etcd worked
    				labels := obj.GetLabels()
    				if labels["mutated"] != "true" {
    					t.Errorf("expected object %s in version %s to have label 'mutated=true'", name, getVersion.Name)
    				}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 47.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/metrics/metrics_test.go

    			false, true,
    		},
    	} {
    		Metrics.reset()
    
    		h := WithMetrics(test.handler, Metrics.ObserveAdmissionController, test.name)
    
    		// test mutation
    		err := h.(admission.MutationInterface).Admit(context.TODO(), admission.NewAttributesRecord(nil, nil, schema.GroupVersionKind{}, test.ns, "", schema.GroupVersionResource{}, "", test.operation, test.options, false, nil), nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:01:37 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/StandardMutableNetwork.java

    /**
     * Standard implementation of {@link MutableNetwork} that supports both directed and undirected
     * graphs. Instances of this class should be constructed with {@link NetworkBuilder}.
     *
     * <p>Time complexities for mutation methods are all O(1) except for {@code removeNode(N node)},
     * which is in O(d_node) where d_node is the degree of {@code node}.
     *
     * @author James Sexton
     * @author Joshua O'Madadhain
     * @author Omar Darwish
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/DefaultJavaToolchainRepositoryHandler.java

        @Override
        public void preventFromFurtherMutation() {
            this.mutable = false;
        }
    
        private void assertMutable() {
            if (!mutable) {
                throw new InvalidUserCodeException("Mutation of toolchain repositories declared in settings is only allowed during settings evaluation");
            }
        }
    
        private static class ImmutableJavaToolchainRepository implements JavaToolchainRepositoryInternal {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/graph/StandardMutableValueGraph.java

    /**
     * Standard implementation of {@link MutableValueGraph} that supports both directed and undirected
     * graphs. Instances of this class should be constructed with {@link ValueGraphBuilder}.
     *
     * <p>Time complexities for mutation methods are all O(1) except for {@code removeNode(N node)},
     * which is in O(d_node) where d_node is the degree of {@code node}.
     *
     * @author James Sexton
     * @author Joshua O'Madadhain
     * @author Omar Darwish
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Oct 21 01:50:30 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/StandardMutableValueGraph.java

    /**
     * Standard implementation of {@link MutableValueGraph} that supports both directed and undirected
     * graphs. Instances of this class should be constructed with {@link ValueGraphBuilder}.
     *
     * <p>Time complexities for mutation methods are all O(1) except for {@code removeNode(N node)},
     * which is in O(d_node) where d_node is the degree of {@code node}.
     *
     * @author James Sexton
     * @author Joshua O'Madadhain
     * @author Omar Darwish
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Oct 21 01:50:30 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesInSettingsIntegrationTest.groovy

                    components.all(LoggingRule)
                }
            """
    
            when:
            fails ":help"
    
            then:
            failure.assertHasCause("Mutation of dependency resolution management in settings is only allowed during settings evaluation")
        }
    
        def "can prefer rules from settings even if project declares rules"() {
            withLoggingRuleInSettings()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfoIntegrationSpec.groovy

            """
    
            expect:
            executer.withArguments('help', '--continuous', '-i').run().assertTasksExecuted(':help')
        }
    
        //Java 9 and above needs --add-opens to make environment variable mutation work
        @Requires(UnitTestPreconditions.Jdk8OrEarlier)
        def "should capture basic data when a foreground daemon runs multiple builds"() {
            given:
            buildFile << """
            ${imports()}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/LocalTaskNode.java

            final MutationInfo mutations = getMutationInfo();
            outputFilePropertySpecs.forEach(spec -> {
                File outputLocation = spec.getOutputFile();
                mutations.outputPaths.add(outputLocation.getAbsolutePath());
                mutations.hasOutputs = true;
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top