Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 150 for Colon (0.15 sec)

  1. src/cmd/compile/internal/syntax/nodes.go

    		X   Expr // range X
    		simpleStmt
    	}
    
    	CaseClause struct {
    		Cases Expr // nil means default clause
    		Body  []Stmt
    		Colon Pos
    		node
    	}
    
    	CommClause struct {
    		Comm  SimpleStmt // send or receive stmt; nil means default clause
    		Body  []Stmt
    		Colon Pos
    		node
    	}
    )
    
    type stmt struct{ node }
    
    func (stmt) aStmt() {}
    
    type simpleStmt struct {
    	stmt
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/ModuleForcingResolveRuleSpec.groovy

            when:
            new ModuleForcingResolveRule([
                newSelector(mid("org", "module1"), "1.0"),
                newSelector(mid("org", "module2"), "2.0"),
                //exotic module with colon in the name
                newSelector(mid("org", "module:with:colon"), "3.0"),
                newSelector(mid("org:with:colon", "module2"), "4.0")
            ]).execute(details)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/common/help.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
    <h2>Query Syntax</h2>
    <dl>
    	<dt>Field</dt>
    	<dd>
    		You can search any field by typing the field name followed by a colon
    		":" and then the term you are looking for. If you want to find
    		documents which has "Fess" as the document title, you can enter:
    		<pre>title:Fess</pre>
    		The available fields are "url", "host", "site", "title", "content",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  4. docs/multi-user/README.md

    and in string comparisons in the *Condition* element.
    
    You can use a policy variable in the Resource element, but only in the resource portion of the ARN. This portion of the ARN appears after the 5th colon (:). You can't use a variable to replace parts of the ARN before the 5th colon, such as the service or account. The following policy might be attached to a group. It gives each of the users in the group full programmatic access to a user-specific object (their own "home directory") in MinIO....
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

        private enum State {
            CollectValue, TraverseChildren, Done
        }
    
        private enum Separator {
            NewLine(true, TextUtil.getPlatformLineSeparator()),
            Empty(false, " "),
            Colon(false, ": "),
            ColonNewLine(true, ":" + TextUtil.getPlatformLineSeparator());
    
            Separator(boolean newLine, String text) {
                this.newLine = newLine;
                this.text = text;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. src/path/filepath/path_windows.go

    			// (a Root Local Device path).
    			if b.Len() == 1 && strings.HasPrefix(e, "??") && (len(e) == len("??") || os.IsPathSeparator(e[2])) {
    				b.WriteString(`.\`)
    			}
    		case lastChar == ':':
    			// If the path ends in a colon, keep the path relative to the current directory
    			// on a drive and don't add a separator. Preserve leading slashes in the next
    			// path element, which may make the path absolute.
    			//
    			// 	Join(`C:`, `f`) = `C:f`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/go/printer/nodes.go

    			}
    		}
    
    	case *ast.CaseClause:
    		if s.List != nil {
    			p.print(token.CASE, blank)
    			p.exprList(s.Pos(), s.List, 1, 0, s.Colon, false)
    		} else {
    			p.print(token.DEFAULT)
    		}
    		p.setPos(s.Colon)
    		p.print(token.COLON)
    		p.stmtList(s.Body, 1, nextIsRBrace)
    
    	case *ast.SwitchStmt:
    		p.print(token.SWITCH)
    		p.controlClause(false, s.Init, s.Tag, nil)
    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. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/extractdoc.go

    // verb-phrase that describes the analyzer. The following lines, up
    // until the next heading or the end of the comment, contain the full
    // description. ExtractDoc returns the portion following the colon,
    // which is the form expected by Analyzer.Doc.
    //
    // Example:
    //
    //	# Analyzer printf
    //
    //	printf: checks consistency of calls to printf
    //
    //	The printf analyzer checks consistency of calls to printf.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/pathelement.go

    // NewPathElement parses a serialized path element
    func NewPathElement(s string) (fieldpath.PathElement, error) {
    	split := strings.SplitN(s, Separator, 2)
    	if len(split) < 2 {
    		return fieldpath.PathElement{}, fmt.Errorf("missing colon: %v", s)
    	}
    	switch split[0] {
    	case Field:
    		return fieldpath.PathElement{
    			FieldName: &split[1],
    		}, nil
    	case Value:
    		val, err := value.FromJSON([]byte(split[1]))
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. docs/en/docs/deployment/server-workers.md

        * You can imagine that `main:app` is equivalent to a Python `import` statement like:
    
            ```Python
            from main import app
            ```
    
        * So, the colon in `main:app` would be equivalent to the Python `import` part in `from main import app`.
    
    * `--workers`: The number of worker processes to use, each will run a Uvicorn worker, in this case, 4 workers.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top