Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 224 for precedes (0.15 sec)

  1. src/go/doc/comment/testdata/head.txt

    # Not a heading,
    because text follows it.
    
    Because text precedes it,
    # not a heading.
    
    ## Not a heading either.
    
    -- gofmt --
    Some text.
    
    # An Old Heading
    
    Not An Old Heading.
    
    And some text.
    
    # A New Heading.
    
    And some more text.
    
    # Not a heading,
    because text follows it.
    
    Because text precedes it,
    # not a heading.
    
    ## Not a heading either.
    
    -- text --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:46 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/types_64bit.go

    }
    
    // StoreRelease is a partially unsynchronized version
    // of Store that relaxes ordering constraints. Other threads
    // may observe operations that occur after this operation to
    // precede it, but no operation that precedes it
    // on this thread can be observed to occur after it.
    //
    // WARNING: Use sparingly and with great care.
    //
    //go:nosplit
    func (u *Uint64) StoreRelease(value uint64) {
    	StoreRel64(&u.value, value)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/MultipartReader.kt

      ) : Closeable {
        /** This delimiter typically precedes the first part. */
        private val dashDashBoundary =
          Buffer()
            .writeUtf8("--")
            .writeUtf8(boundary)
            .readByteString()
    
        /**
         * This delimiter typically precedes all subsequent parts. It may also precede the first part
         * if the body contains a preamble.
         */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/types.go

    }
    
    // StoreRelease is a partially unsynchronized version
    // of Store that relaxes ordering constraints. Other threads
    // may observe operations that occur after this operation to
    // precede it, but no operation that precedes it
    // on this thread can be observed to occur after it.
    //
    // WARNING: Use sparingly and with great care.
    //
    //go:nosplit
    func (u *Uint32) StoreRelease(value uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. src/html/template/js.go

    			return jsCtxRegexp
    		}
    	}
    	// Otherwise is a punctuator not listed above, or
    	// a string which precedes a div op, or an identifier
    	// which precedes a div op.
    	return jsCtxDivOp
    }
    
    // regexpPrecederKeywords is a set of reserved JS keywords that can precede a
    // regular expression in JS source.
    var regexpPrecederKeywords = map[string]bool{
    	"break":      true,
    	"case":       true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/slices/sort.go

    // is defined by cmp. cmp should return 0 if the slice element matches
    // the target, a negative number if the slice element precedes the target,
    // or a positive number if the slice element follows the target.
    // cmp must implement the same ordering as the slice, such that if
    // cmp(a, t) < 0 and cmp(b, t) >= 0, then a must precede b in the slice.
    func BinarySearchFunc[S ~[]E, E, T any](x S, target T, cmp func(E, T) int) (int, bool) {
    	n := len(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:54:41 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/html/template/js_test.go

    		{jsCtxRegexp, "*="},
    		{jsCtxRegexp, "*"},
    		{jsCtxRegexp, "!"},
    		// Whether the + or - is infix or prefix, it cannot precede a
    		// div op.
    		{jsCtxRegexp, "+"},
    		{jsCtxRegexp, "-"},
    		// An incr/decr op precedes a div operator.
    		// This is not airtight. In (g = ++/h/i) a regexp follows a
    		// pre-increment operator, but in practice devs do not try to
    		// increment or decrement regular expressions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. src/path/path.go

    //  1. Replace multiple slashes with a single slash.
    //  2. Eliminate each . path name element (the current directory).
    //  3. Eliminate each inner .. path name element (the parent directory)
    //     along with the non-.. element that precedes it.
    //  4. Eliminate .. elements that begin a rooted path:
    //     that is, replace "/.." by "/" at the beginning of a path.
    //
    // The returned path ends in a slash only if it is the root "/".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

          construct = {
            Validity(
              notBefore = it[0] as Long,
              notAfter = it[1] as Long,
            )
          },
        )
    
      /** The type of the parameters depends on the algorithm that precedes it. */
      private val algorithmParameters: DerAdapter<Any?> =
        Adapters.usingTypeHint { typeHint ->
          when (typeHint) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

            Proxy.Type.DIRECT, Proxy.Type.HTTP -> route.address.socketFactory.createSocket()!!
            else -> Socket(route.proxy)
          }
        this.rawSocket = rawSocket
    
        // Handle the race where cancel() precedes connectSocket(). We don't want to miss a cancel.
        if (canceled) {
          throw IOException("canceled")
        }
    
        rawSocket.soTimeout = socketReadTimeoutMillis
        try {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top