Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,019 for Enforce (0.25 sec)

  1. cmd/importverifier/importverifier.go

    	// This is a directory which `go list` might not consider a package (if it
    	// has not .go files)
    	BaseDir string `yaml:"baseImportPath"`
    	// IgnoredSubTrees are roots of sub-trees of the BaseDir for which we do
    	// not want to enforce any import restrictions whatsoever, given as
    	// relative paths from the root of the repository.
    	IgnoredSubTrees []string `yaml:"ignoredSubTrees,omitempty"`
    	// AllowedImports are roots of package trees that are allowed to be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:16 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    			}{
    				// Mutual Connection is originated by our DR but server side drops the connection to
    				// only use Simple TLS as it doesn't verify client side cert
    				// TODO: mechanism to enforce mutual TLS(client cert) validation by the server
    				// 1. Mutual TLS origination from egress gateway to https endpoint:
    				//    internalClient ) ---HTTP request (Host: some-external-site.com----> Hits listener 0.0.0.0_80 ->
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. hack/golangci.yaml

              # golangci-lint will report stale results:
              #    _output/local/bin/golangci-lint cache clean
              
              # At this point we don't enforce the usage structured logging calls except in
              # those packages that were migrated. This disables the check for other files.
              -structured .*
              
              # Now enable it again for migrated packages.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/atomic_ppc64x.s

    // license that can be found in the LICENSE file.
    
    //go:build ppc64 || ppc64le
    
    #include "textflag.h"
    
    // For more details about how various memory models are
    // enforced on POWER, the following paper provides more
    // details about how they enforce C/C++ like models. This
    // gives context about why the strange looking code
    // sequences below work.
    //
    // http://www.rdrop.com/users/paulmck/scalability/paper/N2745r.2011.03.04a.html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. src/internal/filepathlite/path_windows.go

    func volumeNameLen(path string) int {
    	switch {
    	case len(path) >= 2 && path[1] == ':':
    		// Path starts with a drive letter.
    		//
    		// Not all Windows functions necessarily enforce the requirement that
    		// drive letters be in the set A-Z, and we don't try to here.
    		//
    		// We don't handle the case of a path starting with a non-ASCII character,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509.go

    	}
    	return a.auth.AuthenticateRequest(req)
    }
    
    func (a *Verifier) verifySubject(subject pkix.Name) error {
    	// No CN restrictions
    	if len(a.allowedCommonNames.Value()) == 0 {
    		return nil
    	}
    	// Enforce CN restrictions
    	for _, allowedCommonName := range a.allowedCommonNames.Value() {
    		if allowedCommonName == subject.CommonName {
    			return nil
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 01:31:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/types.go

    	// Refer to [Node Allocatable](https://kubernetes.io/docs/tasks/administer-cluster/reserve-compute-resources/#node-allocatable) doc for more information.
    	SystemReservedCgroup string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/resource_operation_safety_analysis.cc

    // ALGORITHM OVERVIEW
    // ==================
    //
    // An XLA cluster hoists all resource reads to be beginning of the cluster
    // execution and all the resource writes to the end.  This means it cannot
    // enforce arbitrary ordering dependencies (via control or data edges) between
    // resource operations.  Since all resource reads happen before all resource
    // writes, edges constraining resource reads to happen before resource writes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ManagedModelInitializerTest.groovy

                "It must be one of:",
                "- An unmanaged property (i.e. annotated with @Unmanaged)"
            )
        }
    
        def "should enforce properties of #type are managed"() {
            when:
            Class<?> generatedClass = readOnlyManagedClass(type)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

                // the default must become the current project of the thread that clones this
                MavenProject current = getCurrentProject();
                // we replace the thread local of the clone to prevent write through and enforce the new default value
                clone.currentProject = ThreadLocal.withInitial(() -> current);
                return clone;
            } catch (CloneNotSupportedException e) {
                throw new RuntimeException("Bug", e);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top