Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 232 for wbMove (0.18 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. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// operations.
      ///
      /// This operation must be provided. See "REQUIRED OPERATIONS" above.
      void (*cleanup)(TF_ReadOnlyMemoryRegion* region);
    
      /// Returns a pointer to the memory region.
      ///
      /// This operation must be provided. See "REQUIRED OPERATIONS" above.
      const void* (*data)(const TF_ReadOnlyMemoryRegion* region);
    
      /// Returns the length of the memory region in bytes.
      ///
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  3. src/index/suffixarray/sais2.go

    	// The first difference is that the rightmost LMS-substring's end index is len(text),
    	// so the caller must pretend that sa[-1] == len(text), as noted above.
    	// The second difference is that the first leftmost LMS-substring start index
    	// does not end an earlier LMS-substring, so as an optimization we can omit
    	// that leftmost LMS-substring start index (the last one we wrote).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. 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)
  5. docs/bucket/notifications/README.md

    ### Step 2: Enable Redis bucket notification using MinIO client
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. 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)
  7. cmd/object-api-multipart_test.go

    	err := obj.MakeBucket(context.Background(), bucket, MakeBucketOptions{})
    	if err != nil {
    		// Failed to create newbucket, abort.
    		t.Fatalf("%s : %s", instanceType, err.Error())
    	}
    	// Initiate Multipart Upload on the above created bucket.
    	res, err := obj.NewMultipartUpload(context.Background(), bucket, object, opts)
    	if err != nil {
    		// Failed to create NewMultipartUpload, abort.
    		t.Fatalf("%s : %s", instanceType, err.Error())
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  8. 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)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    // distribution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. 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)
Back to top