Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,267 for shown (0.06 sec)

  1. src/cmd/cover/html.go

    	"colors": colors,
    }).Parse(tmplHTML))
    
    type templateData struct {
    	Files []*templateFile
    	Set   bool
    }
    
    // PackageName returns a name for the package being shown.
    // It does this by choosing the penultimate element of the path
    // name, so foo.bar/baz/foo.go chooses 'baz'. This is cheap
    // and easy, avoids parsing the Go file, and gets a better answer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 14:33:36 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/options/constant.go

    	// FeatureGatesString flag sets key=value pairs that describe feature gates for various features.
    	FeatureGatesString = "feature-gates"
    
    	// IgnorePreflightErrors sets the path a list of checks whose errors will be shown as warnings. Example: 'IsPrivilegedUser,Swap'. Value 'all' ignores errors from all checks.
    	IgnorePreflightErrors = "ignore-preflight-errors"
    
    	// ImageRepository sets the container registry to pull control plane images from.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. docs/sts/wso2.md

    ```
    
    In response, the self-contained JWT id_token will be returned as shown below.
    
    ```
    {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/additional-responses.md

    ```Python hl_lines="20-31"
    {!../../../docs_src/additional_responses/tutorial003.py!}
    ```
    
    It will all be combined and included in your OpenAPI, and shown in the API docs:
    
    <img src="/img/tutorial/additional-responses/image01.png">
    
    ## Combine predefined responses and custom ones
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. src/cmd/go/scriptreadme_test.go

    and $WORK/gopath/src/hello.go containing the listed contents.
    
    {{.Language}}
    
    When TestScript runs a script and the script fails, by default TestScript shows
    the execution of the most recent phase of the script (since the last # comment)
    and only shows the # comments for earlier phases. For example, here is a
    multi-phase script with a bug in it:
    
    	# GOPATH with p1 in d2, p2 in d2
    	env GOPATH=$WORK${/}d1${:}$WORK${/}d2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. fastapi/routing.py

            ] = Default(JSONResponse),
            responses: Annotated[
                Optional[Dict[Union[int, str], Dict[str, Any]]],
                Doc(
                    """
                    Additional responses to be shown in OpenAPI.
    
                    It will be added to the generated OpenAPI (e.g. visible at `/docs`).
    
                    Read more about it in the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/body.md

    ## Automatic docs
    
    The JSON Schemas of your models will be part of your OpenAPI generated schema, and will be shown in the interactive API docs:
    
    <img src="/img/tutorial/body/image01.png">
    
    And will be also used in the API docs inside each *path operation* that needs them:
    
    <img src="/img/tutorial/body/image02.png">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

              [(IEEEFloatTensor $l)]>;
    
    // Performs a substitution of FloorDiv for integer tensors, which required
    // additional correction for a negative numerator / denominator. Equivalent
    // pseudocode is shown below:
    //
    // T z = x / y
    // return (z * y != x && (x < 0) != (y < 0)) ? z - 1 : z
    //
    // BroadcastToDimensions is used to compute the broadcast attr to higher
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Stopwatch.java

        return this;
      }
    
      private long elapsedNanos() {
        return isRunning ? ticker.read() - startTick + elapsedNanos : elapsedNanos;
      }
    
      /**
       * Returns the current elapsed time shown on this stopwatch, expressed in the desired time unit,
       * with any fraction rounded down.
       *
       * <p>Note that the overhead of measurement can be more than a microsecond, so it is generally not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Nov 15 21:38:09 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    The following sample defines an RPM artifact that is produced by an `rpm` task (not shown) and attaches that artifact to the `conf` configuration:
    
    .Defining a custom artifact for a configuration
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
Back to top