Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 787 for quotas (0.1 sec)

  1. src/html/template/url.go

    	// Content-type: text/html;charset=UTF-8.
    	for i, n := 0, len(s); i < n; i++ {
    		c := s[i]
    		switch c {
    		// Single quote and parens are sub-delims in RFC 3986, but we
    		// escape them so the output can be embedded in single
    		// quoted attributes and unquoted CSS url(...) constructs.
    		// Single quotes are reserved in URLs, but are only used in
    		// the obsolete "mark" rule in an appendix in RFC 3986
    		// so can be safely encoded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  2. src/net/mail/message.go

    		}
    	}()
    
    	// local-part = dot-atom / quoted-string
    	var localPart string
    	p.skipSpace()
    	if p.empty() {
    		return "", errors.New("mail: no addr-spec")
    	}
    	if p.peek() == '"' {
    		// quoted-string
    		debug.Printf("consumeAddrSpec: parsing quoted-string")
    		localPart, err = p.consumeQuotedString()
    		if localPart == "" {
    			err = errors.New("mail: empty quoted string in addr-spec")
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift4.groovy

                            lines make sure you start its content on a
                            line all of its own, and end it with three
                            quotes also on a line of their own.
                            Multi-line strings also let you write "quote marks"
                            freely inside your strings, which is great!
                            """
                }
            ''')]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. src/net/http/cookie.go

    // value was enclosed in double quotes.
    func parseCookieValue(raw string, allowDoubleQuote bool) (value string, quoted, ok bool) {
    	// Strip the quotes, if present.
    	if allowDoubleQuote && len(raw) > 1 && raw[0] == '"' && raw[len(raw)-1] == '"' {
    		raw = raw[1 : len(raw)-1]
    		quoted = true
    	}
    	for i := 0; i < len(raw); i++ {
    		if !validCookieValueByte(raw[i]) {
    			return "", quoted, false
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_vendor_replace.txt

    module example.com/replace
    
    require rsc.io/quote/v3 v3.0.0
    replace rsc.io/quote/v3 => ./local/not-rsc.io/quote/v3
    
    -- imports.go --
    package replace
    
    import _ "rsc.io/quote/v3"
    
    -- local/not-rsc.io/quote/v3/go.mod --
    module not-rsc.io/quote/v3
    
    -- local/not-rsc.io/quote/v3/quote.go --
    package quote
    
    -- multiple-paths/main.go --
    package main
    import (
    	"fmt"
    	"rsc.io/quote/v3"
    )
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 19:40:02 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/util/internal/ArgumentsSplitter.java

    public class ArgumentsSplitter {
    
        /**
         * Splits the arguments string (for example, a program command line) into a collection.
         * Only supports space-delimited and/or quoted command line arguments. This currently does not handle escaping characters such as quotes.
         *
         * @param arguments the arguments, for example command line args.
         * @return separate command line arguments.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 2.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_replace.txt

    go mod edit -replace=not-rsc.io/quote/v3@v3.0.0=rsc.io/quote/v3@v3.0.0 -require=not-rsc.io/quote/v3@v3.0.0
    ! go build -o a4.exe .
    stderr 'rsc.io/quote/v3@v3.0.0 used for two different module paths \(not-rsc.io/quote/v3 and rsc.io/quote/v3\)'
    
    # Modules that do not (yet) exist upstream can be replaced too.
    cp go.mod.orig go.mod
    go mod edit -replace=not-rsc.io/quote/v3@v3.1.0=./local/rsc.io/quote/v3
    go build -mod=mod -o a5.exe ./usenewmodule
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  8. internal/event/target/postgresql.go

    			return r
    		default:
    			valid = false
    			return -1
    		}
    	}, name)
    
    	if valid {
    		// check for simple name or quoted name
    		// - letter/underscore followed by one or more letter/digit/underscore
    		// - any text between quotes (text cannot contain a quote itself)
    		if match, err := regexp.MatchString("^[a_][a0_$]*$", cleaned); err != nil {
    			return err
    		} else if match {
    			return nil
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/CommandLineJavaCompilerArgumentsGeneratorTest.groovy

            println argsFile.text
    
            and: "args file contains remaining arguments (one per line, quoted)"
            argsFile.readLines() == ["-g", "-sourcepath", quote(""), "-proc:none", USE_UNSHARED_COMPILER_TABLE_OPTION, "-classpath", quote("${spec.compileClasspath.join(File.pathSeparator)}"), *(spec.sourceFiles*.path.collect { quote(it) })]
        }
    
        String defaultEmptySourcePathRefFolder() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/types.go

    	// with any storage class, the list would include
    	// ".storageclass.storage.k8s.io/requests.storage"
    	MatchContains []string
    
    	// For each intercepted request, the quota system will figure out if the input object
    	// satisfies a scope which is present in this listing, then
    	// quota system will ensure that there is a covering quota.  In the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.8K bytes
    - Viewed (0)
Back to top