Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 739 for separated (0.49 sec)

  1. src/cmd/vendor/rsc.io/markdown/link.go

    	// optional spaces or tabs (including up to one line ending),
    	// a link destination,
    	// optional spaces or tabs (including up to one line ending),
    	// and an optional link title,
    	// which if it is present must be separated from the link destination
    	// by spaces or tabs. No further character may occur.”
    	i := skipSpace(s, 0)
    	label, i, ok := parseLinkLabel(p.(*parseState), s, i)
    	if !ok || i >= len(s) || s[i] != ':' {
    		return 0, false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. src/cmd/cover/html.go

    // a problem.
    func (td templateData) PackageName() string {
    	if len(td.Files) == 0 {
    		return ""
    	}
    	fileName := td.Files[0].Name
    	elems := strings.Split(fileName, "/") // Package path is always slash-separated.
    	// Return the penultimate non-empty element.
    	for i := len(elems) - 2; i >= 0; i-- {
    		if elems[i] != "" {
    			return elems[i]
    		}
    	}
    	return ""
    }
    
    type templateFile struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 14:33:36 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/SignedBytes.java

            max = array[i];
          }
        }
        return max;
      }
    
      /**
       * Returns a string containing the supplied {@code byte} values separated by {@code separator}.
       * For example, {@code join(":", 0x01, 0x02, -0x01)} returns the string {@code "1:2:-1"}.
       *
       * @param separator the text that should appear between consecutive values in the resulting string
       *     (but not at the start or end)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Config.java

            }
            return def;
        }
    
    
        /**
         * Retrieve an array of <tt>InetAddress</tt> created from a property
         * value containing a <tt>delim</tt> separated list of host names and/or
         * ip addresses.
         */
        public static InetAddress[] getInetAddressArray ( Properties props, String key, String delim, InetAddress[] def ) {
            String p = props.getProperty(key);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.3K bytes
    - Viewed (0)
  5. src/crypto/x509/oid.go

    var (
    	errInvalidOID = errors.New("invalid oid")
    )
    
    // An OID represents an ASN.1 OBJECT IDENTIFIER.
    type OID struct {
    	der []byte
    }
    
    // ParseOID parses a Object Identifier string, represented by ASCII numbers separated by dots.
    func ParseOID(oid string) (OID, error) {
    	var o OID
    	return o, o.unmarshalOIDText(oid)
    }
    
    func newOIDFromDER(der []byte) (OID, bool) {
    	if len(der) == 0 || der[len(der)-1]&0x80 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/script/engine.go

    // inspect and modify.
    //
    // The default commands configured by [NewEngine] resemble a simplified Unix
    // shell.
    //
    // # Script Language
    //
    // Each line of a script is parsed into a sequence of space-separated command
    // words, with environment variable expansion within each word and # marking an
    // end-of-line comment. Additional variables named ':' and '/' are expanded
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  7. src/cmd/internal/testdir/testdir_test.go

    	// A file with no build tags will always be tested.
    	assert(shouldTest("// This is a test.", "os", "arch"))
    
    	// Build tags separated by a space are OR-ed together.
    	assertNot(shouldTest("// +build arm 386", "linux", "amd64"))
    
    	// Build tags separated by a comma are AND-ed together.
    	assertNot(shouldTest("// +build !windows,!plan9", "windows", "amd64"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/arch/arm.go

    		bits = (bits &^ 0xf) | arm.C_SCOND_NONE
    	}
    	prog.Scond = bits
    	return true
    }
    
    // ParseARMCondition parses the conditions attached to an ARM instruction.
    // The input is a single string consisting of period-separated condition
    // codes, such as ".P.W". An initial period is ignored.
    func ParseARMCondition(cond string) (uint8, bool) {
    	return parseARMCondition(cond, armLS, armSCOND)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/build.go

    		use -pkgdir to keep generated packages in a separate location.
    	-tags tag,list
    		a comma-separated list of additional build tags to consider satisfied
    		during the build. For more information about build tags, see
    		'go help buildconstraint'. (Earlier versions of Go used a
    		space-separated list, and that form is deprecated but still recognized.)
    	-trimpath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/base/timings.go

    	t.list = append(t.list, timestamp{time.Now(), strings.Join(labels, ":"), start})
    }
    
    // Start marks the beginning of a new phase and implicitly stops the previous phase.
    // The phase name is the colon-separated concatenation of the labels.
    func (t *Timings) Start(labels ...string) {
    	t.append(labels, true)
    }
    
    // Stop marks the end of a phase and implicitly starts a new phase.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top