Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for lax (0.06 sec)

  1. src/net/http/cookie.go

    		}
    
    		switch lowerAttr {
    		case "samesite":
    			lowerVal, ascii := ascii.ToLower(val)
    			if !ascii {
    				c.SameSite = SameSiteDefaultMode
    				continue
    			}
    			switch lowerVal {
    			case "lax":
    				c.SameSite = SameSiteLaxMode
    			case "strict":
    				c.SameSite = SameSiteStrictMode
    			case "none":
    				c.SameSite = SameSiteNoneMode
    			default:
    				c.SameSite = SameSiteDefaultMode
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/crypto/tls/ech.go

    	}
    	return nil
    }
    
    // validDNSName is a rather rudimentary check for the validity of a DNS name.
    // This is used to check if the public_name in a ECHConfig is valid when we are
    // picking a config. This can be somewhat lax because even if we pick a
    // valid-looking name, the DNS layer will later reject it anyway.
    func validDNSName(name string) bool {
    	if len(name) > 253 {
    		return false
    	}
    	labels := strings.Split(name, ".")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .desc("Fail the build if checksums don't match")
                    .build());
            options.addOption(Option.builder(Character.toString(CHECKSUM_WARNING_POLICY))
                    .longOpt("lax-checksums")
                    .desc("Warn if checksums don't match")
                    .build());
            options.addOption(Option.builder(Character.toString(ALTERNATE_USER_SETTINGS))
                    .longOpt("settings")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. src/net/http/cookiejar/jar.go

    	switch c.SameSite {
    	case http.SameSiteDefaultMode:
    		e.SameSite = "SameSite"
    	case http.SameSiteStrictMode:
    		e.SameSite = "SameSite=Strict"
    	case http.SameSiteLaxMode:
    		e.SameSite = "SameSite=Lax"
    	}
    
    	return e, false, nil
    }
    
    var (
    	errIllegalDomain   = errors.New("cookiejar: illegal cookie domain attribute")
    	errMalformedDomain = errors.New("cookiejar: malformed cookie domain attribute")
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/s390x.s

    	LAAG	R4, R5, -524288(R6)   // eb54600080e8
    	LAAL	R7, R8, 8192(R9)      // eb87900002fa
    	LAALG	R10, R11, -8192(R12)  // ebbac000feea
    	LAN	R1, R2, (R3)          // eb21300000f4
    	LANG	R4, R5, (R6)          // eb54600000e4
    	LAX	R7, R8, (R9)          // eb87900000f7
    	LAXG	R10, R11, (R12)       // ebbac00000e7
    	LAO	R1, R2, (R3)          // eb21300000f6
    	LAOG	R4, R5, (R6)          // eb54600000e6
    
    	// load and store multiple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/Cookie.kt

       *
       *  - "Strict": the cookie is omitted when the subject URL is an embedded resource or a
       *    potentially-destructive navigation.
       *
       *  - "Lax": the cookie is omitted when the subject URL is an embedded resource. It is sent for
       *    potentially-destructive navigation. This is the default value.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:12:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/gc.go

    				continue
    			}
    			op, _ := fsys.OverlayPath(mkAbs(p.Dir, sfile))
    			args = append(args, op)
    		}
    
    		// Supply an empty go_asm.h as if the compiler had been run.
    		// -gensymabis parsing is lax enough that we don't need the
    		// actual definitions that would appear in go_asm.h.
    		if err := sh.writeFile(a.Objdir+"go_asm.h", nil); err != nil {
    			return err
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. LICENSE

    combined work, a derivative of the original library.  The ordinary
    General Public License therefore permits such linking only if the
    entire combination fits its criteria of freedom.  The Lesser General
    Public License permits more lax criteria for linking other code with
    the library.
    
      We call this license the "Lesser" General Public License because it
    does Less to protect the user's freedom than the ordinary General
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            "provider {[s1, s2]}" | { property().value(Providers.of(["s1, s2"])) } || "$collectionName(class ${String.name}, fixed(class ${ArrayList.name}, [s1, s2]))"
    
            // The following case abuses Groovy lax type-checking to put an invalid value into the property.
            "[provider {s1}]"     | { property().value([Providers.of("s1")]) }     || "$collectionName(class ${String.name}, [fixed(class ${String.name}, s1)])"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            "[k: provider {v}]"          | { property().tap { put("k", Providers.of("v")) } }      || "Map(String->String, entry{k=fixed(class ${String.name}, v)})"
    
            // The following case abuses Groovy lax type-checking to put an invalid value into the property.
            "[k: (Object) provider {v}]" | { property().value(k: Providers.of("v")) }              || "Map(String->String, {k=fixed(class ${String.name}, v)})"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
Back to top