Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 968 for Mutated (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/compiler/jit/variable_info.h

      // thread safety analysis. Instead we use a boolean flag and release the lock
      // in the VariableInfo destructor.
      bool lock_held_ = false;
      bool shared_lock_held_ = false;
    
      // Whether this variable is going to be mutated. Left false if the caller
      // doesn't provide this information.
      bool read_only_ = false;
    };
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 14 21:57:02 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/report/IncompatibleTypeReferenceReporter.java

            writer.println(" is invalid due to incompatible types.");
            writer.print("This element was created by ");
            writer.print(creator);
            writer.print(" and can be ");
            writer.print(writable ? "mutated" : "read");
            writer.println(" as the following types:");
            boolean first = true;
            for (String candidateType : candidateTypes) {
                if (!first) {
                    writer.println();
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/debug/debug_options.proto

      // Prints MLIR after specified passes. Supports regular expressions for
      // matching against the names of the desired passes. Currently only prints
      // after a pass if the MLIR is mutated.
      optional string print_ir_after = 6 [default = ""];
    
      // If true, always print the top-level operation when printing IR for
      // print_ir_[before|after].
      optional bool print_ir_module_scope = 7 [default = true];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top