Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for realtime (0.29 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * <p>Locates a project by path. If the path is relative, it is interpreted relative to this project.</p>
         *
         * @param path The path.
         * @return The project with the given path. Returns null if no such project exists.
         */
        @Nullable
        Project findProject(String path);
    
        /**
         * <p>Locates a project by path. If the path is relative, it is interpreted relative to this project.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

    	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)
  3. cmd/bucket-replication-utils_gen.go

    			if err != nil {
    				err = msgp.WrapError(err, "ResetID")
    				return
    			}
    		case "StartTime":
    			z.StartTime, err = dc.ReadTime()
    			if err != nil {
    				err = msgp.WrapError(err, "StartTime")
    				return
    			}
    		case "EndTime":
    			z.EndTime, err = dc.ReadTime()
    			if err != nil {
    				err = msgp.WrapError(err, "EndTime")
    				return
    			}
    		case "ResyncStatus":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 61.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	SECURITY_AUTHENTICATED_USER_RID     = 0xb
    	SECURITY_RESTRICTED_CODE_RID        = 0xc
    	SECURITY_NT_NON_UNIQUE_RID          = 0x15
    )
    
    // Predefined domain-relative RIDs for local groups.
    // See https://msdn.microsoft.com/en-us/library/windows/desktop/aa379649(v=vs.85).aspx
    const (
    	DOMAIN_ALIAS_RID_ADMINS                         = 0x220
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/javadoc.css

        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)
  6. pkg/kubelet/eviction/helpers.go

    // memory compares pods by largest consumer of memory relative to request.
    func memory(stats statsFunc) cmpFunc {
    	return func(p1, p2 *v1.Pod) int {
    		p1Stats, p1Found := stats(p1)
    		p2Stats, p2Found := stats(p2)
    		if !p1Found || !p2Found {
    			// prioritize evicting the pod for which no stats were found
    			return cmpBool(!p1Found, !p2Found)
    		}
    
    		// adjust p1, p2 usage relative to the request (if any)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ppc64/asm.go

    	if out := ldr.OuterSym(s); out != 0 {
    		v = ldr.SymVersion(out)
    	}
    
    	toc := syms.DotTOC[v]
    	if toc == 0 {
    		ldr.Errorf(s, "TOC-relative relocation in object without .TOC.")
    		return 0
    	}
    
    	return ldr.SymValue(toc)
    }
    
    // archreloctoc relocates a TOC relative symbol.
    func archreloctoc(ldr *loader.Loader, target *ld.Target, syms *ld.ArchSyms, r loader.Reloc, s loader.Sym, val int64) int64 {
    	rs := r.Sym()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  8. src/go/build/build.go

    // ran the compiler in the package directory, so any relative -I or -L
    // options would be relative to that directory. In 1.9 we changed to
    // running the compiler in the build directory, to get consistent
    // build results (issue #19964). To keep builds working, we change any
    // relative -I or -L options to be absolute.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * ```
     * q: cute #puppies
     * f: images
     * ```
     *
     * In addition to composing URLs from their component parts and decomposing URLs into their
     * component parts, this class implements relative URL resolution: what address you'd reach by
     * clicking a relative link on a specified page. For example:
     *
     * ```java
     * HttpUrl base = HttpUrl.parse("https://www.youtube.com/user/WatchTheDaily/videos");
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/xcoff.go

    	symndx int32
    }
    
    const (
    	XCOFF_R_POS = 0x00 // A(sym) Positive Relocation
    	XCOFF_R_NEG = 0x01 // -A(sym) Negative Relocation
    	XCOFF_R_REL = 0x02 // A(sym-*) Relative to self
    	XCOFF_R_TOC = 0x03 // A(sym-TOC) Relative to TOC
    	XCOFF_R_TRL = 0x12 // A(sym-TOC) TOC Relative indirect load.
    
    	XCOFF_R_TRLA = 0x13 // A(sym-TOC) TOC Rel load address. modifiable inst
    	XCOFF_R_GL   = 0x05 // A(external TOC of sym) Global Linkage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
Back to top