Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,536 for Enforce (0.34 sec)

  1. pkg/config/analysis/msg/generate.main.go

    	if err != nil {
    		return nil, fmt.Errorf("unable to read input file: %v", err)
    	}
    
    	m := &messages{}
    
    	if err := yaml.Unmarshal(b, m); err != nil {
    		return nil, err
    	}
    
    	return m, nil
    }
    
    // Enforce that names and codes follow expected regex and are unique
    func validate(ms *messages) error {
    	codes := make(map[string]bool)
    	names := make(map[string]bool)
    
    	for _, m := range ms.Messages {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 16:55:31 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/certificates/v1alpha1/types.go

    // contains one valid set of trust anchors for that signer. Signers may have
    // multiple associated ClusterTrustBundles; each is an independent set of trust
    // anchors for that signer. Admission control is used to enforce that only users
    // with permissions on the signer can create or modify the corresponding bundle.
    type ClusterTrustBundle struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// metadata contains the object metadata.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_termination_order.go

    limitations under the License.
    */
    
    package kuberuntime
    
    import (
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    
    	"k8s.io/kubernetes/pkg/kubelet/types"
    )
    
    // terminationOrdering is used to enforce a termination ordering for sidecar containers.  It sets up
    // dependencies between sidecars and allows the pod termination process to wait until the grace period
    // expires, or all dependent containers have finished terminating.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 00:07:21 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    		network := a.Network(wle.Spec.Address, wle.Labels).String()
    		if wle.Spec.Network != "" {
    			network = wle.Spec.Network
    		}
    
    		// enforce traversing waypoints
    		policies = append(policies, implicitWaypointPolicies(ctx, Waypoints, waypoint, services)...)
    
    		w := &workloadapi.Workload{
    			Uid:                   a.generateWorkloadEntryUID(wle.Namespace, wle.Name),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/attributes/Attribute.java

         * This method is useful when there's supposedly only one attribute of a specific type in a container, so there's
         * no need to distinguish by name (but the returned type doesn't enforce it_. There's no guarantee that subsequent
         * calls to this method with the same attributes would either return the same instance or different instances
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 22 02:54:35 UTC 2019
    - 4K bytes
    - Viewed (0)
  6. android/guava-testlib/test/com/google/common/testing/AbstractPackageSanityTestsTest.java

       * that would be a problem because it violates small-test rules. Note that we strip the
       * suppression externally, but it's OK because we don't enforce test-size rules there.)
       *
       * We'd just use PackageSanityTests directly, saving us from needing this separate type, but we're
       * currently skipping MediumTests on Android, and we skip them by not making them present at
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 21:37:55 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_constraints.adoc

    Otherwise, the constraint has no effect.
    Dependency constraints can also define a <<rich_versions.adoc#rich-version-constraints,rich version constraint>> and support <<rich_versions.adoc#sec:strict-version,strict versions>> to enforce a version even if it contradicts with the version defined by a transitive dependency (e.g. if the version needs to be downgraded).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/certificates/v1alpha1/generated.proto

    // contains one valid set of trust anchors for that signer. Signers may have
    // multiple associated ClusterTrustBundles; each is an independent set of trust
    // anchors for that signer. Admission control is used to enforce that only users
    // with permissions on the signer can create or modify the corresponding bundle.
    message ClusterTrustBundle {
      // metadata contains the object metadata.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/AbstractArchiveTask.java

         */
        public void setPreserveFileTimestamps(boolean preserveFileTimestamps) {
            archivePreserveFileTimestamps.set(preserveFileTimestamps);
        }
    
        /**
         * Specifies whether to enforce a reproducible file order when reading files from directories.
         * <p>
         * Gradle will then walk the directories on disk which are part of this archive in a reproducible order
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 17 20:38:33 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/delete.go

    		defer span.End(500 * time.Millisecond)
    
    		namespace, name, err := scope.Namer.Name(req)
    		if err != nil {
    			scope.err(err, w, req)
    			return
    		}
    
    		// enforce a timeout of at most requestTimeoutUpperBound (34s) or less if the user-provided
    		// timeout inside the parent context is lower than requestTimeoutUpperBound.
    		ctx, cancel := context.WithTimeout(ctx, requestTimeoutUpperBound)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:32 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top