Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for recursion (0.21 sec)

  1. ChangeLog.md

    - [`KT-58458`](https://youtrack.jetbrains.com/issue/KT-58458) K1: "java.lang.NullPointerException" with 'var equals' or 'val equals' as argument in when
    - [`KT-58447`](https://youtrack.jetbrains.com/issue/KT-58447) K1: "AssertionError: Recursion detected on input" with `@ParameterName` and extension
    - [`KT-41013`](https://youtrack.jetbrains.com/issue/KT-41013) OVERLOAD_RESOLUTION_AMBIGUITY for functions  takes lambda: can not resolve it, but only named lambda parameter
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    					// TODO: could also seek minimum position?
    					bestPos = v.Pos
    					break
    				}
    			}
    		}
    		p.Pos = bestPos
    		s.updateUnsetPredPos(p) // We do not expect long chains of these, thus recursion is okay.
    	}
    }
    
    // Information about each open-coded defer.
    type openDeferInfo struct {
    	// The node representing the call of the defer
    	n *ir.CallExpr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    - `readOnly` volumes now support recursive read-only mounts for kernel versions >= 5.12."
       ([#123180](https://github.com/kubernetes/kubernetes/pull/123180), [@AkihiroSuda](https://github.com/AkihiroSuda))
    - cri-api: Implemented KEP-3857: Recursive Read-only (RRO) mounts.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    )
    
    // RecursiveReadOnlyMode describes recursive-readonly mode.
    type RecursiveReadOnlyMode string
    
    const (
    	// RecursiveReadOnlyDisabled disables recursive-readonly mode.
    	RecursiveReadOnlyDisabled RecursiveReadOnlyMode = "Disabled"
    	// RecursiveReadOnlyIfPossible enables recursive-readonly mode if possible.
    	RecursiveReadOnlyIfPossible RecursiveReadOnlyMode = "IfPossible"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    )
    
    // RecursiveReadOnlyMode describes recursive-readonly mode.
    type RecursiveReadOnlyMode string
    
    const (
    	// RecursiveReadOnlyDisabled disables recursive-readonly mode.
    	RecursiveReadOnlyDisabled RecursiveReadOnlyMode = "Disabled"
    	// RecursiveReadOnlyIfPossible enables recursive-readonly mode if possible.
    	RecursiveReadOnlyIfPossible RecursiveReadOnlyMode = "IfPossible"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			},
    			expectedMaxCardinality: uint64ptr(math.MaxUint),
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			// simulate the recursive validation calls
    			schemas := append(tt.schema, &apiextensions.JSONSchemaProps{Type: "string"}) // append a leaf type
    			curCostInfo := RootCELContext(schemas[0])
    			for i := 1; i < len(schemas); i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    * ✨ Update OpenAPI models, supporting recursive models and extensions. PR [#3628](https://github.com/tiangolo/fastapi/pull/3628) by [@tiangolo](https://github.com/tiangolo).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  8. src/net/http/h2_bundle.go

    	http2ErrRecursivePush    = errors.New("http2: recursive push not allowed")
    	http2ErrPushLimitReached = errors.New("http2: push would exceed peer's SETTINGS_MAX_CONCURRENT_STREAMS")
    )
    
    var _ Pusher = (*http2responseWriter)(nil)
    
    func (w *http2responseWriter) Push(target string, opts *PushOptions) error {
    	st := w.rws.stream
    	sc := st.sc
    	sc.serveG.checkNotOn()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.26.md

    - Deprecated the following kubectl run flags, which are ignored if set: `--cascade`, `--filename`, `--force`, `--grace-period`, `--kustomize`, `--recursive`, `--timeout`, `--wait`. ([#112261](https://github.com/kubernetes/kubernetes/pull/112261), [@brianpursley](https://github.com/brianpursley))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  10. doc/go_spec.html

    for x := range fibo {
    	if x >= 1000 {
    		break
    	}
    	fmt.Printf("%d ", x)
    }
    // output: 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987
    
    // iteration support for a recursive tree data structure
    type Tree[K cmp.Ordered, V any] struct {
    	left, right *Tree[K, V]
    	key         K
    	value       V
    }
    
    func (t *Tree[K, V]) walk(yield func(key K, val V) bool) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top