Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 884 for Positions (0.23 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:\n  - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and\n    non-intersecting elements in `Y` are appended, retaining their partial order.\n  - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values\n    are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with\n...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  2. src/go/ast/ast.go

    //
    // All nodes contain position information marking the beginning of
    // the corresponding source text segment; it is accessible via the
    // Pos accessor method. Nodes may contain additional position info
    // for language constructs where comments may be found between parts
    // of the construct (typically any larger, parenthesized subpart).
    // That position information is needed to properly position comments
    // when printing the construct.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:\n  - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and\n    non-intersecting elements in `Y` are appended, retaining their partial order.\n  - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values\n    are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with\n...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  4. src/go/types/issues_test.go

    	}
    
    	var facts []string
    	for id, obj := range defs {
    		if obj != nil {
    			fact := fmt.Sprintf("L%d defs %s", fset.Position(id.Pos()).Line, obj)
    			facts = append(facts, fact)
    		}
    	}
    	for id, obj := range uses {
    		fact := fmt.Sprintf("L%d uses %s", fset.Position(id.Pos()).Line, obj)
    		facts = append(facts, fact)
    	}
    	slices.Sort(facts)
    
    	got := strings.Join(facts, "\n")
    	if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/types.go

    	//   - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and
    	//     non-intersecting elements in `Y` are appended, retaining their partial order.
    	//   - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/decl.go

    	var x operand
    	if init != nil {
    		if inherited {
    			// The initialization expression is inherited from a previous
    			// constant declaration, and (error) positions refer to that
    			// expression and not the current constant declaration. Use
    			// the constant identifier position for any errors during
    			// init expression evaluation since that is all we have
    			// (see issues go.dev/issue/42991, go.dev/issue/42992).
    			check.errpos = obj.pos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  7. src/bufio/bufio.go

    // Buffered input.
    
    // Reader implements buffering for an io.Reader object.
    type Reader struct {
    	buf          []byte
    	rd           io.Reader // reader provided by the client
    	r, w         int       // buf read and write positions
    	err          error
    	lastByte     int // last byte read for UnreadByte; -1 means invalid
    	lastRuneSize int // size of last rune read for UnreadRune; -1 means invalid
    }
    
    const minReadBufferSize = 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  8. src/go/types/builtins.go

    			check.errorf(call, Test, "%v failed", call)
    			// compile-time assertion failure - safe to continue
    		}
    		// result is constant - no need to record signature
    
    	case _Trace:
    		// trace(x, y, z, ...) dumps the positions, expressions, and
    		// values of its arguments. The result of trace is the value
    		// of the first argument.
    		// Note: trace is only available in self-test mode.
    		// (no argument evaluated yet)
    		if nargs == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      //   - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and
      //     non-intersecting elements in `Y` are appended, retaining their partial order.
      //   - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/go/types/infer.go

    // of the type parameters in tparams occurred in the type.
    // If typ is a generic function, type parameters held with typ are not changed and
    // must be updated separately if desired.
    // The positions is only used for debug traces.
    func (check *Checker) renameTParams(pos token.Pos, tparams []*TypeParam, typ Type) ([]*TypeParam, Type) {
    	// For the purpose of type inference we must differentiate type parameters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top