Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for wOFF (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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