Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,267 for shown (0.05 sec)

  1. src/math/expm1.go

    // The hexadecimal values are the intended ones for the following
    // constants. The decimal values may be used, provided that the
    // compiler will convert from decimal to binary accurately enough
    // to produce the hexadecimal values shown.
    //
    
    // Expm1 returns e**x - 1, the base-e exponential of x minus 1.
    // It is more accurate than [Exp](x) - 1 when x is near zero.
    //
    // Special cases are:
    //
    //	Expm1(+Inf) = +Inf
    //	Expm1(-Inf) = -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/handler.go

    		GoRestfulContainer: gorestfulContainer,
    		NonGoRestfulMux:    nonGoRestfulMux,
    		Director:           director,
    	}
    }
    
    // ListedPaths returns the paths that should be shown under /
    func (a *APIServerHandler) ListedPaths() []string {
    	var handledPaths []string
    	// Extract the paths handled using restful.WebService
    	for _, ws := range a.GoRestfulContainer.RegisteredWebServices() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 14 17:10:00 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. src/fmt/example_test.go

    	// The special verb %T shows the type of an item rather than its value.
    	fmt.Printf("%T %T\n", integer, &integer)
    	// Result: int *int
    
    	// Println(x) is the same as Printf("%v\n", x) so we will use only Printf
    	// in the following examples. Each one demonstrates how to format values of
    	// a particular type, such as integers or strings. We start each format
    	// string with %v to show the default output and follow that with one or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 21:03:10 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/mux/pathrecorder.go

    	// do something different
    	mux atomic.Value
    
    	// exposedPaths is the list of paths that should be shown at /
    	exposedPaths []string
    
    	// pathStacks holds the stacks of all registered paths.  This allows us to show a more helpful message
    	// before the "http: multiple registrations for %s" panic.
    	pathStacks map[string]string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 01:52:15 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. docs/debugging/README.md

    mc: Encrypted file data successfully downloaded as inspect.ad2b43d8.enc
    mc: Decryption key: ad2b43d847fdb14e54c5836200177f7158b3f745433525f5d23c0e0208e50c9948540b54
    
    mc: The decryption key will ONLY be shown here. It cannot be recovered.
    mc: The encrypted file can safely be shared without the decryption key.
    mc: Even with the decryption key, data stored with encryption cannot be accessed.
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 01:17:53 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/rest/create.go

    	}
    
    	// Custom validation (including name validation) passed
    	// Now run common validation on object meta
    	// Do this *after* custom validation so that specific error messages are shown whenever possible
    	if errs := genericvalidation.ValidateObjectMetaAccessor(objectMeta, strategy.NamespaceScoped(), path.ValidatePathSegmentName, field.NewPath("metadata")); len(errs) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/generate-clients.md

    <img src="/img/tutorial/generate-clients/image01.png">
    
    You can see those schemas because they were declared with the models in the app.
    
    That information is available in the app's **OpenAPI schema**, and then shown in the API docs (by Swagger UI).
    
    And that same information from the models that is included in OpenAPI is what can be used to **generate the client code**.
    
    ### Generate a TypeScript Client
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. src/compress/lzw/reader_test.go

    	// or split out:
    	//
    	// .0000000 ........ ........ ........   w = 0x000
    	// 1....... 11111111 .....111 ........   x = 0xfff
    	// ........ ........ 00001... .0001000   y = 0x101
    	//
    	// The 12 'w' bits (not all are shown) form the 3839'th code, with value
    	// 0x000. Just after decoder.read returns that code, d.hi == 4095 and
    	// d.last == 0.
    	//
    	// The 12 'x' bits form the 3840'th code, with value 0xfff or 4095. Just
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 16:57:58 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/upgrade/node.go

    	flagSet.StringSliceVar(&nodeOptions.ignorePreflightErrors, options.IgnorePreflightErrors, nodeOptions.ignorePreflightErrors, "A list of checks whose errors will be shown as warnings. Example: 'IsPrivilegedUser,Swap'. Value 'all' ignores errors from all checks.")
    }
    
    // newNodeData returns a new nodeData struct to be used for the execution of the kubeadm upgrade node workflow.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    [[sec:choosing_a_log_level]]
    == Choosing a log level
    
    You can choose different log levels from the command line switches shown in <<#logLevelCommandLineOptions, Log level command-line options>>.
    
    You can also configure the log level using <<build_environment.adoc#sec:gradle_configuration_properties,`gradle.properties`>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top