Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 919 for It (0.03 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. architecture/ambient/ztunnel.md

    Ztunnel will request certificates for all identities on the node.
    It determines this based on the Workload xDS configuration it receives.
    When a new identity is discovered on the node, it will be enqueued for fetching at a low priority, as an optimization.
    However, if a request needs a certain identity that we have not fetched yet, it will be immediately requested.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // When a driver is initialized on a node, it provides the same topology keys
      // along with values. Kubelet will expose these topology keys as labels
      // on its own node object.
      // When Kubernetes does topology aware provisioning, it can use this list to
      // determine which labels it should retrieve from the node object and pass
      // back to the driver.
      // It is possible for different nodes to use different topology keys.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. 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)
  9. pilot/pkg/serviceregistry/aggregate/controller.go

    	c.handlers.AppendServiceHandler(f)
    }
    
    func (c *Controller) AppendWorkloadHandler(f func(*model.WorkloadInstance, model.Event)) {
    	// Currently, it is not used.
    	// Note: take care when you want to enable it, it will register the handlers to all registries
    	// c.handlers.AppendWorkloadHandler(f)
    }
    
    func (c *Controller) AppendServiceHandlerForCluster(id cluster.ID, f model.ServiceHandler) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. pilot/pkg/status/distribution/reporter.go

    				// if this resource is done reconciling, let's not worry about it anymore
    				finishedResources = append(finishedResources, res)
    				// deleting it here doesn't work because we have a read lock and are inside an iterator.
    				// TODO: this will leak when a resource never reaches 100% before it is replaced.
    				// TODO: do deletes propagate through this thing?
    			}
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top