Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 255 for ulong (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        (*result)[arg.getArgNumber()] = info;
      }
      return success();
    }
    
    // Merges two sets of resource arg use infos. An argument is considered used in
    // the merged result as long as either set marks it as used. This is used to
    // merge results from functions that have aliasing inputs, e.g., a while loop's
    // body and condition. The sets of keys of the two maps must be the same.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    	// memory to hold gcmarkBits for the next GC cycle as well
    	// as allocBits for newly allocated spans.
    	//
    	// The pointer arithmetic is done "by hand" instead of using
    	// arrays to avoid bounds checks along critical performance
    	// paths.
    	// The sweep will free the old allocBits and set allocBits to the
    	// gcmarkBits. The gcmarkBits are replaced with a fresh zeroed
    	// out memory.
    	allocBits  *gcBits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableSortedMap.java

          Comparator<? super K> comparator,
          boolean sameComparator,
          Iterable<? extends Entry<? extends K, ? extends V>> entries) {
        // "adding" type params to an array of a raw type should be safe as
        // long as no one can ever cast that same array instance back to a
        // raw type.
        @SuppressWarnings("unchecked")
        Entry<K, V>[] entryArray = (Entry[]) Iterables.toArray(entries, EMPTY_ENTRY_ARRAY);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    When you’re writing a custom task class, it’s easy to register properties as inputs or outputs via annotations. To demonstrate, here is a skeleton task implementation with some suitable inputs and outputs, along with their annotations:
    
    .Custom task class
    ====
    [source,java]
    .buildSrc/src/main/java/org/example/ProcessTemplates.java
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  5. src/bytes/bytes_test.go

    	{"abc", []byte("ABC")},
    	{"AbC123", []byte("ABC123")},
    	{"azAZ09_", []byte("AZAZ09_")},
    	{"longStrinGwitHmixofsmaLLandcAps", []byte("LONGSTRINGWITHMIXOFSMALLANDCAPS")},
    	{"long\u0250string\u0250with\u0250nonascii\u2C6Fchars", []byte("LONG\u2C6FSTRING\u2C6FWITH\u2C6FNONASCII\u2C6FCHARS")},
    	{"\u0250\u0250\u0250\u0250\u0250", []byte("\u2C6F\u2C6F\u2C6F\u2C6F\u2C6F")}, // grows one byte per char
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    //        and so on).
    //
    //    We can always work around these by inserting LARL instructions (load address
    //    relative long) in the assembler, but typically this results in worse code
    //    generation because the address can't be re-used. Inserting instructions in the
    //    assembler also means clobbering the temp register and it is a long-term goal
    //    to prevent the compiler doing this so that it can be allocated as a normal
    //    register.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

          Comparator<? super K> comparator,
          boolean sameComparator,
          Iterable<? extends Entry<? extends K, ? extends V>> entries) {
        // "adding" type params to an array of a raw type should be safe as
        // long as no one can ever cast that same array instance back to a
        // raw type.
        @SuppressWarnings("unchecked")
        Entry<K, V>[] entryArray = (Entry[]) Iterables.toArray(entries, EMPTY_ENTRY_ARRAY);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        String getHttpFileuploadMaxSize();
    
        default Long getHttpFileuploadMaxSizeAsLong() {
            final String value = getHttpFileuploadMaxSize();
            return value != null ? DfTypeUtil.toLong(value) : null;
        }
    
        String getHttpFileuploadThresholdSize();
    
        default Long getHttpFileuploadThresholdSizeAsLong() {
            final String value = getHttpFileuploadThresholdSize();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

      private lateinit var protocol: Protocol
      private lateinit var client: OkHttpClient
      private val fileSystem: FakeFileSystem = FakeFileSystem()
      private val cache: Cache = Cache(fileSystem, "/tmp/cache".toPath(), Long.MAX_VALUE)
      private lateinit var scheme: String
    
      private fun configureClientTestRule(): OkHttpClientTestRule {
        val clientTestRule = OkHttpClientTestRule()
        clientTestRule.recordTaskRunner = true
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  10. src/runtime/mprof.go

    // more work. Until then, we report contention on runtime-internal locks with a
    // call stack taken from the unlock call (like the rest of the user-space
    // "mutex" profile), but assign it a duration value based on how long the
    // previous lock call took (like the user-space "block" profile).
    //
    // Thus, reporting the call stacks of runtime-internal lock contention is
    // guarded by GODEBUG for now. Set GODEBUG=runtimecontentionstacks=1 to enable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top