Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for retractions (0.27 sec)

  1. pkg/kube/util.go

    // We allow an additional 2x buffer, as it is still fairly cheap (6mb)
    const MaxRequestBodyBytes = int64(6 * 1024 * 1024)
    
    // HTTPConfigReader is reads an HTTP request, imposing size restrictions aligned with Kubernetes limits
    func HTTPConfigReader(req *http.Request) ([]byte, error) {
    	defer req.Body.Close()
    	lr := &io.LimitedReader{
    		R: req.Body,
    		N: MaxRequestBodyBytes + 1,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/net/url/url.go

    		// RFC 3986 §2.2 allows not escaping sub-delims. A subset of sub-delims are
    		// included in reserved from RFC 2396 §2.2. The remaining sub-delims do not
    		// need to be escaped. To minimize potential breakage, we apply two restrictions:
    		// (1) we always escape sub-delims outside of the fragment, and (2) we always
    		// escape single quote to avoid breaking callers that had previously assumed that
    		// single quotes would be escaped. See issue #19917.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

            return isNoValueSupplier(getConventionSupplier());
        }
    
        private boolean isNoValueSupplier(CollectionSupplier<T, C> valueSupplier) {
            // Cannot use plain NoValueSupplier because of Java restrictions:
            // a generic type [AbstractCollectionProperty<T, C>.]NoValueSupplier cannot be used in instanceof.
            return valueSupplier instanceof AbstractCollectionProperty<?, ?>.NoValueSupplier;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  4. src/go/types/predicates.go

    		// With the existing implementation restriction, this simplifies to:
    		//
    		// Two interface types are identical if they have the same set of methods with
    		// the same names and identical function types, and if any type restrictions
    		// are the same. Lower-case method names from different packages are always
    		// different. The order of the methods is irrelevant.
    		if y, ok := y.(*Interface); ok {
    			xset := x.typeSet()
    			yset := y.typeSet()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/predicates.go

    		// With the existing implementation restriction, this simplifies to:
    		//
    		// Two interface types are identical if they have the same set of methods with
    		// the same names and identical function types, and if any type restrictions
    		// are the same. Lower-case method names from different packages are always
    		// different. The order of the methods is irrelevant.
    		if y, ok := y.(*Interface); ok {
    			xset := x.typeSet()
    			yset := y.typeSet()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. src/syscall/exec_linux.go

    // See user_namespaces(7).
    //
    // Note that User Namespaces are not available on a number of popular Linux
    // versions (due to security issues), or are available but subject to AppArmor
    // restrictions like in Ubuntu 24.04.
    type SysProcIDMap struct {
    	ContainerID int // Container ID.
    	HostID      int // Host ID.
    	Size        int // Size.
    }
    
    type SysProcAttr struct {
    	Chroot     string      // Chroot.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    With the introduction of the <<#sec:plugins_block,plugins DSL>>, users should have little reason to use the legacy method of applying plugins.
    It is documented here in case a build author cannot use the plugin DSL due to restrictions in how it currently works.
    
    [[sec:applying_binary_plugins]]
    
    ====
    include::sample[dir="snippets/java/quickstart/kotlin", files="build.gradle.kts[tags=use-plugin-legacy]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    // a version on the left side is dropped.
    //
    // The -retract=version and -dropretract=version flags add and drop a
    // retraction on the given version. The version may be a single version
    // like "v1.2.3" or a closed interval like "[v1.1.0,v1.1.9]". Note that
    // -retract=version is a no-op if that retraction already exists.
    //
    // The -godebug, -dropgodebug, -require, -droprequire, -exclude, -dropexclude,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    	// nftables chains can contain the characters [A-Za-z0-9_./-] (but must start with
    	// a letter, underscore, or dot).
    	//
    	// Namespace, Service, and Port names can contain [a-z0-9-] (with some additional
    	// restrictions that aren't relevant here).
    	//
    	// Protocol is /(tcp|udp|sctp)/.
    	//
    	// Thus, we can safely use all Namespace names, Service names, protocol values,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. cmd/bucket-handlers.go

    			errAPI.Description = fmt.Sprintf("%s '(%s)'", errAPI.Description, err)
    			writeErrorResponse(ctx, w, errAPI, r.URL)
    			return
    		}
    
    		// Make sure formValues adhere to policy restrictions.
    		if err = checkPostPolicy(formValues, postPolicyForm); err != nil {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErrWithErr(ErrAccessDenied, err), r.URL)
    			return
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
Back to top