Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for wbMove (0.16 sec)

  1. src/math/big/float_test.go

    		out int64
    		acc Accuracy
    	}{
    		{"-Inf", math.MinInt64, Above},
    		{"-1e10000", math.MinInt64, Above},
    		{"-9223372036854775809", math.MinInt64, Above},
    		{"-9223372036854775808.000000000000000000001", math.MinInt64, Above},
    		{"-9223372036854775808", -9223372036854775808, Exact},
    		{"-9223372036854775807.000000000000000000001", -9223372036854775807, Above},
    		{"-9223372036854775807", -9223372036854775807, Exact},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    If you can run the build successfully from the command line but your script editor is complaining, then you should try restarting your IDE and invalidating its caches.
    
    If the above doesn't work and you suspect an issue with the Kotlin DSL script editor, you can:
    
    * Run `./gradle tasks` to get more details
    * Check the logs in one of these locations:
    ** `$HOME/Library/Logs/gradle-kotlin-dsl` on Mac OS X
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            return when (fir) {
                is FirAnnotationCall -> {
                    if (unsubstitutedKtSignature.symbol !is KaConstructorSymbol) return null
                    @Suppress("UNCHECKED_CAST") // safe because of the above check on targetKtSymbol
                    KaAnnotationCall(
                        partiallyAppliedSymbol as KaPartiallyAppliedFunctionSymbol<KaConstructorSymbol>,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  4. src/math/big/int_test.go

    		{"-9223372036854775809", math.MinInt64, Above},
    		{"-9223372036854775808", -9223372036854775808, Exact}, // -2^63
    		{"-9223372036854775807", -9223372036854775807, Below},
    		{"-18014398509481985", -18014398509481984.000000, Above},
    		{"-18014398509481984", -18014398509481984.000000, Exact}, // -2^54
    		{"-18014398509481983", -18014398509481984.000000, Below},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    include::sample[dir="snippets/files/misc/groovy/project2",files="build.gradle[tags=using-root-dir-property]"]
    ====
    
    Let's say you're working on a multi-project build in the directory: `dev/projects/AcmeHealth`. +
    The build script above is at: `AcmeHealth/subprojects/AcmePatientRecordLib/build.gradle`. +
    The file path will resolve to the absolute of: `dev/projects/AcmeHealth/shared/config.xml`.
    
    [source, text]
    ----
    dev
    ├── projects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      for (int64_t index : forward_variable_inputs) {
        Value argument = loop_body_func.getArgument(index);
        // Uses of this argument should only be the return and the
        // TPUReplicateInputOp. This is checked by the loop above.
        Operation* input_ptr = nullptr;
        for (Operation* user : argument.getUsers()) {
          if (llvm::isa<TF::TPUReplicatedInputOp>(user)) {
            input_ptr = user;
            break;
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

                    require("2.0")
                }
            }
        }
    }
    ----
    ======
    =====
    
    In the above example, the build logic uses iteration and mutation to try to set a default version for a particular dependency if the version is not already set.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                        else -> Unclassified
                    }
                }
            }
        }
    
        /**
         * Returns whether this [FirScope] is a scope wider than [another] based on the above [PartialOrderOfScope] or not.
         */
        private fun FirScope.isWiderThan(another: FirScope): Boolean =
            toPartialOrder().scopeDistanceLevel > another.toPartialOrder().scopeDistanceLevel
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  9. .bazelrc

    build --incompatible_enforce_config_setting_visibility
    # TODO: also enable this flag after fixing the visibility violations
    # build --incompatible_config_setting_private_default_visibility
    
    # Default options should come above this line.
    
    # Android configs. Bazel needs to have --cpu and --fat_apk_cpu both set to the
    # target CPU to build transient dependencies correctly. See
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    	// the heap arenas index. In 2017, amd64 hardware added
    	// support for 57 bit addresses; however, currently only Linux
    	// supports this extension and the kernel will never choose an
    	// address above 1<<47 unless mmap is called with a hint
    	// address above 1<<47 (which we never do).
    	//
    	// arm64 hardware (as of ARMv8) limits user addresses to 48
    	// bits, in the range [0, 1<<48).
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top