Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 711 for Enforce (0.56 sec)

  1. pilot/pkg/security/authz/builder/builder.go

    				ConfigType: &hcm.HttpFilter_TypedConfig{TypedConfig: protoconv.MessageToAny(rbac)},
    			},
    		}
    	}
    	// Add the RBAC filter in shadow mode so that it only evaluates the matching rules for CUSTOM action but not enforce it.
    	// The evaluation result is stored in the dynamic metadata keyed by the policy name. And then the ext_authz filter
    	// can utilize these metadata to trigger the enforcement conditionally.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. CHANGELOG.md

        `DurationUnit` which was a typealias in 1.5.x.
     *  Upgrade: [Okio 3.2.0][okio_3_2_0].
    
    
    ## Version 5.0.0-alpha.9
    
    _2022-06-16_
    
     *  New: Enforce label length limits in URLs. `HttpUrl` now rejects URLs whose domains aren't valid.
        This includes overly-long domain names (longer than 253 characters), overly-long labels (more
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    }
    
    // AddConversionFunc registers a function that converts between a and b by passing objects of those
    // types to the provided function. The function *must* accept objects of a and b - this machinery will not enforce
    // any other guarantee.
    func (s *Scheme) AddConversionFunc(a, b interface{}, fn conversion.ConversionFunc) error {
    	return s.converter.RegisterUntypedConversionFunc(a, b, fn)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    // cluster-cidr flag on controller manager and clusterCIDR on kube-proxy).
    //
    // Users are always allowed to override default values, with the only exception of a small subset of setting with
    // relevance for security (e.g. enforce authorization-mode Node and RBAC on api server)
    //
    // If the user provides a configuration types that is not expected for the action you are performing, kubeadm will
    // ignore those types and print a warning.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/first-steps.md

    And the more exotic ones:
    
    * `@app.options()`
    * `@app.head()`
    * `@app.patch()`
    * `@app.trace()`
    
    !!! tip
        You are free to use each operation (HTTP method) as you wish.
    
        **FastAPI** doesn't enforce any specific meaning.
    
        The information here is presented as a guideline, not a requirement.
    
        For example, when using GraphQL you normally perform all the actions using only `POST` operations.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 12K bytes
    - Viewed (1)
  6. src/cmd/compile/internal/walk/walk.go

    		// TODO(rsc): Clean this up.
    		n = walkExpr(n, init)
    	} else {
    		n = walkStmt(n)
    	}
    	init.Append(n)
    }
    
    // The max number of defers in a function using open-coded defers. We enforce this
    // limit because the deferBits bitmask is currently a single byte (to minimize code size)
    const maxOpenDefers = 8
    
    // backingArrayPtrLen extracts the pointer and length from a slice or string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. helm/minio/README.md

    and set `networkPolicy.enabled` to `true`.
    
    For Kubernetes v1.5 & v1.6, you must also turn on NetworkPolicy by setting
    the DefaultDeny namespace annotation. Note: this will enforce policy for *all* pods in the namespace:
    
    ```
    kubectl annotate namespace default "net.beta.kubernetes.io/network-policy={\"ingress\":{\"isolation\":\"DefaultDeny\"}}"
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease.go

    	if r.stopReconcilingCalled.Load() {
    		return nil
    	}
    
    	// we use the serverID as the key to avoid using the server IP, port as the key.
    	// note: this means that this lease doesn't enforce mutual exclusion of ip/port usage between apiserver.
    	key := path.Join(r.serverLeases.baseKey, serverId)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

         * different coordinates, and using both at the same time is illegal. The libraries
         * were not published using Gradle, so the consumer needs a way to express that and
         * enforce the use of only one of them at the same time.
         */
        def "can choose between cglib and cglib-nodep by declaring capabilities (#description)"() {
            given:
            repository {
                'cglib:cglib:3.2.5'()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  10. src/runtime/lockrank_on.go

    		// If new lock is a leaf lock, then the preceding lock can
    		// be anything except another leaf lock.
    		rankOK = prevRank < lockRankLeafRank
    	} else {
    		// We've now verified the total lock ranking, but we
    		// also enforce the partial ordering specified by
    		// lockPartialOrder as well. Two locks with the same rank
    		// can only be acquired at the same time if explicitly
    		// listed in the lockPartialOrder table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top