Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 266 for imprecise (0.22 sec)

  1. common-protos/k8s.io/apimachinery/pkg/api/resource/generated.proto

    // ```
    //
    // No matter which of the three exponent forms is used, no quantity may represent
    // a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal
    // places. Numbers larger or more precise will be capped or rounded up.
    // (E.g.: 0.1m will rounded up to 1m.)
    // This may be extended in the future if we require larger or smaller quantities.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/generated.proto

    //  3. Inconsistent validation.  Because the usages are different, the validation rules are different by usage, which makes it hard for users to predict what will happen.
    //  4. The fields are both imprecise and overly precise.  Kind is not a precise mapping to a URL. This can produce ambiguity
    //     during interpretation and require a REST mapping.  In most cases, the dependency is on the group,resource tuple
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/types/ExternalPluginsInstrumentationTypeRegistry.java

                : computeSuperTypesWithoutRecursiveCaching(type);
    
            // Keep just classes in the `org.gradle.` package. If we ever allow 3rd party plugins to contribute instrumentation,
            // we would need to be more precise and actually check if types are instrumented.
            return superTypes.stream()
                .filter(superType -> superType.startsWith(GRADLE_CORE_PACKAGE_PREFIX))
                .collect(Collectors.toSet());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 10:00:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      // Run another shape inference pass because resource decomposition might have
      // created new partial types. Also, after dropping `shape_invariant` attribute
      // from While/WhileRegion ops within cluster would lead to more precise
      // shapes.
      pm.addPass(mlir::TF::CreateTFShapeInferencePass());
      pm.addNestedPass<FuncOp>(mlir::createCanonicalizerPass());
      pm.addPass(mlir::TFTPU::CreateTPUClusterCleanupAttributesPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (1)
  5. staging/src/k8s.io/apimachinery/pkg/api/resource/generated.proto

    // ```
    //
    // No matter which of the three exponent forms is used, no quantity may represent
    // a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal
    // places. Numbers larger or more precise will be capped or rounded up.
    // (E.g.: 0.1m will rounded up to 1m.)
    // This may be extended in the future if we require larger or smaller quantities.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  6. src/runtime/softfloat64_test.go

    	copy(all, base)
    	for i := len(base); i < len(all); i++ {
    		all[i] = rand.NormFloat64()
    	}
    
    	test(t, "+", add, fop(Fadd64), all)
    	test(t, "-", sub, fop(Fsub64), all)
    	if GOARCH != "386" { // 386 is not precise!
    		test(t, "*", mul, fop(Fmul64), all)
    		test(t, "/", div, fop(Fdiv64), all)
    	}
    }
    
    // 64 -hw-> 32 -hw-> 64
    func trunc32(f float64) float64 {
    	return float64(float32(f))
    }
    
    // 64 -sw->32 -hw-> 64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomTest.kt

                    b = f(a = "x")
                    b = f(a = "x") { test() }
                    call(x = { }) // TODO: right now, it is reported as an unsupported language feature FunctionDeclaration, report it in a more precise way?
                    multiLambda({ }, { })
                    1
                    a.b()
                    a.x = 1
                    val x = 1
                    syntaxError = syntaxError!!!
                    a = this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. src/internal/trace/gc.go

    	bound float64
    
    	// Worst N window tracking
    	nWorst int
    	wHeap  utilHeap
    
    	// Mutator utilization distribution tracking
    	mud *mud
    	// preciseMass is the distribution mass that must be precise
    	// before accumulation is stopped.
    	preciseMass float64
    	// lastTime and lastMU are the previous point added to the
    	// windowed mutator utilization function.
    	lastTime int64
    	lastMU   float64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. src/runtime/trace/trace.go

    // GC-related events, changes of heap size, processor start/stop, etc.
    // When CPU profiling is active, the execution tracer makes an effort to
    // include those samples as well.
    // A precise nanosecond-precision timestamp and a stack trace is
    // captured for most events. The generated trace can be interpreted
    // using `go tool trace`.
    //
    // Support for tracing tests and benchmarks built with the standard
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/nowb.go

    }
    
    // recordCall records a call from ODCLFUNC node "from", to function
    // symbol "to" at position pos.
    //
    // This should be done as late as possible during compilation to
    // capture precise call graphs. The target of the call is an LSym
    // because that's all we know after we start SSA.
    //
    // This can be called concurrently for different from Nodes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top