Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 863 for calculateId (0.2 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate.java

    import org.apache.maven.project.MavenProject;
    
    /**
     * Lifecycle mapping delegate component interface. Calculates project build execution plan given {@link Lifecycle} and
     * lifecycle phase. Standard lifecycles use plugin execution {@code <phase>} or mojo default lifecycle phase to
     * calculate the execution plan, but custom lifecycles can use alternative mapping strategies.
     */
    @Named(DefaultLifecycleMappingDelegate.HINT)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/PacMac.java

                c = b;
                b = a % b;
                a = c;
            }
            return u * v / a;
        }
    
    
        /**
         * @param type
         * @param keys
         * @return the calculated mac
         * @throws PACDecodingException
         */
        public static byte[] calculateMac ( int type, Map<Integer, KerberosKey> keys, byte[] data ) throws PACDecodingException {
            try {
                int usage = 17;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedModelValue.java

    import javax.annotation.Nullable;
    import javax.annotation.concurrent.ThreadSafe;
    import java.util.function.Function;
    
    /**
     * Represents a value that is calculated from some mutable state managed by a {@link ModelContainer}, where the calculated value may
     * be used by multiple threads.
     */
    @ThreadSafe
    public interface CalculatedModelValue<T> {
        /**
         * Returns the current value, failing if not present.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedValueFactory.java

    @ServiceScope(Scope.BuildSession.class)
    public interface CalculatedValueFactory {
        /**
         * Creates a calculated value that has no dependencies and that does not access any mutable model state.
         */
        <T> CalculatedValue<T> create(DisplayName displayName, Supplier<? extends T> supplier);
    
        /**
         * A convenience to create a calculated value that has already been produced.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/math/Quantiles.java

        /**
         * Specifies a single quantile index to be calculated, i.e. the k in the kth q-quantile.
         *
         * @param index the quantile index, which must be in the inclusive range [0, q] for q-quantiles
         */
        public ScaleAndIndex index(int index) {
          return new ScaleAndIndex(scale, index);
        }
    
        /**
         * Specifies multiple quantile indexes to be calculated, each index being the k in the kth
         * q-quantile.
    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. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Managed.java

     * In both cases, the implementation of the calculated property getter may not call any setter method.
     *
     * <h3>Abstract classes</h3>
     * <p>
     * A managed type can be implemented as an abstract class.
     * All property getters and setters must be declared {@code abstract} (with the exception of calculated read-only properties).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.cc

    }
    
    }  // namespace
    
    // If input spatial sizes are dynamic (unknown) and padding is same, add ops to
    // dynamically calculate padding size and add input_zp value Pad op with the
    // padding.
    // Otherwise, calculates padding with known numbers, and only for non-zero
    // padding (input_zp != 0), adds Pad op before convolution.
    Value CalculatePaddingAndPadIfNeeded(OpBuilder &builder, Location loc,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-kubeapiserver.sh

      fi
    }
    
    # Starts kubernetes apiserver.
    # It prepares the log file, loads the docker image, calculates variables, sets them
    # in the manifest file, and then copies the manifest file to /etc/kubernetes/manifests.
    #
    # Assumed vars (which are calculated in function compute-master-manifest-variables)
    #   CLOUD_CONFIG_OPT
    #   CLOUD_CONFIG_VOLUME
    #   CLOUD_CONFIG_MOUNT
    #   DOCKER_REGISTRY
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. pkg/kubelet/checkpointmanager/checksum/checksum.go

    // Verify verifies that passed checksum is same as calculated checksum
    func (cs Checksum) Verify(data interface{}) error {
    	if cs != New(data) {
    		return errors.ErrCorruptCheckpoint
    	}
    	return nil
    }
    
    // New returns the Checksum of checkpoint data
    func New(data interface{}) Checksum {
    	return Checksum(getChecksum(data))
    }
    
    // Get returns calculated checksum of checkpoint data
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 01:56:43 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  10. internal/hash/errors.go

    	return "Bad sha256: Expected " + e.ExpectedSHA256 + " does not match calculated " + e.CalculatedSHA256
    }
    
    // BadDigest - Content-MD5 you specified did not match what we received.
    type BadDigest struct {
    	ExpectedMD5   string
    	CalculatedMD5 string
    }
    
    func (e BadDigest) Error() string {
    	return "Bad digest: Expected " + e.ExpectedMD5 + " does not match calculated " + e.CalculatedMD5
    }
    
    // SizeTooSmall reader size too small
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 15 21:08:54 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top