Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,536 for Enforce (0.19 sec)

  1. pilot/pkg/serviceregistry/util/workloadinstances/util.go

    	instances := index.GetByIP(proxyIP) // list is ordered by namespace/name
    	if len(instances) == 0 {
    		return nil
    	}
    	if len(instances) == 1 { // dominant use case
    		// NOTE: for the sake of backwards compatibility, we don't enforce
    		//       instance.Namespace == proxy.ConfigNamespace
    		return instances[0]
    	}
    
    	// try to find workload instance with the same name as proxy
    	proxyName := InstanceNameForProxy(proxy)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 17:36:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. plugin/pkg/admission/eventratelimit/admission.go

    	// they should not be affected by the ratelimit
    	if attr.IsDryRun() {
    		return nil
    	}
    
    	var errors []error
    	// give each limit enforcer a chance to reject the event
    	for _, enforcer := range a.limitEnforcers {
    		if err := enforcer.accept(attr); err != nil {
    			errors = append(errors, err)
    		}
    	}
    
    	if aggregatedErr := utilerrors.NewAggregate(errors); aggregatedErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 14 15:26:57 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  3. releasenotes/notes/tls-inbound.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    releaseNotes:
    - |
      **Improved** TLS configuration on sidecar server side inbound paths to enforce TLSv2 version along with recommended cipher suites.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 28 16:30:12 UTC 2020
    - 378 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1/types.go

    	// quota system will ensure that there is a covering quota.  In the
    	// absence of a covering quota, the quota system will deny the request.
    	// For example, if an administrator wants to globally enforce that
    	// that a quota must exist to consume persistent volume claims associated
    	// with any storage class, the list would include
    	// ".storageclass.storage.k8s.io/requests.storage"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1alpha1/types.go

    	// quota system will ensure that there is a covering quota.  In the
    	// absence of a covering quota, the quota system will deny the request.
    	// For example, if an administrator wants to globally enforce that
    	// that a quota must exist to consume persistent volume claims associated
    	// with any storage class, the list would include
    	// ".storageclass.storage.k8s.io/requests.storage"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1beta1/types.go

    	// quota system will ensure that there is a covering quota.  In the
    	// absence of a covering quota, the quota system will deny the request.
    	// For example, if an administrator wants to globally enforce that
    	// that a quota must exist to consume persistent volume claims associated
    	// with any storage class, the list would include
    	// ".storageclass.storage.k8s.io/requests.storage"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/enforcerplugin/some-thing/pom.xml

        </dependencies>
        <build>
            <plugins>
                <plugin>
                    <artifactId>maven-enforcer-plugin</artifactId>
                    <version>1.1.1</version>
                    <executions>
                        <execution>
                            <goals>
                                <goal>enforce</goal>
                            </goals>
                            <inherited>true</inherited>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. src/runtime/security_unix.go

    import (
    	"internal/stringslite"
    )
    
    func secure() {
    	initSecureMode()
    
    	if !isSecureMode() {
    		return
    	}
    
    	// When secure mode is enabled, we do one thing: enforce specific
    	// environment variable values (currently we only force GOTRACEBACK=none)
    	//
    	// Other packages may also disable specific functionality when secure mode
    	// is enabled (determined by using linkname to call isSecureMode).
    
    	secureEnv()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 866 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/types.go

    	// quota system will ensure that there is a covering quota.  In the
    	// absence of a covering quota, the quota system will deny the request.
    	// For example, if an administrator wants to globally enforce that
    	// that a quota must exist to consume persistent volume claims associated
    	// with any storage class, the list would include
    	// ".storageclass.storage.k8s.io/requests.storage"
    	MatchContains []string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  10. pkg/kubelet/active_deadline.go

    	"k8s.io/utils/clock"
    )
    
    const (
    	reason  = "DeadlineExceeded"
    	message = "Pod was active on the node longer than the specified deadline"
    )
    
    // activeDeadlineHandler knows how to enforce active deadlines on pods.
    type activeDeadlineHandler struct {
    	// the clock to use for deadline enforcement
    	clock clock.Clock
    	// the provider of pod status
    	podStatusProvider status.PodStatusProvider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 10:20:09 UTC 2021
    - 3.2K bytes
    - Viewed (0)
Back to top