Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,335 for idents (0.12 sec)

  1. src/runtime/netpoll_kqueue.go

    	} else {
    		ts.setNsec(delay)
    		if ts.tv_sec > 1e6 {
    			// Darwin returns EINVAL if the sleep time is too long.
    			ts.tv_sec = 1e6
    		}
    		tp = &ts
    	}
    	var events [64]keventt
    retry:
    	n := kevent(kq, nil, 0, &events[0], int32(len(events)), tp)
    	if n < 0 {
    		// Ignore the ETIMEDOUT error for now, but try to dive deep and
    		// figure out what really happened with n == ETIMEOUT,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/userguide-ides.png

    userguide-ides.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 28 05:56:09 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/util/TextUtil.java

                    return true;
                }
            }
            return false;
        }
    
        /**
         * Indents every line of {@code text} by {@code indent}. Empty lines
         * and lines that only contain whitespace are not indented.
         */
        public static String indent(String text, String indent) {
            logDeprecation();
            StringBuilder builder = new StringBuilder();
            String[] lines = text.split("\n");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. src/go/types/stmt.go

    			if lhs == nil {
    				continue
    			}
    
    			// determine lhs variable
    			var obj *Var
    			if ident, _ := lhs.(*identType); ident != nil {
    				// declare new variable
    				name := identName(ident)
    				obj = NewVar(ident.Pos(), check.pkg, name, nil)
    				check.recordDef(ident, obj)
    				// _ variables don't count as new variables
    				if name != "_" {
    					vars = append(vars, obj)
    				}
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

                            BuildOperationRecord record = children.remove();
    
                            stringBuilder.setLength(0);
    
                            int indents = stack.size() - 1;
    
                            for (int i = 0; i < indents; ++i) {
                                stringBuilder.append("  ");
                            }
    
                            if (!record.children.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/events.k8s.io.v1beta1.Event.pb

    Daniel Smith <******@****.***> 1651776874 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 783 bytes
    - Viewed (0)
  7. src/go/printer/nodes.go

    				// won't indent again. If we didn't (ws == indent), identList will
    				// indent if the identList spans multiple lines, and it will outdent
    				// again at the end (and still ws == indent). Thus, a subsequent indent
    				// by a linebreak call after a type, or in the next multi-line identList
    				// will do the right thing.
    				p.identList(par.Names, ws == indent)
    				p.print(blank)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/events.k8s.io.v1.Event.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 778 bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/events.k8s.io.v1beta1.Event.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 783 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/escaping.go

    //     "namespace", "return".
    func Escape(ident string) (string, bool) {
    	if len(ident) == 0 || ('0' <= ident[0] && ident[0] <= '9') {
    		return "", false
    	}
    	if celReservedSymbols.Has(ident) {
    		return "__" + ident + "__", true
    	}
    
    	escapeCheck := skipRegexCheck(ident)
    	if escapeCheck.invalidCharFound {
    		return "", false
    	}
    	if escapeCheck.canSkipRegex {
    		return ident, true
    	}
    
    	ok := true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top