Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 705 for Mutated (0.11 sec)

  1. api/README

    the new API. This helps with our end-of-cycle audit of new APIs.
    The same requirement applies to next/* (described below), which will
    become a go1.XX.txt for XX >= 19.
    
    The next/ directory contains the only files intended to be mutated.
    Each file in that directory contains a list of features that may be added
    to the next release of Go. The files in this directory only affect the
    warning output from the go api tool. Each file should be named
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:22:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. pkg/apis/flowcontrol/v1beta3/conversion_test.go

    			}
    			if want, got := copy.ObjectMeta.Annotations, test.in.ObjectMeta.Annotations; !cmp.Equal(want, got) {
    				t.Errorf("Did not expect the 'Annotations' field of the source to be mutated, diff: %s", cmp.Diff(want, got))
    			}
    		})
    	}
    }
    
    func TestConvert_flowcontrol_PriorityLevelConfiguration_To_v1beta3_PriorityLevelConfiguration(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/collections/ImmutableFilteredListTest.groovy

            ImmutableFilteredList.allOf([1, 2, 3]) != [1, 2]
            [1, 2] != ImmutableFilteredList.allOf([1, 2, 3])
            ImmutableFilteredList.allOf([1, 2, 3]) != [3, 1, 2]
        }
    
        def "list cannot be mutated"() {
            given:
            def list = ImmutableFilteredList.allOf([1, 2, 3])
    
            when:
            list.add(4)
    
            then:
            thrown(UnsupportedOperationException)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/math/Quantiles.java

         *
         * @param dataset the dataset to do the calculation on, which must be non-empty, which will be
         *     cast to doubles (with any associated lost of precision), and which will not be mutated by
         *     this call (it is copied instead)
         * @return the quantile value
         */
        public double compute(Collection<? extends Number> dataset) {
          return computeInPlace(Doubles.toArray(dataset));
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelSet.java

    /**
     * A set of managed model objects.
     * <p>
     * {@link org.gradle.model.Managed} types may declare managed set properties.
     * Managed sets can only contain managed types.
     * <p>
     * Managed set objects cannot be mutated via the mutative methods of the {@link java.util.Set} interface (e.g. {@link java.util.Set#add(Object)}, {@link java.util.Set#clear()}).
     * To add elements to the set, the {@link #create(Action)} method can be used.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantGraphResolveState.java

        @Override
        ImmutableAttributes getAttributes();
    
        ImmutableCapabilities getCapabilities();
    
        VariantGraphResolveMetadata getMetadata();
    
        /**
         * Does this instance represent some temporary or mutated view of the variant?
         *
         * See {@link ComponentGraphResolveState#isAdHoc()} for a definition of "ad hoc".
         */
        boolean isAdHoc();
    
        /**
         * Returns the public view for this variant.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. pkg/registry/networking/ipaddress/strategy_test.go

    	if len(errs) == 0 {
    		t.Errorf("Expected error from update validation for ipAddress, got none")
    	}
    	if invalidIPAddress.ResourceVersion != "4" {
    		t.Errorf("Incoming resource version on update should not be mutated")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 19 02:12:34 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/math/Quantiles.java

         *
         * @param dataset the dataset to do the calculation on, which must be non-empty, which will be
         *     cast to doubles (with any associated lost of precision), and which will not be mutated by
         *     this call (it is copied instead)
         * @return the quantile value
         */
        public double compute(Collection<? extends Number> dataset) {
          return computeInPlace(Doubles.toArray(dataset));
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/openapi/enablement.go

    	walker := schemamutation.Walker{
    		SchemaCallback: func(schema *spec.Schema) *spec.Schema {
    			orig := schema
    			clone := func() {
    				if orig == schema { // if schema has not been mutated yet
    					schema = new(spec.Schema)
    					*schema = *orig // make a clone from orig to schema
    				}
    			}
    			if headerIndex := strings.Index(schema.Description, enumTypeDescriptionHeader); headerIndex != -1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 06 17:24:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ImmutableClassLoaderScope.java

    import org.gradle.internal.hash.HashCode;
    
    import javax.annotation.Nullable;
    import java.util.function.Function;
    
    /**
     * A simplified scope that provides only a single local classpath and no exports, and that cannot be mutated.
     */
    public class ImmutableClassLoaderScope extends AbstractClassLoaderScope {
        private final ClassLoaderScope parent;
        private final ClassPath classPath;
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top