Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,508 for makeID (0.11 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper.go

    	resourceToKind := make(map[schema.GroupVersionResource]schema.GroupVersionKind)
    	kindToPluralResource := make(map[schema.GroupVersionKind]schema.GroupVersionResource)
    	kindToScope := make(map[schema.GroupVersionKind]RESTScope)
    	singularToPlural := make(map[schema.GroupVersionResource]schema.GroupVersionResource)
    	pluralToSingular := make(map[schema.GroupVersionResource]schema.GroupVersionResource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 01:55:47 UTC 2021
    - 16.1K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/query-params-str-validations.md

        {!> ../../../docs_src/query_params_str_validations/tutorial005.py!}
        ```
    
    !!! note
        Having a default value of any type, including `None`, makes the parameter optional (not required).
    
    ## Make it required
    
    When we don't need to declare more validations or metadata, we can make the `q` query parameter required just by not declaring a default value, like:
    
    ```Python
    q: str
    ```
    
    instead of:
    
    ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    	// Flags that set configuration properties.
    	cfg := currentConfig()
    	configFlagSetter := installConfigFlags(flag, &cfg)
    
    	flagCommands := make(map[string]*bool)
    	flagParamCommands := make(map[string]*string)
    	for name, cmd := range pprofCommands {
    		if cmd.hasParam {
    			flagParamCommands[name] = flag.String(name, "", "Generate a report in "+name+" format, matching regexp")
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. pilot/pkg/model/typed_xds_cache.go

    			return
    		}
    		// Record time so that we can correlate when the error actually happened, since the async reporting
    		// may be delayed
    		t0 := time.Now()
    		// This operation is really slow, which makes tests fail for unrelated reasons, so we process it async.
    		go func() {
    			if !cmp.Equal(existing, replacement, protocmp.Transform()) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java

       * loader of that class from being garbage-collected even if there is a {@link SecurityManager}.
       * The {@link SecurityManager} environment makes such leaks more likely because when you create a
       * {@link URLClassLoader} with a {@link SecurityManager}, the creating code's {@link
       * java.security.AccessControlContext} is captured, and that references the creating code's {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. docs/en/docs/help-fastapi.md

        * Tell me how you use FastAPI (I love to hear that).
        * Hear when I make announcements or release new tools.
        * You can also <a href="https://twitter.com/fastapi" class="external-link" target="_blank">follow @fastapi on Twitter</a> (a separate account).
    * <a href="https://www.linkedin.com/in/tiangolo/" class="external-link" target="_blank">Follow me on **LinkedIn**</a>.
        * Hear when I make announcements or release new tools (although I use Twitter more often 🤷‍♂).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    :plugin-reference-documentation: https://plugins.gradle.org/docs/publish-plugin[reference documentation of the {publishplugin}]
    
    Publishing a plugin is the primary way to make it available for others to use.
    While you can publish to a private repository to restrict access, publishing to the https://plugins.gradle.org[{portal}] makes your plugin available to anyone in the world.
    
    image::plugin-portal-page.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    				e.runCmd = cmd
    				e.Options.FilterPhases = []string{phaseSelector}
    				return e.Run(args)
    			},
    		}
    
    		// makes the new command inherits local flags from the parent command
    		// Nb. global flags will be inherited automatically
    		inheritsFlags(cmd.Flags(), phaseCmd.Flags(), p.InheritFlags)
    
    		// makes the new command inherits additional flags for phases
    		if e.cmdAdditionalFlags != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

    Property 'prop' specifies file '${location}' which doesn't exist.
    
    Reason: An input file was expected to be present but it doesn't exist.
    
    Possible solutions:
      1. Make sure the file exists before the task is called.
      2. Make sure that the task which produces the file is declared as an input.
    
    ${validationMessage("input_file_does_not_exist")}
    """
    
            render inputDoesNotExist {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  10. src/math/big/natdiv.go

    And consider the two truncated quotients:
    
    	q = ⌊x/y⌋
    	q̂ = ⌊x₁/y₁⌋
    
    We will prove that q ≤ q̂ ≤ q+2.
    
    The guarantee makes no real demands on the scaling factor S: it is simply the
    magnitude of the digits cut from both x and y to produce x₁ and y₁.
    The guarantee makes only limited demands on T: it must be large enough to hold
    the quotient x/y, and y₁ must have roughly the same size.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
Back to top