Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 119 for hard (0.04 sec)

  1. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    
    ## Abstract
    
    This README describes the current state of bytecode interception infrastructure, used for configuration cache instrumentation and bytecode upgrades for property migration.
    
    
    ## Naming
    
    The naming is hard.
    That is the case also for this infrastructure.
    In next section we will use next terms:
    1. We will use `bytecode instrumentation` when we talk about configuration cache bytecode instrumentation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. pkg/volume/iscsi/iscsi.go

    	// Find globalPDPath from pod volume directory(mountPath)
    	var globalPDPath string
    	mounter := plugin.host.GetMounter(plugin.GetPluginName())
    	// Try really hard to get the global mount of the volume, an error returned from here would
    	// leave the global mount still mounted, while marking the volume as unused.
    	// The volume can then be mounted on several nodes, resulting in volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. Makefile.core.mk

    RELEASE_SIZE_TEST_BINARIES:=pilot-discovery pilot-agent istioctl envoy ztunnel client server
    
    # agent: enables agent-specific files. Usually this is used to trim dependencies where they would be hard to trim through standard refactoring
    # disable_pgv: disables protoc-gen-validation. This is not used buts adds many MB to Envoy protos
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

            "precision_config",
            BuildVhloPrecisionConfigV1Attr(op->precision_config, builder)));
    
        return;
      }
      if (const auto* op = op_union.AsStablehloCustomCallOptions()) {
        // hard coding api version for now, we should rework this by updating the
        // STABLEHLO_CUSTOM_CALL definition
        attributes.emplace_back(builder.getNamedAttr(
            "api_version",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  5. src/runtime/runtime2.go

    //
    //go:nosplit
    //go:nowritebarrier
    func setMNoWB(mp **m, new *m) {
    	(*muintptr)(unsafe.Pointer(mp)).set(new)
    }
    
    type gobuf struct {
    	// The offsets of sp, pc, and g are known to (hard-coded in) libmach.
    	//
    	// ctxt is unusual with respect to GC: it may be a
    	// heap-allocated funcval, so GC needs to track it, but it
    	// needs to be set and cleared from assembly, where it's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/query-params-str-validations.md

    * `fixedquery`: has the exact value `fixedquery`.
    * `$`: ends there, doesn't have any more characters after `fixedquery`.
    
    If you feel lost with all these **"regular expression"** ideas, don't worry. They are a hard topic for many people. You can still do a lot of stuff without needing regular expressions yet.
    
    But whenever you need them and go and learn them, know that you can already use them directly in **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                    } else {
                        /*
                         * NOTE: Other configurators like the map-oriented one don't call into the listener, so do it the
                         * hard way.
                         */
                        validateParameters(mojoDescriptor, configuration, expressionEvaluator);
                    }
                }
    
            } catch (ComponentConfigurationException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    // * It is not readily possible to bring existing Informers, which would require extra watches (#1668)
    // * Goroutine leaks (#1655)
    // * Excessive API-server calls at startup which have no benefit to us (#1603)
    // * Hard to use with SSA (#1669)
    // While these can be worked around, at some point it isn't worth the effort.
    //
    // Server Side Apply with go templates is an odd choice (no one likes YAML templating...) but is one of the few
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. docs/en/docs/alternatives.md

    Right before deciding to build **FastAPI** I found **APIStar** server. It had almost everything I was looking for and had a great design.
    
    It was one of the first implementations of a framework using Python type hints to declare parameters and requests that I ever saw (before NestJS and Molten). I found it more or less at the same time as Hug. But APIStar used the OpenAPI standard.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. src/go/types/resolver.go

    							hasTParamError = true
    						}
    						if t := d.decl.Type; t.Params.NumFields() != 0 || t.Results != nil {
    							// TODO(rFindley) Should this be a hard error?
    							check.softErrorf(d.decl.Name, code, "func %s must have no arguments and no return values", name)
    						}
    					}
    					if name == "init" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top