Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for wOFF (0.29 sec)

  1. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

                } else if (lowerPath.endsWith(".txt")) {
                    response.setContentType("text/plain");
                } else if (lowerPath.endsWith(".woff")) {
                    response.setContentType("font/woff");
                } else if (lowerPath.endsWith(".woff2")) {
                    response.setContentType("font/woff2");
                } else if (lowerPath.endsWith("/")) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:28:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/javadoc.css

     }
     /* Lato (bold, regular) */
     @font-face {
         font-display: swap;
         font-family: Lato;
         font-weight: 800;
         font-style: normal;
         src: url("https://assets.gradle.com/lato/fonts/lato-heavy/lato-heavy.woff2") format("woff2"),
         url("https://assets.gradle.com/lato/fonts/lato-heavy/lato-heavy.woff") format("woff");
     }
    .code-block {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    /* Lato (bold, regular) */
    @font-face {
    	font-display: swap;
    	font-family: Lato;
    	font-weight: 800;
    	font-style: normal;
    	src: url("https://assets.gradle.com/lato/fonts/lato-heavy/lato-heavy.woff2") format("woff2"),
    		url("https://assets.gradle.com/lato/fonts/lato-heavy/lato-heavy.woff") format("woff");
    }
    
    /* BEGIN asciidoc.css */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/base.css

        font-weight: 500;
        font-style: normal;
        src: url("https://assets.gradle.com/lato/fonts/lato-semibold/lato-semibold.woff2") format("woff2"),
             url("https://assets.gradle.com/lato/fonts/lato-semibold/lato-semibold.woff") format("woff");
    }
    
    * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    html,
    body {
        margin: 0;
        padding: 0;
    }
    
    html {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error) {
    	r0, _, e1 := Syscall6(SYS_COPY_FILE_RANGE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    	isAggregate := func(t *types.Type) bool {
    		return t.IsStruct() || t.IsArray() || t.IsComplex() || t.IsInterface() || t.IsString() || t.IsSlice()
    	}
    
    	wOff := 0
    	n := 0
    	writebyte := func(o uint8) { wOff = objw.Uint8(x, wOff, o) }
    
    	// Write one non-aggregate arg/field/element.
    	write1 := func(sz, offset int64) {
    		if offset >= rtabi.TraceArgsSpecial {
    			writebyte(rtabi.TraceArgsOffsetTooLarge)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //sys	Close(fd int) (err error)
    //sys	CloseRange(first uint, last uint, flags uint) (err error)
    //sys	CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error)
    //sys	DeleteModule(name string, flags int) (err error)
    //sys	Dup(oldfd int) (fd int, err error)
    
    func Dup2(oldfd, newfd int) error {
    	return Dup3(oldfd, newfd, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top