Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 73 for Positions (0.14 sec)

  1. platforms/documentation/docs/src/docs/css/manual.css

    	padding: 0.2em 0.5em;
    	vertical-align: middle;
    	position: relative;
    	top: -0.1em;
    	white-space: nowrap;
    }
    
    .keyseq kbd:first-child {
    	margin-left: 0;
    }
    
    .keyseq kbd:last-child {
    	margin-right: 0;
    }
    
    .menuseq,
    .menu {
    	color: var(--num-color);
    }
    
    b.button:before,
    b.button:after {
    	position: relative;
    	top: -1px;
    	font-weight: normal;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. src/go/build/build.go

    	var firstFile, firstCommentFile string
    	embedPos := make(map[string][]token.Position)
    	testEmbedPos := make(map[string][]token.Position)
    	xTestEmbedPos := make(map[string][]token.Position)
    	importPos := make(map[string][]token.Position)
    	testImportPos := make(map[string][]token.Position)
    	xTestImportPos := make(map[string][]token.Position)
    	allTags := make(map[string]bool)
    	fset := token.NewFileSet()
    	for _, d := range dirs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    					d.append(tmp);
    				});
    				d.prepend("<ins class='jstree-icon'>&#160;</ins>");
    				if(obj === -1) {
    					obj = this.get_container();
    					if(position === "before") { position = "first"; }
    					if(position === "after") { position = "last"; }
    				}
    				switch(position) {
    					case "before": obj.before(d); tmp = this._get_parent(obj); break;
    					case "after" : obj.after(d);  tmp = this._get_parent(obj); break;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/javadoc.css

        border: none;
        border-radius: 3px;
        position: relative;
        background:none;
        transition: opacity 0.3s;
        cursor: pointer;
    }
    :hover > button.copy {
        opacity: 80%;
    }
    button.copy:hover,
    button.copy:active,
    button.copy:focus-visible,
    button.copy.visible {
        opacity: 100%;
    }
    button.copy img {
        position: relative;
        background: none;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go

    func fgetxattr(fd int, attr string, dest *byte, size int, position uint32, options int) (sz int, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(attr)
    	if err != nil {
    		return
    	}
    	r0, _, e1 := syscall_syscall6(libc_fgetxattr_trampoline_addr, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(dest)), uintptr(size), uintptr(position), uintptr(options))
    	sz = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go

    func fgetxattr(fd int, attr string, dest *byte, size int, position uint32, options int) (sz int, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(attr)
    	if err != nil {
    		return
    	}
    	r0, _, e1 := syscall_syscall6(libc_fgetxattr_trampoline_addr, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(dest)), uintptr(size), uintptr(position), uintptr(options))
    	sz = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  7. src/go/printer/testdata/parser.go

    			p.leadComment = comment
    		}
    	}
    }
    
    func (p *parser) error(pos token.Pos, msg string) {
    	p.Error(p.file.Position(pos), msg)
    }
    
    func (p *parser) errorExpected(pos token.Pos, msg string) {
    	msg = "expected " + msg
    	if pos == p.pos {
    		// the error happened at the current position;
    		// make the error message more specific
    		if p.tok == token.SEMICOLON && p.lit[0] == '\n' {
    			msg += ", found newline"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      if (!status.ok())
        GTEST_SKIP() << "NewWritableFile() not supported: " << status;
    
      int64_t position;
      status = file->Tell(&position);
      EXPECT_PRED2(UnimplementedOrReturnsCode, status, Code::OK);
      if (!status.ok()) GTEST_SKIP() << "Tell() not supported: " << status;
      EXPECT_EQ(position, 0);
    
      const std::string test_data("asdf");
      status = file->Append(test_data);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/regalloc.go

    	final bool     // this is a satisfied destination
    	pos   src.XPos // source position of use of the value
    }
    
    type dstRecord struct {
    	loc    Location // register or stack slot
    	vid    ID       // pre-regalloc value it should contain
    	splice **Value  // place to store reference to the generating instruction
    	pos    src.XPos // source position of use of this location
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  10. src/main/webapp/js/jquery-3.6.3.min.js

    .pseudos.animated=function(t){return E.grep(E.timers,function(e){return t===e.elem}).length},E.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=E.css(e,"position"),c=E(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=E.css(e,"top"),u=E.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,E.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.lef...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 87.8K bytes
    - Viewed (0)
Back to top