Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 833 for MARK (0.04 sec)

  1. src/unicode/graphic.go

    		return properties[uint8(r)]&(pLmask) != 0
    	}
    	return isExcludingLatin(Letter, r)
    }
    
    // IsMark reports whether the rune is a mark character (category [M]).
    func IsMark(r rune) bool {
    	// There are no mark characters in Latin-1.
    	return isExcludingLatin(Mark, r)
    }
    
    // IsNumber reports whether the rune is a number (category [N]).
    func IsNumber(r rune) bool {
    	if uint32(r) <= MaxLatin1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. docs/en/docs/css/custom.css

      direction: ltr;
      display: inline-block;
    }
    
    a.external-link::after {
      /* \00A0 is a non-breaking space
            to make the mark be on the same line as the link
        */
      content: "\00A0[↪]";
    }
    
    a.internal-link::after {
      /* \00A0 is a non-breaking space
            to make the mark be on the same line as the link
        */
      content: "\00A0↪";
    }
    
    .shadow {
      box-shadow: 5px 5px 10px #999;
    }
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jan 28 09:53:45 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. test/bom.go

    // runoutput
    
    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test source file beginning with a byte order mark.
    
    package main
    
    import (
    	"fmt"
    	"strings"
    )
    
    func main() {
    	prog = strings.Replace(prog, "BOM", "\uFEFF", -1)
    	fmt.Print(prog)
    }
    
    var prog = `BOM
    package main
    
    func main() {
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 10 20:03:07 UTC 2012
    - 406 bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm/obj5.go

    	 */
    	for p := cursym.Func().Text; p != nil; p = p.Link {
    		switch p.As {
    		case obj.ATEXT:
    			p.Mark |= LEAF
    
    		case ADIV, ADIVU, AMOD, AMODU:
    			cursym.Func().Text.Mark &^= LEAF
    
    		case ABL,
    			ABX,
    			obj.ADUFFZERO,
    			obj.ADUFFCOPY:
    			cursym.Func().Text.Mark &^= LEAF
    		}
    	}
    
    	var q2 *obj.Prog
    	for p := cursym.Func().Text; p != nil; p = p.Link {
    		o := p.As
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/templates/404.html

    {{ define "title" }}Page Not Found{{ end }}
    {{ define "content" }}
    <div class="notfound">
        <div class="icon">
            <img alt="Warning" title="Uh-oh" src="/img/exclamation-mark.svg" />
        </div>
    
        <div class="error">
            We're sorry, the page you requested cannot be found
        </div>
    
        <div class="explanation">
            The URL may be misspelled
        </div>
    </div>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 389 bytes
    - Viewed (0)
  6. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    309B          ; disallowed_STD3_mapped ; 0020 3099     # 1.1  KATAKANA-HIRAGANA VOICED SOUND MARK
    309C          ; disallowed_STD3_mapped ; 0020 309A     # 1.1  KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK
    309D..309E    ; valid                                  # 1.1  HIRAGANA ITERATION MARK..HIRAGANA VOICED ITERATION MARK
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/build_ignore_leading_bom.txt

    # Per https://golang.org/ref/spec#Source_code_representation:
    # a compiler may ignore a UTF-8-encoded byte order mark (U+FEFF)
    # if it is the first Unicode code point in the source text.
    
    go list -f 'Imports: {{.Imports}} EmbedFiles: {{.EmbedFiles}}' .
    stdout '^Imports: \[embed m/hello\] EmbedFiles: \[.*file\]$'
    
    -- go.mod --
    module m
    
    go 1.16
    -- m.go --
    package main
    
    import (
    	_ "embed"
    
    	"m/hello"
    )
    
    //go:embed file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 15 18:42:11 UTC 2021
    - 486 bytes
    - Viewed (0)
  8. test/fixedbugs/bug461.go

    // run
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // part two of issue 4124. Make sure reflect doesn't mark the field as exported.
    
    package main
    
    import "reflect"
    
    var T struct {
    	int
    }
    
    func main() {
    	v := reflect.ValueOf(&T)
    	v = v.Elem().Field(0)
    	if v.CanSet() {
    		panic("int should be unexported")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 426 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ToolingModelContract.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Annotation used to mark TAPI model interfaces. On the client side such interfaces
     * are instantiated via Java dynamic proxies, and we use this annotation when we want
     * these proxies to have richer behaviour than just implementing the base interface.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 08:48:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. src/main/webapp/css/admin/html5shiv.min.js

    b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(t,b.frag)}function j(a){a||(a=b);var d=f(a);return!t.shivCSS||k||d.hasCSS||(d.hasCSS=!!c(a,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),l||i(a,d),a}var k,l,m="3.7.3",n=a.html5||{},o=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,p=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|st...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Dec 31 23:16:54 UTC 2017
    - 2.7K bytes
    - Viewed (0)
Back to top