Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for unconfined (0.31 sec)

  1. pkg/apis/core/types.go

    // SeccompProfileType defines the supported seccomp profile types.
    type SeccompProfileType string
    
    const (
    	// SeccompProfileTypeUnconfined is when no seccomp profile is applied (A.K.A. unconfined).
    	SeccompProfileTypeUnconfined SeccompProfileType = "Unconfined"
    	// SeccompProfileTypeRuntimeDefault represents the default container runtime seccomp profile.
    	SeccompProfileTypeRuntimeDefault SeccompProfileType = "RuntimeDefault"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    // +enum
    type SeccompProfileType string
    
    const (
    	// SeccompProfileTypeUnconfined indicates no seccomp profile is applied (A.K.A. unconfined).
    	SeccompProfileTypeUnconfined SeccompProfileType = "Unconfined"
    	// SeccompProfileTypeRuntimeDefault represents the default container runtime seccomp profile.
    	SeccompProfileTypeRuntimeDefault SeccompProfileType = "RuntimeDefault"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"type":             "type indicates which kind of AppArmor profile will be applied. Valid options are:\n  Localhost - a profile pre-loaded on the node.\n  RuntimeDefault - the container runtime's default profile.\n  Unconfined - no AppArmor enforcement.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // type indicates which kind of AppArmor profile will be applied.
      // Valid options are:
      //   Localhost - a profile pre-loaded on the node.
      //   RuntimeDefault - the container runtime's default profile.
      //   Unconfined - no AppArmor enforcement.
      // +unionDiscriminator
      optional string type = 1;
    
      // localhostProfile indicates a profile loaded on the node that should be used.
      // The profile must be preconfigured on the node to work.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/serviceexportcache.go

    				return model.DiscoverableFromSameCluster
    			}
    		} else {
    			// MCS cluster.local mode is not enabled, so requests to the cluster.local host are not confined
    			// to the same cluster. Use the same discoverability policy as for clusterset.local.
    			ec.clusterLocalPolicySelector = ec.clusterSetLocalPolicySelector
    		}
    
    		return ec
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "description": "type indicates which kind of AppArmor profile will be applied. Valid options are:\n  Localhost - a profile pre-loaded on the node.\n  RuntimeDefault - the container runtime's default profile.\n  Unconfined - no AppArmor enforcement.",
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object",
            "x-kubernetes-unions": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      // Valid options are:
      //
      // Localhost - a profile defined in a file on the node should be used.
      // RuntimeDefault - the container runtime default profile should be used.
      // Unconfined - no profile should be applied.
      // +unionDiscriminator
      optional string type = 1;
    
      // localhostProfile indicates a profile defined in a file on the node should be used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    							Default:     "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__apps__v1_openapi.json

                "description": "type indicates which kind of AppArmor profile will be applied. Valid options are:\n  Localhost - a profile pre-loaded on the node.\n  RuntimeDefault - the container runtime's default profile.\n  Unconfined - no AppArmor enforcement.",
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object",
            "x-kubernetes-unions": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        }
    
        // Merge the clusters.
        cluster_from->Merge(cluster_to);
        // Update `cycle_graph_`'s ID.
        cluster_from->set_cycles_graph_node_id(optional_merged_node.value());
    
        // Merge the UnionFind<Cluster*>.
        cluster_for_node_[from].Merge(&cluster_for_node_[to]);
    
        return true;
      }
    
      string EdgeContractionFailureMsg(Cluster* from, Cluster* to,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top