Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 336 for Enforce (1.72 sec)

  1. src/runtime/stubs.go

    // the memory manager.
    //
    // There's no corresponding barrier for the read side because the read
    // side naturally has a data dependency order. All architectures that
    // Go supports or seems likely to ever support automatically enforce
    // data dependency ordering.
    func publicationBarrier()
    
    // getcallerpc returns the program counter (PC) of its caller's caller.
    // getcallersp returns the stack pointer (SP) of its caller's caller.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/query-params-str-validations.md

        The `Union` in `Union[str, None]` will allow your editor to give you better support and detect errors.
    
    ## Additional validation
    
    We are going to enforce that even though `q` is optional, whenever it is provided, **its length doesn't exceed 50 characters**.
    
    ### Import `Query` and `Annotated`
    
    To achieve that, first import:
    
    * `Query` from `fastapi`
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server.go

    			}
    			if s == "h2" && c == "http/1.1" {
    				http11fallback = true
    			}
    		}
    	}
    	// As a special case, let http/1.1 clients connect to h2 servers as if they
    	// didn't support ALPN. We used not to enforce protocol overlap, so over
    	// time a number of HTTP servers were configured with only "h2", but
    	// expected to accept connections from "http/1.1" clients. See Issue 46310.
    	if http11fallback {
    		return "", nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/order.go

    	"cmd/compile/internal/staticinit"
    	"cmd/compile/internal/typecheck"
    	"cmd/compile/internal/types"
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    )
    
    // Rewrite tree to use separate statements to enforce
    // order of evaluation. Makes walk easier, because it
    // can (after this runs) reorder at will within an expression.
    //
    // Rewrite m[k] op= r into m[k] = m[k] op r if op is / or %.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    //
    // Server Side Apply with go templates is an odd choice (no one likes YAML templating...) but is one of the few
    // remaining options after all others are ruled out.
    //   - Merge patch/Update cannot be used. If we always enforce that our object is *exactly* the same as
    //     the in-cluster object we will get in endless loops due to other controllers that like to add annotations, etc.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. src/net/mail/message.go

    		Body:   tp.R,
    	}, nil
    }
    
    // readHeader reads the message headers from r.
    // This is like textproto.ReadMIMEHeader, but doesn't validate.
    // The fix for issue #53188 tightened up net/textproto to enforce
    // restrictions of RFC 7230.
    // This package implements RFC 5322, which does not have those restrictions.
    // This function copies the relevant code from net/textproto,
    // simplified for RFC 5322.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    	return &admissionWaiter{
    		attributes: a,
    		finished:   make(chan struct{}),
    		result:     defaultDeny{},
    	}
    }
    
    // NewQuotaEvaluator configures an admission controller that can enforce quota constraints
    // using the provided registry.  The registry must have the capability to handle group/kinds that
    // are persisted by the server this admission controller is intercepting
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_utils.go

    	if err != nil {
    		return 0, err
    	}
    	// maxUnavailable might be zero for small percentage with round down.
    	// So we have to enforce it not to be less than 1.
    	if maxUnavailableNum < 1 {
    		maxUnavailableNum = 1
    	}
    	return maxUnavailableNum, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

         * correctly installed
         *
         * <p>{@link #transitioned}: is set by {@link #transitionService} to indicate that some
         * transition has been performed.
         *
         * <p>Together, they allow us to enforce that all services have their listeners installed prior
         * to any service performing a transition, then we can fail in the ServiceManager constructor
         * rather than in a Service.Listener callback.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/container_manager_linux.go

    		}
    		err = cm.qosContainerManager.Start(cm.GetNodeAllocatableAbsolute, activePods)
    		if err != nil {
    			return fmt.Errorf("failed to initialize top level QOS containers: %v", err)
    		}
    	}
    
    	// Enforce Node Allocatable (if required)
    	if err := cm.enforceNodeAllocatableCgroups(); err != nil {
    		return err
    	}
    
    	systemContainers := []*systemContainer{}
    
    	if cm.SystemCgroupsName != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top