Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,024 for difference (0.86 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "ADCQconst", argLength: 2, reg: gp1flags1flags, typ: "(UInt64,Flags)", asm: "ADCQ", aux: "Int32", resultInArg0: true}, // r = arg0+auxint+carry(arg1)
    
    		// The following 4 add opcodes return the low 64 bits of the difference in the first result and
    		// the borrow (if the result is negative) in the carry flag.
    		{name: "SUBQborrow", argLength: 2, reg: gp21flags, typ: "(UInt64,Flags)", asm: "SUBQ", resultInArg0: true},                    // r = arg0-arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (0)
  2. src/cmd/go/internal/robustio/robustio_flaky.go

    //
    // On Windows it wraps os.Rename, which (as of 2019-06-04) uses MoveFileEx with
    // MOVEFILE_REPLACE_EXISTING.
    //
    // Windows also provides a different system call, ReplaceFile,
    // that provides similar semantics, but perhaps preserves more metadata. (The
    // documentation on the differences between the two is very sparse.)
    //
    // Empirical error rates with MoveFileEx are lower under modest concurrency, so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/ConstructorSelector.java

     * limitations under the License.
     */
    
    package org.gradle.internal.instantiation.generator;
    
    /**
     * Encapsulates the differences, due to backwards compatibility, in instantiation for several different types.
     */
    interface ConstructorSelector {
        /**
         * Allows this selector to veto the parameters to use with the given constructor.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/LocalCache.java

       * To maintain this code, make a change for the strong reference type. Then, cut and paste, and
       * replace "Strong" with "Soft" or "Weak" within the pasted text. The primary difference is that
       * strong entries store the key reference directly while soft and weak entries delegate to their
       * respective superclasses.
       */
    
      /** Used for strongly-referenced keys. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  5. doc/go_spec.html

    <p>
    <code>B0</code> and <code>B1</code> are different because they are new types
    created by distinct <a href="#Type_definitions">type definitions</a>;
    <code>func(int, float64) *B0</code> and <code>func(x int, y float64) *[]string</code>
    are different because <code>B0</code> is different from <code>[]string</code>;
    and <code>P1</code> and <code>P2</code> are different because they are different
    type parameters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    </pre>
    
    <p>
    <code>B0</code> and <code>B1</code> are different because they are new types
    created by distinct <a href="#Type_definitions">type definitions</a>;
    <code>func(int, float64) *B0</code> and <code>func(x int, y float64) *[]string</code>
    are different because <code>B0</code> is different from <code>[]string</code>.
    </p>
    
    
    <h3 id="Assignability">Assignability</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/README.md

    To add a new type, add in the necessary include statement at the top of the
    file (if it is not already there) and add in a type alias line. Note that if
    your type is significantly different on different architectures, you may need
    some `#if/#elif` macros in your include statements.
    
    ### mkerrors.sh
    
    This script is used to generate the system's various constants. This doesn't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 14:32:58 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtExpressionTypeProvider.kt

         *   Ps are types of value parameters;
         *   R is the return type of the function.
         * Depending on the function's attributes, such as `suspend` or reflective access, different functional type,
         * such as `SuspendFunction`, `KFunction`, or `KSuspendFunction`, will be constructed.
         */
        public fun KtFunction.getFunctionalType(): KaType =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    	{types.TFLOAT32, types.TFLOAT64}: {ssa.OpCvt32Fto64F, ssa.OpCopy, types.TFLOAT64},
    }
    
    // this map is used only for 32-bit arch, and only includes the difference
    // on 32-bit arch, don't use int64<->float conversion for uint32
    var fpConvOpToSSA32 = map[twoTypes]twoOpsAndType{
    	{types.TUINT32, types.TFLOAT32}: {ssa.OpCopy, ssa.OpCvt32Uto32F, types.TUINT32},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/feature_addition_request.yaml

        validations:
          required: true
    
      - type: markdown
        attributes:
          value: >
            Comparing two approaches to a use case side by side can make it easier to examine the
            differences between them.
    
    
            Additionally, it's very useful to us if you can provide a "straw API" &mdash; what the
            method signatures would look like, for example, even if the method and class names are still
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top