Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,155 for ADDS (0.13 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/endpointsubset.go

    // apply.
    func EndpointSubset() *EndpointSubsetApplyConfiguration {
    	return &EndpointSubsetApplyConfiguration{}
    }
    
    // WithAddresses adds the given value to the Addresses field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/ManifestMergeSpec.java

         * @param contentCharset the character set used to decode the merged manifest content
         * @see #getContentCharset()
         * @since 2.14
         */
        void setContentCharset(String contentCharset);
    
        /**
         * Adds a merge path to a manifest that should be merged into the base manifest. A merge path can be either another
         * {@link org.gradle.api.java.archives.Manifest} or a path that is evaluated as per
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.h

    // Adds passes for static-range quantization post-calibration. Utilizes tensor
    // statistics collected from the calibration step and performs quantization.
    void AddPostCalibrationPasses(
        OpPassManager& pm,
        const ::stablehlo::quantization::PipelineConfig& pipeline_config,
        const ::stablehlo::quantization::QuantizationSpecs& specs);
    
    // Adds passes for weight-only quantization.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyModuleDescriptorSpec.java

         * Returns the extra info element spec for this publication
         */
        IvyExtraInfoSpec getExtraInfo();
    
        /**
         * Adds a new extra info element to the publication
         */
        void extraInfo(String namespace, String elementName, String value);
    
        /**
         * Creates, configures and adds a license to this publication.
         *
         * @since 4.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/builder/KtBinaryModuleBuilder.kt

    import java.nio.file.Path
    
    @KtModuleBuilderDsl
    public abstract class KtBinaryModuleBuilder : KtModuleBuilder() {
        private val binaryRoots: MutableList<Path> = mutableListOf()
    
        /**
         * Adds a [root] to the current library.
         *
         * The [root] can be:
         * * A .jar file for JVM libraries or common metadata KLibs
         * * A directory with a set of .classfiles for JVM Libraries
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 16 13:31:53 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/math/big/arith_arm64.s

    	MUL	R5, R3, R7
    	UMULH	R5, R3, R8
    
    	ADDS	R7, R6
    	ADC	$0, R8, R4
    
    	MOVD.P	R6, 8(R1)
    	SUB	$1, R0
    
    two:
    	TBZ	$1, R0, loop
    
    	LDP.P	16(R2), (R5, R10)
    	LDP	(R1), (R6, R11)
    
    	MUL	R10, R3, R13
    	UMULH	R10, R3, R12
    
    	MUL	R5, R3, R7
    	UMULH	R5, R3, R8
    
    	ADDS	R4, R6
    	ADCS	R13, R11
    	ADC	$0, R12
    
    	ADDS	R7, R6
    	ADCS	R8, R11
    	ADC	$0, R12, R4
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/doc.go

    //
    // The third version of the Websocket RemoteCommand subprotocol adds another channel
    // for terminal resizing events. This channel is prepended with the byte '3', and it
    // transmits two window sizes (encoding TerminalSize struct) with integers in the range
    // (0,65536].
    //
    // "v4.channel.k8s.io"
    //
    // The fourth version of the Websocket RemoteCommand subprotocol adds a channel for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 18:37:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/MutableNetwork.java

      /**
       * Adds {@code node} if it is not already present.
       *
       * <p><b>Nodes must be unique</b>, just as {@code Map} keys must be. They must also be non-null.
       *
       * @return {@code true} if the network was modified as a result of this call
       */
      @CanIgnoreReturnValue
      boolean addNode(N node);
    
      /**
       * Adds {@code edge} connecting {@code nodeU} to {@code nodeV}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ConfigurationVariant.java

         */
        PublishArtifactSet getArtifacts();
    
        /**
         * Adds an artifact to this variant.
         *
         * <p>See {@link org.gradle.api.artifacts.dsl.ArtifactHandler} for details of the supported notations.
         */
        void artifact(Object notation);
    
        /**
         * Adds an artifact to this variant, configuring it using the given action.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 18 21:06:27 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/invocation/GradleLifecycle.java

     * and {@link BuildFeatures#getIsolatedProjects() Isolated Projects}.
     *
     * @since 8.8
     */
    @Incubating
    public interface GradleLifecycle {
        /**
         * Adds an {@link IsolatedAction isolated action} to be called immediately before a project is evaluated.
         *
         * Any extensions added to the {@code Project} model will be available to build scripts.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 21:28:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top