Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,912 for miny (0.03 sec)

  1. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.cc

      SmallVector<double, 4> min_value, max_value;
      const auto mins = dyn_cast<DenseFPElementsAttr>(min);
      const auto maxs = dyn_cast<DenseFPElementsAttr>(max);
      if (mins && maxs) {
        min_value.reserve(mins.getNumElements());
        max_value.reserve(maxs.getNumElements());
        for (auto it = mins.begin(); it != mins.end(); ++it) {
          min_value.push_back(FloatAttr::getValueAsDouble(*it));
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. src/runtime/lockrank_on.go

    //
    // nosplit to ensure it can be called in as many contexts as possible.
    //
    //go:nosplit
    func worldStarted() {
    	if stopped := worldIsStopped.Add(-1); stopped != 0 {
    		systemstack(func() {
    			print("world stop count=", stopped, "\n")
    			throw("released non-stopped world stop")
    		})
    	}
    }
    
    // nosplit to ensure it can be called in as many contexts as possible.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. docs/features/calls.md

    With rewrites, redirects, follow-ups and retries, your simple request may yield many requests and responses. OkHttp uses `Call` to model the task of satisfying your request through however many intermediate requests and responses are necessary. Typically this isn’t many! But it’s comforting to know that your code will continue to work if your URLs are redirected or if you failover to an alternate IP address.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue51877.go

    	_ = S{0}                    /* ERROR "too few values in struct literal" */
    	_ = struct{ f1, f2 int }{0} /* ERROR "too few values in struct literal" */
    
    	_ = S{0, true, "foo" /* ERROR "too many values in struct literal" */}
    	_ = struct{ f1, f2 int }{0, 1, 2 /* ERROR "too many values in struct literal" */}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 522 bytes
    - Viewed (0)
  5. src/syscall/zerrors_windows.go

    	ELIBMAX - APPLICATION_ERROR:         "attempting to link in too many shared libraries",
    	ELIBSCN - APPLICATION_ERROR:         ".lib section in a.out corrupted",
    	ELNRNG - APPLICATION_ERROR:          "link number out of range",
    	ELOOP - APPLICATION_ERROR:           "too many levels of symbolic links",
    	EMEDIUMTYPE - APPLICATION_ERROR:     "wrong medium type",
    	EMFILE - APPLICATION_ERROR:          "too many open files",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10K bytes
    - Viewed (0)
  6. README.md

    [![Go.Dev reference](https://img.shields.io/badge/go.dev-reference-blue?logo=go&logoColor=white)](https://pkg.go.dev/gorm.io/gorm?tab=doc)
    
    ## Overview
    
    * Full-Featured ORM
    * Associations (Has One, Has Many, Belongs To, Many To Many, Polymorphism, Single-table inheritance)
    * Hooks (Before/After Create/Save/Update/Delete/Find)
    * Eager loading with `Preload`, `Joins`
    * Transactions, Nested Transactions, Save Point, RollbackTo to Saved Point
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Nov 07 02:20:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

                        extensions.add("mine", MyExtension<String>())
                    }
                }
                """
            )
    
            withBuildScript(
                """
                plugins {
                    id("mine")
                }
    
                inline fun <reified T> typeOf(t: T) = T::class.simpleName
    
                mine {
                    println("Type of `mine` receiver is " + typeOf(this@mine))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  8. src/compress/bzip2/move_to_front.go

    // efficient way to transform a string with repeating elements into one with
    // many small valued numbers, which is suitable for entropy encoding. It works
    // by starting with an initial list of symbols and references symbols by their
    // index into that list. When a symbol is referenced, it's moved to the front
    // of the list. Thus, a repeated symbol ends up being encoded with many zeros,
    // as the symbol will be at the front of the list after the first access.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.8K bytes
    - Viewed (0)
  9. test/fixedbugs/issue7675.go

    	f("1", 2, 3.1, "4")
    	f(1, 0.5, "hello", 4, 5) // ERROR "too many arguments|incompatible type"
    	g(1, 0.5)                // ERROR "not enough arguments|incompatible type"
    	g("1", 2, 3.1)
    	g(1, 0.5, []int{3, 4}...) // ERROR "not enough arguments|incompatible type"
    	g("1", 2, 3.1, "4", "5")
    	g(1, 0.5, "hello", 4, []int{5, 6}...) // ERROR "too many arguments|truncated to integer"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 785 bytes
    - Viewed (0)
  10. src/sort/slice.go

    // may be reversed from their original order.
    // For a stable sort, use [SliceStable].
    //
    // The less function must satisfy the same requirements as
    // the Interface type's Less method.
    //
    // Note: in many situations, the newer [slices.SortFunc] function is more
    // ergonomic and runs faster.
    func Slice(x any, less func(i, j int) bool) {
    	rv := reflectlite.ValueOf(x)
    	swap := reflectlite.Swapper(x)
    	length := rv.Len()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top