Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 109 for toidentifier (0.33 sec)

  1. src/go/printer/nodes.go

    const (
    	commaTerm exprListMode = 1 << iota // list is optionally terminated by a comma
    	noIndent                           // no extra indentation in multi-line lists
    )
    
    // If indent is set, a multi-line identifier list is indented after the
    // first linebreak encountered.
    func (p *printer) identList(list []*ast.Ident, indent bool) {
    	// convert into an expression list so we can re-use exprList formatting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +kubebuilder:validation:Required
      // +kubebuilder:validation:Type=string
      // +kubebuilder:validation:Format=date-time
      optional Time lastTransitionTime = 4;
    
      // reason contains a programmatic identifier indicating the reason for the condition's last transition.
      // Producers of specific condition types may define expected values and meanings for this field,
      // and whether the values are considered a guaranteed API.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +kubebuilder:validation:Required
      // +kubebuilder:validation:Type=string
      // +kubebuilder:validation:Format=date-time
      optional Time lastTransitionTime = 4;
    
      // reason contains a programmatic identifier indicating the reason for the condition's last transition.
      // Producers of specific condition types may define expected values and meanings for this field,
      // and whether the values are considered a guaranteed API.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	if err != nil {
    		return newErrWatcher(err), nil
    	}
    
    	// Determine watch timeout('0' means deadline is not set, ignore checking)
    	deadline, _ := ctx.Deadline()
    
    	identifier := fmt.Sprintf("key: %q, labels: %q, fields: %q", key, pred.Label, pred.Field)
    
    	// Create a watcher here to reduce memory allocations under lock,
    	// given that memory allocation may trigger GC and block the thread.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/syscall/zerrors_darwin_arm64.go

    	85:  "bad executable (or shared library)",
    	86:  "bad CPU type in executable",
    	87:  "shared library version mismatch",
    	88:  "malformed Mach-o file",
    	89:  "operation canceled",
    	90:  "identifier removed",
    	91:  "no message of desired type",
    	92:  "illegal byte sequence",
    	93:  "attribute not found",
    	94:  "bad message",
    	95:  "EMULTIHOP (Reserved)",
    	96:  "no message available on STREAM",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  6. src/syscall/zerrors_darwin_amd64.go

    	85:  "bad executable (or shared library)",
    	86:  "bad CPU type in executable",
    	87:  "shared library version mismatch",
    	88:  "malformed Mach-o file",
    	89:  "operation canceled",
    	90:  "identifier removed",
    	91:  "no message of desired type",
    	92:  "illegal byte sequence",
    	93:  "attribute not found",
    	94:  "bad message",
    	95:  "EMULTIHOP (Reserved)",
    	96:  "no message available on STREAM",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    }
    
    // sourceName parses:
    //
    //	<source-name> ::= <(positive length) number> <identifier>
    //	identifier ::= <(unqualified source code identifier)>
    func (st *state) sourceName() AST {
    	val := st.number()
    	if val <= 0 {
    		st.fail("expected positive number")
    	}
    	if len(st.str) < val {
    		st.fail("not enough characters for identifier")
    	}
    	id := st.str[:val]
    	st.advance(val)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  8. src/go/parser/parser.go

    		defer un(trace(p, "QualifiedIdent"))
    	}
    
    	typ := p.parseTypeName(ident)
    	if p.tok == token.LBRACK {
    		typ = p.parseTypeInstance(typ)
    	}
    
    	return typ
    }
    
    // If the result is an identifier, it is not resolved.
    func (p *parser) parseTypeName(ident *ast.Ident) ast.Expr {
    	if p.trace {
    		defer un(trace(p, "TypeName"))
    	}
    
    	if ident == nil {
    		ident = p.parseIdent()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                ],
                "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
              },
              "manager": {
                "description": "Manager is an identifier of the workflow managing these fields.",
                "type": "string"
              },
              "operation": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    	    To run all benchmarks, use '-bench .' or '-bench=.'.
    	    The regular expression is split by unbracketed slash (/)
    	    characters into a sequence of regular expressions, and each
    	    part of a benchmark's identifier must match the corresponding
    	    element in the sequence, if any. Possible parents of matches
    	    are run with b.N=1 to identify sub-benchmarks. For example,
    	    given -bench=X/Y, top-level benchmarks matching X are run
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top