Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 651 for It (0.07 sec)

  1. common-protos/k8s.io/api/events/v1/generated.proto

      // This field cannot be empty for new Events and it can have at most 128 characters.
      optional string reportingInstance = 5;
    
      // action is what action was taken/failed regarding to the regarding object. It is machine-readable.
      // This field cannot be empty for new Events and it can have at most 128 characters.
      optional string action = 6;
    
      // reason is why the action was taken. It is human-readable.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. pkg/test/csrctrl/authority/policies.go

    //   - It sets allowed usages as configured in the policy.
    //   - It sets NotAfter based on the TTL configured in the policy.
    //   - It zeros all extensions.
    //   - It sets BasicConstraints to true.
    //   - It sets IsCA to false.
    type PermissiveSigningPolicy struct {
    	// TTL is the certificate TTL. It's used to calculate the NotAfter value of
    	// the certificate.
    	TTL time.Duration
    	// Usages are the allowed usages of a certificate.
    	Usages []capi.KeyUsage
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 03 17:06:22 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/events/v1beta1/generated.proto

      // This field cannot be empty for new Events and it can have at most 128 characters.
      // +optional
      optional string reportingInstance = 5;
    
      // action is what action was taken/failed regarding to the regarding object. It is machine-readable.
      // This field can have at most 128 characters.
      // +optional
      optional string action = 6;
    
      // reason is why the action was taken. It is human-readable.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. pkg/backoff/exponential.go

    	duration := b.exponentialBackOff.NextBackOff()
    	// always return maxInterval after it reaches MaxElapsedTime
    	if duration == b.exponentialBackOff.Stop {
    		return b.exponentialBackOff.MaxInterval
    	}
    	return duration
    }
    
    func (b ExponentialBackOff) Reset() {
    	b.exponentialBackOff.Reset()
    }
    
    // RetryWithContext tries the operation until it does not return error,
    // or when the context expires, whichever happens first.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 25 01:53:48 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. pilot/pkg/xds/deltatest.go

    	wantUnchanged := sets.New[string]()
    	for _, c := range current {
    		n := newByName[c.Name]
    		if n == nil {
    			// We had a resource, but SotW didn't generate it.
    			if watched.Contains(c.Name) {
    				// We only need to delete it if Envoy is watching. Otherwise, it may have simply unsubscribed
    				wantDeleted.Insert(c.Name)
    			}
    		} else if diff := cmp.Diff(c.Resource, n.Resource, protocmp.Transform()); diff != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. releasenotes/notes/47946.yaml

    kind: feature
    area: traffic-management
    releaseNotes:
    - |
      **Added** namespace discovery selector support on gateway deployment controller, it is protected under `ENABLE_ENHANCED_RESOURCE_SCOPING`. 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 02:49:14 UTC 2023
    - 383 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top