Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,352 for notC (0.44 sec)

  1. staging/src/k8s.io/api/networking/v1/types.go

    	// host is the fully qualified domain name of a network host, as defined by RFC 3986.
    	// Note the following deviations from the "host" part of the
    	// URI as defined in RFC 3986:
    	// 1. IPs are not allowed. Currently an IngressRuleValue can only apply to
    	//    the IP in the Spec of the parent Ingress.
    	// 2. The `:` delimiter is not respected because ports are not allowed.
    	//	  Currently the port of an Ingress is implicitly :80 for http and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. build/root/Makefile

    #   DBG: If set to "1", build with optimizations disabled for easier
    #     debugging.  Any other value is ignored.
    #
    # Example:
    #   make
    #   make all
    #   make all WHAT=cmd/kubelet GOFLAGS=-v
    #   make all DBG=1
    #     Note: Specify DBG=1 for building unstripped binaries, which allows you to
    #     use code debugging tools like delve. When DBG is unspecified, it defaults
    #     to "-s -w" which strips debug information.
    endef
    .PHONY: all
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. docs/sts/ldap.md

    will lose any privileges associated with a group they are removed from, and gain any privileges associated with a group they are added to.
    
    **Please note that when AD/LDAP is configured, MinIO will not support long term users defined internally.** Only AD/LDAP users (and the root user) are allowed. In addition to this, the server will not support operations on users or groups using `mc admin user` or `mc admin group` commands except `mc admin user info` and `mc admin group info` to list set...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/infer.go

    				// t0 was simplified to t1.
    				// If t0 was a generic function, but the simplified signature t1 does
    				// not contain any type parameters anymore, the function is not generic
    				// anymore. Remove it's type parameters. (go.dev/issue/59953)
    				// Note that if t0 was a signature, t1 must be a signature, and t1
    				// can only be a generic signature if it originated from a generic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  5. src/encoding/gob/type.go

    // control over the representation of its data and may therefore
    // contain things such as private fields, channels, and functions,
    // which are not usually transmissible in gob streams.
    //
    // Note: Since gobs can be stored permanently, it is good design
    // to guarantee the encoding used by a GobEncoder is stable as the
    // software evolves. For instance, it might make sense for GobEncode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  6. src/crypto/internal/edwards25519/field/fe.go

    package field
    
    import (
    	"crypto/subtle"
    	"errors"
    	"internal/byteorder"
    	"math/bits"
    )
    
    // Element represents an element of the field GF(2^255-19). Note that this
    // is not a cryptographically secure group, and should only be used to interact
    // with edwards25519.Point coordinates.
    //
    // This type works similarly to math/big.Int, and all arguments and receivers
    // are allowed to alias.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. pilot/pkg/model/endpointshards.go

    		// Check if new Endpoints are ready to be pushed. This check
    		// will ensure that if a new pod comes with a non ready endpoint,
    		// we do not unnecessarily push that config to Envoy.
    		// Please note that address is not a unique key. So this may not accurately
    		// identify based on health status and push too many times - which is ok since its an optimization.
    		omap := make(map[string]*IstioEndpoint, len(oldIstioEndpoints))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. pkg/kubelet/container/helpers.go

    	// Once a pod has been marked deleted, it should not be restarted
    	if pod.DeletionTimestamp != nil {
    		return false
    	}
    	// Get latest container status.
    	status := podStatus.FindContainerStatusByName(container.Name)
    	// If the container was never started before, we should start it.
    	// NOTE(random-liu): If all historical containers were GC'd, we'll also return true here.
    	if status == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. pkg/kubelet/container/runtime.go

    	// This list should be static at startup: either the client and server restart together when
    	// adding or removing metrics descriptors, or they should not change.
    	// Put differently, if ListPodSandboxMetrics references a name that is not described in the initial
    	// ListMetricDescriptors call, then the metric will not be broadcasted.
    	ListMetricDescriptors(ctx context.Context) ([]*runtimeapi.MetricDescriptor, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/cfg/cfg.go

    			installedGOARCH = testArch
    		}
    	}
    
    	if runtime.Compiler != "gccgo" {
    		if goroot == "" {
    			build.ToolDir = ""
    		} else {
    			// Note that we must use the installed OS and arch here: the tool
    			// directory does not move based on environment variables, and even if we
    			// are testing a cross-compiled cmd/go all of the installed packages and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top