Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for insertAfter (0.19 sec)

  1. pilot/pkg/networking/core/envoyfilter/util_test.go

    	}
    
    	cases := []struct {
    		name         string
    		input        []int
    		replace      []int
    		insertBefore []int
    		insertAfter  []int
    		applied      bool
    	}{
    		{
    			name:         "nil slice",
    			input:        nil,
    			replace:      nil,
    			insertBefore: nil,
    			insertAfter:  nil,
    			applied:      false,
    		},
    		{
    			name:         "the first",
    			input:        []int{1, 2, 3},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/release/content/script.js

    $(function() {
      function injectIssues(url, insertAfter, idBase, loadingText, messageFunction) {
        var loadingPara = $("<p class='" + idBase + "-loading'>" + loadingText + " …</p>").insertAfter(insertAfter);
        var animate = true;
        var paraFadeOut = function() {
          loadingPara.fadeOut("80", animate ? paraFadeIn : null);
        };
        var paraFadeIn = function() {
          loadingPara.fadeIn("80", animate ? paraFadeOut : null);
        };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/container/list/example_test.go

    import (
    	"container/list"
    	"fmt"
    )
    
    func Example() {
    	// Create a new list and put some numbers in it.
    	l := list.New()
    	e4 := l.PushBack(4)
    	e1 := l.PushFront(1)
    	l.InsertBefore(3, e4)
    	l.InsertAfter(2, e1)
    
    	// Iterate through list and print its contents.
    	for e := l.Front(); e != nil; e = e.Next() {
    		fmt.Println(e.Value)
    	}
    
    	// Output:
    	// 1
    	// 2
    	// 3
    	// 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 549 bytes
    - Viewed (0)
  4. src/container/list/list_test.go

    	checkListPointers(t, l, []*Element{e1, e4, e2, e3})
    	l.Remove(e2)
    
    	e2 = l.InsertAfter(2, e1) // insert after front
    	checkListPointers(t, l, []*Element{e1, e2, e4, e3})
    	l.Remove(e2)
    	e2 = l.InsertAfter(2, e4) // insert after middle
    	checkListPointers(t, l, []*Element{e1, e4, e2, e3})
    	l.Remove(e2)
    	e2 = l.InsertAfter(2, e3) // insert after back
    	checkListPointers(t, l, []*Element{e1, e4, e3, e2})
    	l.Remove(e2)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  5. test/typeparam/listimp2.dir/main.go

    	a.CheckListPointers(l2, []*(a.Element[int]){e1, e4, e2, e3})
    	l2.Remove(e2)
    
    	e2 = l2.InsertAfter(2, e1) // insert after front
    	a.CheckListPointers(l2, []*(a.Element[int]){e1, e2, e4, e3})
    	l2.Remove(e2)
    	e2 = l2.InsertAfter(2, e4) // insert after middle
    	a.CheckListPointers(l2, []*(a.Element[int]){e1, e4, e2, e3})
    	l2.Remove(e2)
    	e2 = l2.InsertAfter(2, e3) // insert after back
    	a.CheckListPointers(l2, []*(a.Element[int]){e1, e4, e3, e2})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  6. test/typeparam/list2.go

    	checkListPointers(l2, []*(_Element[int]){e1, e4, e2, e3})
    	l2.Remove(e2)
    
    	e2 = l2.InsertAfter(2, e1) // insert after front
    	checkListPointers(l2, []*(_Element[int]){e1, e2, e4, e3})
    	l2.Remove(e2)
    	e2 = l2.InsertAfter(2, e4) // insert after middle
    	checkListPointers(l2, []*(_Element[int]){e1, e4, e2, e3})
    	l2.Remove(e2)
    	e2 = l2.InsertAfter(2, e3) // insert after back
    	checkListPointers(l2, []*(_Element[int]){e1, e4, e3, e2})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. src/container/list/list.go

    	}
    	// see comment in List.Remove about initialization of l
    	return l.insertValue(v, mark.prev)
    }
    
    // InsertAfter inserts a new element e with value v immediately after mark and returns e.
    // If mark is not an element of l, the list is not modified.
    // The mark must not be nil.
    func (l *List) InsertAfter(v any, mark *Element) *Element {
    	if mark.list != l {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    	v.SetLen(l - 1)
    	c.iter.step--
    }
    
    // InsertAfter inserts n after the current Node in its containing slice.
    // If the current Node is not part of a slice, InsertAfter panics.
    // Apply does not walk n.
    func (c *Cursor) InsertAfter(n ast.Node) {
    	i := c.Index()
    	if i < 0 {
    		panic("InsertAfter node not contained in slice")
    	}
    	v := c.field()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. test/typeparam/listimp2.dir/a.go

    	}
    	// see comment in List.Remove about initialization of l
    	return l.insertValue(v, mark.prev)
    }
    
    // InsertAfter inserts a new element e with value v immediately after mark and returns e.
    // If mark is not an element of l, the list is not modified.
    // The mark must not be nil.
    func (l *List[T]) InsertAfter(v T, mark *Element[T]) *Element[T] {
    	if mark.list != l {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:40:40 UTC 2021
    - 8K bytes
    - Viewed (0)
  10. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    this}clone(e={}){let t=ks(this);for(let r in e)t[r]=e[r];return t}cloneBefore(e={}){let t=this.clone(e);return this.parent.insertBefore(this,t),t}cloneAfter(e={}){let t=this.clone(e);return this.parent.insertAfter(this,t),t}replaceWith(...e){if(this.parent){let t=this,r=!1;for(let n of e)n===this?r=!0:r?(this.parent.insertAfter(t,n),t=n):this.parent.insertBefore(t,n);r||this.remove()}return this}next(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e+1]}prev(){if(!this.parent)return;let...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
Back to top