Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 206 for LOGICAL (0.11 sec)

  1. common-protos/k8s.io/api/rbac/v1alpha1/generated.proto

      // If any of the selectors match, then the ClusterRole's permissions will be added
      // +optional
      repeated k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector clusterRoleSelectors = 1;
    }
    
    // ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.22.
    message ClusterRole {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/rbac/v1beta1/types_swagger_doc_generated.go

    }
    
    func (AggregationRule) SwaggerDoc() map[string]string {
    	return map_AggregationRule
    }
    
    var map_ClusterRole = map[string]string{
    	"":                "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.22.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1beta1/generated.proto

      // +optional
      // +listType=atomic
      repeated .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector clusterRoleSelectors = 1;
    }
    
    // ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.22.
    message ClusterRole {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/rbac/v1alpha1/generated.proto

      // +optional
      // +listType=atomic
      repeated .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector clusterRoleSelectors = 1;
    }
    
    // ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.22.
    message ClusterRole {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    		printAncestorTraceback(ancestor)
    	}
    }
    
    // traceback2 prints a stack trace starting at u. It skips the first "skip"
    // logical frames, after which it prints at most "max" logical frames. It
    // returns n, which is the number of logical frames skipped and printed, and
    // lastN, which is the number of logical frames skipped or printed just in the
    // physical frame that u references.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. pkg/workloadapi/security/authorization.proto

    }
    
    message Group {
      // Rules are OR-ed (e.g. ANY rule can match)
      // This is a generic form of the authz policy's to, from and when
      repeated Rules rules = 1;
    }
    
    message Rules {
      // The logical behavior between the matches (if there are more than one)
    //  MatchBehavior match_behavior = 1;
    
      // Conditions within a rule are AND-ed (e.g. ALL conditions must be true)
      repeated Match matches = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 20:45:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. src/io/multi.go

    			return sum, err
    		}
    		mr.readers[i] = nil // permit early GC
    	}
    	mr.readers = nil
    	return sum, nil
    }
    
    var _ WriterTo = (*multiReader)(nil)
    
    // MultiReader returns a Reader that's the logical concatenation of
    // the provided input readers. They're read sequentially. Once all
    // inputs have returned EOF, Read will return EOF.  If any of the readers
    // return a non-nil, non-EOF error, Read will return that error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. internal/s3select/sql/parser.go

    // Expression represents a logical disjunction of clauses
    type Expression struct {
    	And []*AndCondition `parser:"@@ ( \"OR\" @@ )*"`
    }
    
    // ListExpr represents a literal list with elements as expressions.
    type ListExpr struct {
    	Elements []*Expression `parser:"\"(\" @@ ( \",\" @@ )* \")\" | \"[\" @@ ( \",\" @@ )* \"]\""`
    }
    
    // AndCondition represents logical conjunction of clauses
    type AndCondition struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. test/string_lit.go

    		`\000\123\x00\312\xFE\u0123\ubabe\U0000babe`,
    		"backslashes 2 (backquote)")
    	assert("\\x\\u\\U\\", `\x\u\U\`, "backslash 3 (backquote)")
    
    	// test large and surrogate-half runes. perhaps not the most logical place for these tests.
    	var r int32
    	r = 0x10ffff // largest rune value
    	s = string(r)
    	assert(s, "\xf4\x8f\xbf\xbf", "largest rune")
    	r = 0x10ffff + 1
    	s = string(r)
    	assert(s, "\xef\xbf\xbd", "too-large rune")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 13 01:17:02 UTC 2013
    - 3.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/rbac/v1/generated.proto

      // +optional
      // +listType=atomic
      repeated .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector clusterRoleSelectors = 1;
    }
    
    // ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.
    message ClusterRole {
      // Standard object's metadata.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top