Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 6,025 for blink (0.06 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/xml/SimpleMarkupWriter.java

         * Writes an XML comment.
         * Characters are not XML encoded inside the comment.
         * The start comment delimiter will contain a space if the comment does not start with a blank character.
         * The end comment delimiter will contain a space if the comment does not end with a blank character.
         *
         * @param comment the comment to write
         * @return this writer
         * @throws IOException if an I/O error occurs
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 02 12:15:58 UTC 2021
    - 12K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/scanner.go

    )
    
    type scanner struct {
    	source
    	mode   uint
    	nlsemi bool // if set '\n' and EOF translate to ';'
    
    	// current token, valid after calling next()
    	line, col uint
    	blank     bool // line is blank up to col
    	tok       token
    	lit       string   // valid if tok is _Name, _Literal, or _Semi ("semicolon", "newline", or "EOF"); may be malformed if bad is true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/elf.go

    		if ctxt.UseRelro() {
    			got.SetType(sym.SELFRELROSECT)
    		} else {
    			got.SetType(sym.SELFGOT) // writable
    		}
    
    		/* ppc64 glink resolver */
    		if ctxt.IsPPC64() {
    			s := ldr.CreateSymForUpdate(".glink", 0)
    			s.SetType(sym.SELFRXSECT)
    		}
    
    		/* hash */
    		hash := ldr.CreateSymForUpdate(".hash", 0)
    		hash.SetType(sym.SELFROSECT)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    					break
    				}
    				inStar = false
    				continue
    			}
    			line, inStar = stringsCutPrefix(line, "/*")
    			if !inStar {
    				break
    			}
    		}
    		if line != "" {
    			// Found non-comment non-blank line.
    			// Ends space for valid //go:build comments,
    			// but also ends the fraction of the file we can
    			// reliably parse. From this point on we might
    			// incorrectly flag "comments" inside multiline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Multimaps.java

       * #synchronizedMultimap}.
       *
       * <p>Call this method only when the simpler methods {@link ArrayListMultimap#create()}, {@link
       * HashMultimap#create()}, {@link LinkedHashMultimap#create()}, {@link
       * LinkedListMultimap#create()}, {@link TreeMultimap#create()}, and {@link
       * TreeMultimap#create(Comparator, Comparator)} won't suffice.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Multimaps.java

       * #synchronizedMultimap}.
       *
       * <p>Call this method only when the simpler methods {@link ArrayListMultimap#create()}, {@link
       * HashMultimap#create()}, {@link LinkedHashMultimap#create()}, {@link
       * LinkedListMultimap#create()}, {@link TreeMultimap#create()}, and {@link
       * TreeMultimap#create(Comparator, Comparator)} won't suffice.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

          val blank = readUtf8LineStrict()
    
          if (MAGIC != magic ||
            VERSION_1 != version ||
            appVersion.toString() != appVersionString ||
            valueCount.toString() != valueCountString ||
            blank.isNotEmpty()
          ) {
            throw IOException(
              "unexpected journal header: [$magic, $version, $valueCountString, $blank]",
            )
          }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/CompactHashing.java

            int newNext = getNext(entry, mask);
            if (lastEntryIndex == -1) {
              // we need to update the root link from table[]
              tableSet(table, tableIndex, newNext);
            } else {
              // we need to update the link from the chain
              entries[lastEntryIndex] = maskCombine(entries[lastEntryIndex], newNext, mask);
            }
    
            return entryIndex;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 02 21:41:22 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  9. src/crypto/internal/boring/build-goboring.sh

    int main() {
    int ret = 0;
    #include "goboringcrypto.x"
    return ret;
    }
    EOF
    
    cat >boringx.awk <<'EOF'
    BEGIN {
    	exitcode = 0
    }
    
    # Ignore comments, #includes, blank lines.
    /^\/\// || /^#/ || NF == 0 { next }
    
    # Ignore unchecked declarations.
    /\/\*unchecked/ { next }
    
    # Check enum values.
    !enum && ($1 == "enum" || $2 == "enum") && $NF == "{" {
    	enum = 1
    	next
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/vardecl.go

    }
    
    func _() int {
    	var x, y int
    	return x, y /* ERROR "too many return values" */
    }
    
    // Short variable declarations must declare at least one new non-blank variable.
    func _() {
    	_ := /* ERROR "no new variables" */ 0
    	_, a := 0, 1
    	_, a := /* ERROR "no new variables" */ 0, 1
    	_, a, b := 0, 1, 2
    	_, _, _ := /* ERROR "no new variables" */ 0, 1, 2
    
    	_ = a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top