Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 174 for toves (0.05 sec)

  1. src/encoding/base64/base64_test.go

    	{URLEncoding.Strict(), urlRef},
    	{RawStdEncoding.Strict(), rawRef},
    	{RawURLEncoding.Strict(), rawURLRef},
    	{funnyEncoding.Strict(), funnyRef},
    }
    
    var bigtest = testpair{
    	"Twas brillig, and the slithy toves",
    	"VHdhcyBicmlsbGlnLCBhbmQgdGhlIHNsaXRoeSB0b3Zlcw==",
    }
    
    func testEqual(t *testing.T, msg string, args ...any) bool {
    	t.Helper()
    	if args[len(args)-2] != args[len(args)-1] {
    		t.Errorf(msg, args...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  2. cmd/kube-proxy/app/server_test.go

    	*/
    
    	testCases := []struct {
    		name    string
    		config  string
    		expErr  string
    		checkFn func(err error) bool
    	}{
    		{
    			name:   "Decode error test",
    			config: "Twas bryllyg, and ye slythy toves",
    			expErr: "could not find expected ':'",
    		},
    		{
    			name:   "Bad config type test",
    			config: "kind: KubeSchedulerConfiguration",
    			expErr: "no kind",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. src/encoding/base32/base32_test.go

    	{"su", "ON2Q===="},
    	{"leasure.", "NRSWC43VOJSS4==="},
    	{"easure.", "MVQXG5LSMUXA===="},
    	{"asure.", "MFZXK4TFFY======"},
    	{"sure.", "ON2XEZJO"},
    }
    
    var bigtest = testpair{
    	"Twas brillig, and the slithy toves",
    	"KR3WC4ZAMJZGS3DMNFTSYIDBNZSCA5DIMUQHG3DJORUHSIDUN53GK4Y=",
    }
    
    func testEqual(t *testing.T, msg string, args ...any) bool {
    	t.Helper()
    	if args[len(args)-2] != args[len(args)-1] {
    		t.Errorf(msg, args...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

        }
    
        /**
         * Moves the cursor up. If the parameter y is negative it moves the cursor down.
         *
         * @param y the number of lines to move up
         * @return this Ansi instance
         */
        public Ansi cursorUp(final int y) {
            return y > 0 ? appendEscapeSequence('A', y) : y < 0 ? cursorDown(-y) : this;
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. src/container/list/list.go

    }
    
    // MoveToFront moves element e to the front of list l.
    // If e is not an element of l, the list is not modified.
    // The element must not be nil.
    func (l *List) MoveToFront(e *Element) {
    	if e.list != l || l.root.next == e {
    		return
    	}
    	// see comment in List.Remove about initialization of l
    	l.move(e, &l.root)
    }
    
    // MoveToBack moves element e to the back of list l.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  6. test/codegen/copy.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package codegen
    
    import "runtime"
    
    // Check small copies are replaced with moves.
    
    func movesmall4() {
    	x := [...]byte{1, 2, 3, 4}
    	// 386:-".*memmove"
    	// amd64:-".*memmove"
    	// arm:-".*memmove"
    	// arm64:-".*memmove"
    	// ppc64x:-".*memmove"
    	copy(x[1:], x[:])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 14:09:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/conversion_test.go

    						{Name: "v2", Served: false, Storage: false},
    					},
    					PreserveUnknownFields: ptr.To(false),
    				},
    			},
    		},
    		// Validation
    		{
    			Name: "internal to v1, top-level validation moves to per-version",
    			In: &apiextensions.CustomResourceDefinition{
    				Spec: apiextensions.CustomResourceDefinitionSpec{
    					Version:    "v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/InstrumentedInputs.java

        /**
         * @deprecated do not use outside of this class
         */
        @Deprecated
        public static InstrumentedInputsListener listener() {
            // TODO(mlopatkin): Reduce the visibility of this method once everything moves into this project.
            return LISTENER.get();
        }
    
        public static void setListener(InstrumentedInputsListener listener) {
            LISTENER.set(listener);
        }
    
        public static void discardListener() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/build.gradle.kts

        implementation(libs.julToSlf4j)
        implementation(libs.commonsLang)
        implementation(libs.commonsIo)
        implementation(libs.guava)
    
        // GSon is not strictly required here but removing it moves the dependency in the distribution from lib to lib/plugins
        // TODO Check if this is an issue
        runtimeOnly(libs.gson)
        runtimeOnly(libs.jclToSlf4j)
        runtimeOnly(libs.log4jToSlf4j)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. test/typeparam/listimp2.dir/a.go

    }
    
    // MoveToFront moves element e to the front of list l.
    // If e is not an element of l, the list is not modified.
    // The element must not be nil.
    func (l *List[T]) MoveToFront(e *Element[T]) {
    	if e.list != l || l.root.next == e {
    		return
    	}
    	// see comment in List.Remove about initialization of l
    	l.move(e, &l.root)
    }
    
    // MoveToBack moves element e to the back of list l.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:40:40 UTC 2021
    - 8K bytes
    - Viewed (0)
Back to top