Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,034 for It (0.04 sec)

  1. operator/pkg/apis/istio/common.go

    	"istio.io/istio/operator/pkg/validate"
    )
    
    // UnmarshalAndValidateIOPS unmarshals a string containing IstioOperator YAML, validates it, and returns a struct
    // representation if successful. In case of validation errors, it returns both the IstioOperatorSpec struct and
    // an error, so the caller can decide how to handle it.
    func UnmarshalAndValidateIOPS(iopsYAML string) (*v1alpha1.IstioOperatorSpec, error) {
    	iops := &v1alpha1.IstioOperatorSpec{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 23 17:19:38 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    		// Even though we don't know what it is, allow users to put the resource. We won't be able to
    		// protect against overwrites though.
    		return true, ""
    	}
    	obj := store.Get(name, namespace)
    	if obj == nil {
    		// no object, we can manage it
    		return true, ""
    	}
    	_, managed := obj.GetLabels()[constants.ManagedGatewayLabel]
    	// If object already exists, we can only manage it if it has the label
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. samples/bookinfo/src/reviews/reviews-wlpcfg/src/test/java/it/rest/LibertyRestEndpointTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     *******************************************************************************/ 
    package it.rest;
    
    import it.EndpointTest;
    
    import org.junit.Test;
    
    public class LibertyRestEndpointTest extends EndpointTest {
    
        @Test
        public void testDeployment() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 1002 bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // without any of its container crashing, for it to be considered available.
      // Defaults to 0 (pod will be considered available as soon as it is ready)
      // +optional
      optional int32 minReadySeconds = 4;
    
      // Selector is a label query over pods that should match the replica count.
      // Label keys and values that must match in order to be controlled by this replica set.
      // It must match the pod template's labels.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/authorization/v1/generated.proto

      // +optional
      optional bool denied = 4;
    
      // Reason is optional.  It indicates why a request was allowed or denied.
      // +optional
      optional string reason = 2;
    
      // EvaluationError is an indication that some error occurred during the authorization check.
      // It is entirely possible to get an error and be able to continue determine authorization status in spite of it.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/rbac/v1beta1/generated.proto

      // +optional
      repeated PolicyRule rules = 2;
    }
    
    // RoleBinding references a role, but does not contain it.  It can reference a Role in the same namespace or a ClusterRole in the global namespace.
    // It adds who information via Subjects and namespace information by which namespace it exists in.  RoleBindings in a given
    // namespace only have effect in that namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    
    // This file was autogenerated by go-to-protobuf. Do not edit it manually!
    
    syntax = "proto2";
    
    package k8s.io.api.autoscaling.v2beta1;
    
    import "k8s.io/api/core/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/api/resource/generated.proto";
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  8. pkg/test/framework/resource/config/factory.go

    	// File reads the given files and calls YAML.
    	File(ns string, paths ...string) Plan
    
    	// Eval the same as YAML, but it evaluates the template parameters.
    	Eval(ns string, args any, yamlText ...string) Plan
    
    	// EvalFile the same as File, but it evaluates the template parameters.
    	EvalFile(ns string, args any, paths ...string) Plan
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/batch/v1beta1/generated.proto

      // - "Forbid": forbids concurrent runs, skipping next run if previous run hasn't finished yet;
      // - "Replace": cancels currently running job and replaces it with a new one
      // +optional
      optional string concurrencyPolicy = 3;
    
      // This flag tells the controller to suspend subsequent executions, it does
      // not apply to already started executions.  Defaults to false.
      // +optional
      optional bool suspend = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. operator/pkg/util/path.go

    // It returns an error if pe is not an index path element.
    func PathN(pe string) (int, error) {
    	if !IsNPathElement(pe) {
    		return -1, fmt.Errorf("%s is not a valid index path element", pe)
    	}
    	v, _ := RemoveBrackets(pe)
    	return strconv.Atoi(v)
    }
    
    // RemoveBrackets removes the [] around pe and returns the resulting string. It returns false if pe is not surrounded
    // by [].
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top