Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 297 for unclosed4 (0.2 sec)

  1. src/net/mail/message.go

    		return nil, errors.New("mail: no angle-addr")
    	}
    	spec, err = p.consumeAddrSpec()
    	if err != nil {
    		return nil, err
    	}
    	if !p.consume('>') {
    		return nil, errors.New("mail: unclosed angle-addr")
    	}
    	debug.Printf("parseAddress: spec=%q", spec)
    
    	return []*Address{{
    		Name:    displayName,
    		Address: spec,
    	}}, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. src/text/template/parse/lex.go

    	// Pipe symbols separate and are emitted.
    	delim, _ := l.atRightDelim()
    	if delim {
    		if l.parenDepth == 0 {
    			return lexRightDelim
    		}
    		return l.errorf("unclosed left paren")
    	}
    	switch r := l.next(); {
    	case r == eof:
    		return l.errorf("unclosed action")
    	case isSpace(r):
    		l.backup() // Put space back in case we have " -}}".
    		return lexSpace
    	case r == '=':
    		return l.emit(itemAssign)
    	case r == ':':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  3. src/encoding/xml/marshal.go

    // written XML is invalid (e.g. by containing unclosed elements).
    func (p *printer) Close() error {
    	if p.closed {
    		return nil
    	}
    	p.closed = true
    	if err := p.w.Flush(); err != nil {
    		return err
    	}
    	if len(p.tags) > 0 {
    		return fmt.Errorf("unclosed tag <%s>", p.tags[len(p.tags)-1].Local)
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. src/net/nss.go

    			var criteria []nssCriterion
    			// See if there's a criteria block in brackets.
    			if len(srcs) > 0 && srcs[0] == '[' {
    				bclose := bytealg.IndexByteString(srcs, ']')
    				if bclose == -1 {
    					conf.err = errors.New("unclosed criterion bracket")
    					return conf
    				}
    				var err error
    				criteria, err = parseCriteria(srcs[1:bclose])
    				if err != nil {
    					conf.err = errors.New("invalid criteria: " + srcs[1:bclose])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:15:51 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  5. src/os/env.go

    	return c == '_' || '0' <= c && c <= '9' || 'a' <= c && c <= 'z' || 'A' <= c && c <= 'Z'
    }
    
    // getShellName returns the name that begins the string and the number of bytes
    // consumed to extract it. If the name is enclosed in {}, it's part of a ${}
    // expansion and two more bytes are needed than the length of the name.
    func getShellName(s string) (string, int) {
    	switch {
    	case s[0] == '{':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/RangeSet.java

       * value}, or {@code null} if this range set does not contain {@code value}.
       */
      @CheckForNull
      Range<C> rangeContaining(C value);
    
      /**
       * Returns {@code true} if there exists a non-empty range enclosed by both a member range in this
       * range set and the specified range. This is equivalent to calling {@code
       * subRangeSet(otherRange)} and testing whether the resulting range set is non-empty.
       *
       * @since 20.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/RangeSet.java

       * value}, or {@code null} if this range set does not contain {@code value}.
       */
      @CheckForNull
      Range<C> rangeContaining(C value);
    
      /**
       * Returns {@code true} if there exists a non-empty range enclosed by both a member range in this
       * range set and the specified range. This is equivalent to calling {@code
       * subRangeSet(otherRange)} and testing whether the resulting range set is non-empty.
       *
       * @since 20.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt

                            // Wrap the agent switch in double quotes, as the expanded APP_HOME may contain spaces.
                            // The joined line is enclosed in double quotes too, so double quotes here must be escaped.
                            "\\\"$it\\\""
                        }
                    }
    
                    line.startsWith("set DEFAULT_JVM_OPTS=") -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 24 10:25:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt

                return
              }
    
              // Apply the extensions. If they're unacceptable initiate a graceful shut down.
              // TODO(jwilson): Listeners should get onFailure() instead of onClosing() + onClosed(1010).
              val extensions = WebSocketExtensions.parse(response.headers)
              ******@****.***ions = extensions
              if (!extensions.isValid()) {
                synchronized(this@RealWebSocket) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. src/html/template/content.go

    	// as it will be included verbatim in the template output.
    	CSS string
    
    	// HTML encapsulates a known safe HTML document fragment.
    	// It should not be used for HTML from a third-party, or HTML with
    	// unclosed tags or comments. The outputs of a sound HTML sanitizer
    	// and a template escaped by this package are fine for use with HTML.
    	//
    	// Use of this type presents a security risk:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:30:25 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top