Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,267 for shown (0.06 sec)

  1. operator/pkg/helmreconciler/reconciler.go

    			}
    
    			// Possible paths for status are RECONCILING -> {NONE, ERROR, HEALTHY}. NONE means component has no resources.
    			// In NONE case, the component is not shown in overall status.
    			mu.Lock()
    			setStatus(componentStatus, c, v1alpha1.InstallStatus_RECONCILING, nil)
    			mu.Unlock()
    
    			status := v1alpha1.InstallStatus_NONE
    			var err error
    			if len(ms) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. docs/bucket/notifications/README.md

    An example configuration for RabbitMQ is shown below:
    
    ```sh
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. src/crypto/ecdsa/ecdsa.go

    	// This implementation derives the nonce from an AES-CTR CSPRNG keyed by:
    	//
    	//    SHA2-512(priv.D || entropy || hash)[:32]
    	//
    	// The CSPRNG key is indifferentiable from a random oracle as shown in
    	// [Coron], the AES-CTR stream is indifferentiable from a random oracle
    	// under standard cryptographic assumptions (see [Larsson] for examples).
    	//
    	// [Coron]: https://cs.nyu.edu/~dodis/ps/merkle.pdf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. src/text/template/doc.go

    //	{{/* a comment */}}
    //	{{- /* a comment with white space trimmed from preceding and following text */ -}}
    //		A comment; discarded. May contain newlines.
    //		Comments do not nest and must start and end at the
    //		delimiters, as shown here.
    /*
    
    	{{pipeline}}
    		The default textual representation (the same as would be
    		printed by fmt.Print) of the value of the pipeline is copied
    		to the output.
    
    	{{if pipeline}} T1 {{end}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    This can be achieved by using the <<incremental_build.adoc#sec:task_input_output_runtime_api,runtime API>> as shown in the following snippet.
    
    ====
    include::sample[dir="snippets/buildCache/java-version-tracking/kotlin",files="build.gradle.kts[tags=trackVendor]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/join.go

    	options.AddConfigFlag(flagSet, &joinOptions.cfgPath)
    	flagSet.StringSliceVar(
    		&joinOptions.ignorePreflightErrors, options.IgnorePreflightErrors, joinOptions.ignorePreflightErrors,
    		"A list of checks whose errors will be shown as warnings. Example: 'IsPrivilegedUser,Swap'. Value 'all' ignores errors from all checks.",
    	)
    	flagSet.StringVar(
    		&joinOptions.token, options.TokenStr, "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    		if !rst.skip {
    			fmt.Fprintf(&rst.buf, "%d", depth-26+1)
    			rst.last = '0'
    		}
    	}
    }
    
    // demangleConst parses:
    //
    //	<const> = <type> <const-data>
    //	        | "p" // placeholder, shown as _
    //	        | <backref>
    //	<const-data> = ["n"] {<hex-digit>} "_"
    func (rst *rustState) demangleConst() {
    	if len(rst.str) < 1 {
    		rst.fail("expected constant")
    	}
    
    	if rst.str[0] == 'B' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/init.go

    	options.AddConfigFlag(flagSet, &initOptions.cfgPath)
    	flagSet.StringSliceVar(
    		&initOptions.ignorePreflightErrors, options.IgnorePreflightErrors, initOptions.ignorePreflightErrors,
    		"A list of checks whose errors will be shown as warnings. Example: 'IsPrivilegedUser,Swap'. Value 'all' ignores errors from all checks.",
    	)
    	flagSet.BoolVar(
    		&initOptions.skipTokenPrint, options.SkipTokenPrint, initOptions.skipTokenPrint,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  9. docs/metrics/v3.md

    |                          |                             |
    
    ## Metrics Listing
    
    Each of the following sub-sections list metrics returned by each of the endpoints.
    
    The standard metrics group for GoCollector is not shown below.
    
    ### `/api/requests`
    
    | Name                                           | Type      | Help                                                    | Labels                           |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    [[sec:an_incremental_task_in_action]]
    === An incremental task in action
    
    Consider an instance of `IncrementalReverseTask` executed against a set of inputs for the first time.
    
    In this case, all inputs will be considered `ADDED`, as shown here:
    
    [[ex:incremental_task_definition]]
    ====
    include::sample[dir="snippets/tasks/incrementalTask/kotlin",files="build.gradle.kts[tags=reverse]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top