Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 206 for LOGICAL (0.42 sec)

  1. staging/src/k8s.io/api/rbac/v1/types.go

    }
    
    // +genclient
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.8
    
    // Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.
    type Role struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/compact.go

    	// Technical definitions:
    	// We have a special key in etcd defined as *compactRevKey*.
    	// compactRevKey's value will be set to the string of last compacted revision.
    	// compactRevKey's version will be used as logical time for comparison. THe version is referred as compact time.
    	// Initially, because the key doesn't exist, the compact time (version) is 0.
    	//
    	// Algorithm:
    	// - Compare to see if (local compact_time) = (remote compact_time).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 17 02:54:36 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  3. architecture/standards/0004-use-a-platform-architecture.md

    - Has a private implementation.
    - Is owned by a single team. A team may own multiple architecture modules.
    
    The modules are arranged into several different "Gradle platforms".
    A Gradle platform is a logical distribution that provides support for a specific kind of automation.
    A typical platform builds on other platforms in order to add more capabilities, for example, to add support for a particular language.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. pkg/apis/networking/types.go

    type NetworkPolicyIngressRule struct {
    	// ports is a list of ports which should be made accessible on the pods selected for
    	// this rule. Each item in this list is combined using a logical OR. If this field is
    	// empty or missing, this rule matches all ports (traffic not restricted by port).
    	// If this field is present and contains at least one item, then this rule allows
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/rbac/v1beta1/types.go

    // +k8s:prerelease-lifecycle-gen:deprecated=1.17
    // +k8s:prerelease-lifecycle-gen:removed=1.22
    // +k8s:prerelease-lifecycle-gen:replacement=rbac.authorization.k8s.io,v1,Role
    
    // Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.22.
    type Role struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecatedFeatureUsage.java

            USER_CODE_DIRECT,
    
            /**
             * The key characteristic is that the trace to the usage DOES NOT indicate the offending user code,
             * but the usage happens during runtime and may be associated to a logical entity (e.g. task, plugin).
             *
             * The association between a usage and entity is not modelled by the usage,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1/types_swagger_doc_generated.go

    	"ports": "ports is a list of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  8. src/runtime/trace/trace.go

    //	   trace.WithRegion(ctx, "extractCoffee", extractCoffee)
    //	   trace.WithRegion(ctx, "mixMilkCoffee", mixMilkCoffee)
    //	})
    //
    // A task is a higher-level component that aids tracing of logical
    // operations such as an RPC request, an HTTP request, or an
    // interesting local operation which may require multiple goroutines
    // working together. Since tasks can involve multiple goroutines,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1alpha1/types.go

    	Name string `json:"name" protobuf:"bytes,3,opt,name=name"`
    }
    
    // +genclient
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.22.
    type Role struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. src/runtime/race/race_test.go

    	// There are two sources of flakiness:
    	// 1. Some tests rely on particular execution order.
    	//    If the order is different, race does not happen at all.
    	// 2. Ironically, ThreadSanitizer runtime contains a logical race condition
    	//    that can lead to false negatives if racy accesses happen literally at the same time.
    	// Tests used to work reliably in the good old days of GOMAXPROCS=1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6K bytes
    - Viewed (0)
Back to top