Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,868 for performs (0.21 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalBuildActionVersion2.java

     *
     * @since 4.4
     */
    public interface InternalBuildActionVersion2<T> extends InternalProtocolInterface, Serializable {
        /**
         * Performs some action against a build and returns a result.
         *
         * @since 4.4
         */
        T execute(InternalBuildControllerVersion2 buildController);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/cc/convert_asset_args.h

    // Converts arguments of the @main function that are bound to
    // `tf_saved_model::AssetOp`s into regular tensor args. Returns `AsestFileDef`s
    // that associates the arg with the asset.
    //
    // In detail, this function performs the following:
    // * Replaces "tf_saved_model.bound_input" attributes to
    //   "tf_saved_model.index_path", if the bound input is attached to the
    //   `tf_saved_model::AssetOp`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 01:45:41 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/types.go

    	Store8(&u.value, value)
    }
    
    // And takes value and performs a bit-wise
    // "and" operation with the value of u, storing
    // the result into u.
    //
    // The full process is performed atomically.
    //
    //go:nosplit
    func (u *Uint8) And(value uint8) {
    	And8(&u.value, value)
    }
    
    // Or takes value and performs a bit-wise
    // "or" operation with the value of u, storing
    // the result into u.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/benchmark_main.template

    //
    //    TFCOMPILE_HEADER    : Path to the header file generated by tfcompile.
    //    TFCOMPILE_CPP_CLASS : Name of the C++ class generated by tfcompile.
    //
    // The tf_library bazel macro in tfcompile.bzl performs the token rewriting, and
    // generates a cc_binary rule for you.
    
    // These macros must be defined before eigen files are included.
    #define EIGEN_USE_THREADS
    #define EIGEN_USE_CUSTOM_THREAD_POOL
    
    // clang-format off
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 20:05:05 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/secretbox/secretbox.go

    // Uses a standard 24 byte nonce (placed at the beginning of the cipher text) generated
    // from crypto/rand. Does not perform authentication of the data at rest.
    type secretboxTransformer struct {
    	key [32]byte
    }
    
    const nonceSize = 24
    
    // NewSecretboxTransformer takes the given key and performs encryption and decryption on the given
    // data.
    func NewSecretboxTransformer(key [32]byte) value.Transformer {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 16:31:31 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  6. samples/ambient-argo/tag-chart/values.yaml

      #   (5) injectionPath: the injection path to use for this tag webhook.
      #
      # Note that the revision tag "default" has additional semantic meaning as it
      # controls the revision that performs validation and the revision that handles
      # injection for default selectors ("istio-injection=enabled" and "sidecar.istio.io/inject").
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/MissingLockStateException.java

        private static final List<String> RESOLUTIONS;
        static {
            RESOLUTIONS = ImmutableList.of(
                "To create the lock state, run a task that performs dependency resolution and add '--write-locks' to the command line.",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/conversion/deep_equal.go

    // For convenience, panics on errors
    func EqualitiesOrDie(funcs ...interface{}) Equalities {
    	e := Equalities{reflect.Equalities{}}
    	if err := e.AddFuncs(funcs...); err != nil {
    		panic(err)
    	}
    	return e
    }
    
    // Performs a shallow copy of the equalities map
    func (e Equalities) Copy() Equalities {
    	result := Equalities{reflect.Equalities{}}
    
    	for key, value := range e.Equalities {
    		result.Equalities[key] = value
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 14 18:55:26 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/AbstractValidatingNamedDomainObjectContainer.java

    import org.gradle.api.Namer;
    import org.gradle.internal.reflect.Instantiator;
    import org.gradle.util.internal.NameValidator;
    
    /**
     * A {@link AbstractNamedDomainObjectContainer} that performs name validation before creating a new domain object.
     *
     * @see NameValidator#validate(String, String, String)
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 08:37:31 UTC 2021
    - 2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerProcess.java

    import org.gradle.internal.remote.ObjectConnection;
    import org.gradle.process.ExecResult;
    import org.gradle.process.internal.health.memory.JvmMemoryStatus;
    
    import java.util.Optional;
    
    /**
     * A child JVM that performs some worker action. You can send and receive messages to/from the worker action
     * using a supplied {@link ObjectConnection}.
     */
    public interface WorkerProcess extends Describable {
        WorkerProcess start();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 21:45:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top