Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 217 for Potato (0.25 sec)

  1. android/guava-tests/test/com/google/common/primitives/CharsTest.java

        input = Arrays.copyOf(input, input.length);
        Chars.rotate(input, distance);
        assertThat(input).isEqualTo(expectedOutput);
      }
    
      private static void testRotate(
          char[] input, int distance, int fromIndex, int toIndex, char[] expectedOutput) {
        input = Arrays.copyOf(input, input.length);
        Chars.rotate(input, distance, fromIndex, toIndex);
        assertThat(input).isEqualTo(expectedOutput);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. pkg/kubelet/token/token_manager_test.go

    		clock *testingclock.FakeClock
    		tg    *fakeTokenGetter
    		mgr   *Manager
    	}
    
    	cases := []struct {
    		name string
    		exp  time.Duration
    		f    func(t *testing.T, s *suite)
    	}{
    		{
    			name: "rotate hour token expires in the last 12 minutes",
    			exp:  time.Hour,
    			f: func(t *testing.T, s *suite) {
    				s.clock.SetTime(s.clock.Now().Add(50 * time.Minute))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 00:16:47 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/primitives/BooleansTest.java

        input = Arrays.copyOf(input, input.length);
        Booleans.rotate(input, distance);
        assertThat(input).isEqualTo(expectedOutput);
      }
    
      private static void testRotate(
          boolean[] input, int distance, int fromIndex, int toIndex, boolean[] expectedOutput) {
        input = Arrays.copyOf(input, input.length);
        Booleans.rotate(input, distance, fromIndex, toIndex);
        assertThat(input).isEqualTo(expectedOutput);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 15:43:29 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. src/internal/chacha8rand/chacha8_amd64.s

    	MOVOU X10, (10*16)(BX)
    	MOVOU X11, (11*16)(BX)
    
    	MOVL $0, AX
    	MOVQ AX, X15 // must be 0 on return
    
    	RET
    
    // rotate left 16 indexes for PSHUFB
    GLOBL ·rol16<>(SB), NOPTR|RODATA, $16
    DATA ·rol16<>+0(SB)/8, $0x0504070601000302
    DATA ·rol16<>+8(SB)/8, $0x0D0C0F0E09080B0A
    
    // rotate left 8 indexes for PSHUFB
    GLOBL ·rol8<>(SB), NOPTR|RODATA, $16
    DATA ·rol8<>+0(SB)/8, $0x0605040702010003
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

            project.assertHasLinkedResource('linkToFolderFoo', 'aFolderFoo', '/test/folders/foo')
            project.assertHasLinkedResource('linkToUriFoo', 'aFooUri', 'http://test/uri/foo')
    
            file('.project').text.contains('<motto>Stay happy!</motto>')
    
            def jdt = parseJdtFile()
            assert jdt.contains('targetPlatform=1.3')
            assert jdt.contains('source=1.4')
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/primitives/BooleansTest.java

        input = Arrays.copyOf(input, input.length);
        Booleans.rotate(input, distance);
        assertThat(input).isEqualTo(expectedOutput);
      }
    
      private static void testRotate(
          boolean[] input, int distance, int fromIndex, int toIndex, boolean[] expectedOutput) {
        input = Arrays.copyOf(input, input.length);
        Booleans.rotate(input, distance, fromIndex, toIndex);
        assertThat(input).isEqualTo(expectedOutput);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 15:43:29 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. src/sort/gen_sort_variants.go

    			r = c
    		}
    	}
    
    	end := n - start
    	if start < m && m < end {
    		rotate{{.FuncSuffix}}(data, start, m, end {{.ExtraArg}})
    	}
    	if a < start && start < mid {
    		symMerge{{.FuncSuffix}}(data, a, start, mid {{.ExtraArg}})
    	}
    	if mid < end && end < b {
    		symMerge{{.FuncSuffix}}(data, mid, end, b {{.ExtraArg}})
    	}
    }
    
    // rotate{{.FuncSuffix}} rotates two consecutive blocks u = data[a:m] and v = data[m:b] in data:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/primitives/ShortsTest.java

        input = Arrays.copyOf(input, input.length);
        Shorts.rotate(input, distance);
        assertThat(input).isEqualTo(expectedOutput);
      }
    
      private static void testRotate(
          short[] input, int distance, int fromIndex, int toIndex, short[] expectedOutput) {
        input = Arrays.copyOf(input, input.length);
        Shorts.rotate(input, distance, fromIndex, toIndex);
        assertThat(input).isEqualTo(expectedOutput);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  9. src/math/bits/bits.go

    // To rotate x right by k bits, call RotateLeft8(x, -k).
    //
    // This function's execution time does not depend on the inputs.
    func RotateLeft8(x uint8, k int) uint8 {
    	const n = 8
    	s := uint(k) & (n - 1)
    	return x<<s | x>>(n-s)
    }
    
    // RotateLeft16 returns the value of x rotated left by (k mod 16) bits.
    // To rotate x right by k bits, call RotateLeft16(x, -k).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. pkg/config/schema/collection/schemas_test.go

    	}()
    	b := collection.NewSchemasBuilder()
    
    	b.MustAdd(emptyResource)
    }
    
    func TestSchemas_MustRegister_Panic(t *testing.T) {
    	g := NewWithT(t)
    	defer func() {
    		r := recover()
    		g.Expect(r).NotTo(BeNil())
    	}()
    	b := collection.NewSchemasBuilder()
    
    	b.MustAdd(emptyResource)
    	b.MustAdd(emptyResource)
    }
    
    func TestSchema_FindByGroupVersionKind(t *testing.T) {
    	g := NewWithT(t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top