Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 589 for better (0.16 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/transforms.cc

        pm.addPass(mlir::createCanonicalizerPass());
      }
    }
    
    void AddMhloOptimizationPasses(OpPassManager& pm,
                                   const bool add_fold_broadcast_pass) {
      // Rewrites some patterns for better performance.
      pm.addNestedPass<func::FuncOp>(createUnfuseBatchNormPass());
      pm.addNestedPass<func::FuncOp>(createFuseConvolutionPass());
      pm.addNestedPass<func::FuncOp>(createOptimizePass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 04:34:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. hack/verify-api-groups.sh

    			exit 1
    		fi
    	done
    done
    
    # check all groupversions to make sure they're in the init.sh file.  This isn't perfect, but its slightly
    # better than nothing
    for external_group_version in "${external_group_versions[@]}"; do
    	if ! grep -q "${external_group_version}" "${KUBE_ROOT}/hack/lib/init.sh" ; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 09:26:16 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. src/internal/trace/internal/oldtrace/order.go

    // becomes ready for merging (init) and the goroutine state after the event (next).
    func stateTransition(ev *Event) (g uint64, init, next gState) {
    	// Note that we have an explicit return in each case, as that produces slightly better code (tested on Go 1.19).
    
    	switch ev.Type {
    	case EvGoCreate:
    		g = ev.Args[0]
    		init = gState{0, gDead}
    		next = gState{1, gRunnable}
    		return
    	case EvGoWaiting, EvGoInSyscall:
    		g = ev.G
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/query-params-str-validations.md

    !!! note
        FastAPI will know that the value of `q` is not required because of the default value `= None`.
    
        The `Union` in `Union[str, None]` will allow your editor to give you better support and detect errors.
    
    ## Additional validation
    
    We are going to enforce that even though `q` is optional, whenever it is provided, **its length doesn't exceed 50 characters**.
    
    ### Import `Query` and `Annotated`
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. fastapi/param_functions.py

            Doc(
                """
                OpenAPI-specific examples.
    
                It will be added to the generated OpenAPI (e.g. visible at `/docs`).
    
                Swagger UI (that provides the `/docs` interface) has better support for the
                OpenAPI-specific examples than the JSON Schema `examples`, that's the main
                use case for this.
    
                Read more about it in the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

                options.addBooleanOption("html5", true);
    
                // TODO: This would be better to model as separate options
                options.addStringOption("Xdoclint:syntax,html", "-quiet");
                // TODO: This breaks the provider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:10:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part5_gradle_inc_builds.adoc

    == Step 2. Updating Gradle Properties
    To better see incremental builds in action, we are going to switch the console output to verbose.
    
    In the top-level folder of your app (`tutorial`), create a `gradle.properties` file.
    
    [source,properties]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/runtime/symtabinl.go

    // Hence, the constructor returns this by value and pointer receiver methods
    // must not mutate pointer fields. Also, we keep the mutable state in a separate
    // struct mostly to keep both structs SSA-able, which generates much better
    // code.
    type inlineUnwinder struct {
    	f       funcInfo
    	inlTree *[1 << 20]inlinedCall
    }
    
    // An inlineFrame is a position in an inlineUnwinder.
    type inlineFrame struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/DeclarativeReflectionToObjectConverter.kt

                    getObjectByResolvedOrigin(addedObject.objectOrigin)
                    apply(addedObject, conversionFilter)
                    // TODO: maybe add the "containers" to the schema, so that added objects can be better expressed in this interpretation step
                }
    
                objectReflection.customAccessorObjects.forEach { customAccessor ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. internal/http/dial_linux.go

    			// with dead end because tcp-keepalive is not fired when there is data in the socket buffer.
    			//    https://blog.cloudflare.com/when-tcp-sockets-refuse-to-die/
    			// This is a sensitive configuration, it is better to set it to high values, > 60 secs since it can
    			// affect clients reading data with a very slow pace  (disappropriate with socket buffer sizes)
    			if opts.UserTimeout > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top