Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,282 for mean_t (0.11 sec)

  1. common-protos/k8s.io/api/authorization/v1beta1/generated.proto

      // "" (empty) means "all" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview
      // +optional
      optional string namespace = 1;
    
      // Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy.  "*" means all.
      // +optional
      optional string verb = 2;
    
      // Group is the API Group of the Resource.  "*" means all.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authorization/v1/generated.proto

      // "" (empty) means "all" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview
      // +optional
      optional string namespace = 1;
    
      // Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy.  "*" means all.
      // +optional
      optional string verb = 2;
    
      // Group is the API Group of the Resource.  "*" means all.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/authorization/v1/generated.proto

      // "" (empty) means "all" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview
      // +optional
      optional string namespace = 1;
    
      // Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy.  "*" means all.
      // +optional
      optional string verb = 2;
    
      // Group is the API Group of the Resource.  "*" means all.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authorization/v1beta1/generated.proto

      // "" (empty) means "all" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview
      // +optional
      optional string namespace = 1;
    
      // Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy.  "*" means all.
      // +optional
      optional string verb = 2;
    
      // Group is the API Group of the Resource.  "*" means all.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/iexport.go

    //             Offset declOff
    //         }
    //     }
    //
    //     Fingerprint [8]byte
    //
    // uvarint means a uint64 written out using uvarint encoding.
    //
    // []T means a uvarint followed by that many T objects. In other
    // words:
    //
    //     Len   uvarint
    //     Elems [Len]T
    //
    // stringOff means a uvarint that indicates an offset within the
    // Strings section. At that offset is another uvarint, followed by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/toleration.go

    //
    //  1. Empty toleration.effect means to match all taint effects,
    //     otherwise taint effect must equal to toleration.effect.
    //  2. If toleration.operator is 'Exists', it means to match all taint values.
    //  3. Empty toleration.key means to match all taint keys.
    //     If toleration.key is empty, toleration.operator must be 'Exists';
    //     this combination means to match all taint values and all taint keys.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. test/fixedbugs/issue22662b.go

    var tests = []struct {
    	src, pos string
    }{
    	{"//line :10\n", ":10:"},                   // no filename means no filename
    	{"//line :10:4\n", "filename:10:4"},        // no filename means use existing filename
    	{"//line foo.go:10\n", "foo.go:10:"},       // no column means don't print a column
    	{"//line foo.go:10:4\n", "foo.go:10:4:"},   // column means print a column
    	{"//line foo.go:10:4\n\n", "foo.go:11:1:"}, // relative columns start at 1 after newline
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/image/color/ycbcr.go

    	//	B = (65536*Y' + 116130 *(Cb-128)                  + adjustment) >> 16
    	// A constant rounding adjustment of 1<<15, one half of 1<<16, would mean
    	// round-to-nearest when dividing by 65536 (shifting right by 16).
    	// Similarly, a constant rounding adjustment of 0 would mean round-down.
    	//
    	// Defining YY1 = 65536*Y' + adjustment simplifies the formulae and
    	// requires fewer CPU operations:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/renderer/AbstractConfigurationReportRenderer.java

    /**
     * An {@code abstract} {@link ReportRenderer} implementation that can be used to render a {@link ConfigurationReportModel}
     * according to a {@link AbstractConfigurationReportSpec}.
     *
     * This is meant to be the base class for any such renderer used for configuration reporting.
     *
     * @param <E> the destination type which will receive the model data and be responsible for writing it somewhere
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 25 13:50:45 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. src/encoding/gob/error.go

    	error_(fmt.Errorf("gob: "+format, args...))
    }
    
    // error_ wraps the argument error and uses it as the argument to panic.
    func error_(err error) {
    	panic(gobError{err})
    }
    
    // catchError is meant to be used as a deferred function to turn a panic(gobError) into a
    // plain error. It overwrites the error return of the function that deferred its call.
    func catchError(err *error) {
    	if e := recover(); e != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 23:03:07 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top