Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 208 for 234M (0.04 sec)

  1. src/syscall/zsysnum_darwin_amd64.go

    	SYS_POLL                           = 230
    	SYS_WATCHEVENT                     = 231
    	SYS_WAITEVENT                      = 232
    	SYS_MODWATCH                       = 233
    	SYS_GETXATTR                       = 234
    	SYS_FGETXATTR                      = 235
    	SYS_SETXATTR                       = 236
    	SYS_FSETXATTR                      = 237
    	SYS_REMOVEXATTR                    = 238
    	SYS_FREMOVEXATTR                   = 239
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/primitives/FloatsTest.java

        testRotate(new float[] {1, 2, 3}, 5, new float[] {2, 3, 1});
    
        testRotate(new float[] {1, 2, 3, 4}, -9, new float[] {2, 3, 4, 1});
        testRotate(new float[] {1, 2, 3, 4}, -5, new float[] {2, 3, 4, 1});
        testRotate(new float[] {1, 2, 3, 4}, -1, new float[] {2, 3, 4, 1});
        testRotate(new float[] {1, 2, 3, 4}, 0, new float[] {1, 2, 3, 4});
        testRotate(new float[] {1, 2, 3, 4}, 1, new float[] {4, 1, 2, 3});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/primitives/IntsTest.java

        testRotate(new int[] {1, 2, 3}, 5, new int[] {2, 3, 1});
    
        testRotate(new int[] {1, 2, 3, 4}, -9, new int[] {2, 3, 4, 1});
        testRotate(new int[] {1, 2, 3, 4}, -5, new int[] {2, 3, 4, 1});
        testRotate(new int[] {1, 2, 3, 4}, -1, new int[] {2, 3, 4, 1});
        testRotate(new int[] {1, 2, 3, 4}, 0, new int[] {1, 2, 3, 4});
        testRotate(new int[] {1, 2, 3, 4}, 1, new int[] {4, 1, 2, 3});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/primitives/DoublesTest.java

        testRotate(new double[] {1, 2, 3}, 5, new double[] {2, 3, 1});
    
        testRotate(new double[] {1, 2, 3, 4}, -9, new double[] {2, 3, 4, 1});
        testRotate(new double[] {1, 2, 3, 4}, -5, new double[] {2, 3, 4, 1});
        testRotate(new double[] {1, 2, 3, 4}, -1, new double[] {2, 3, 4, 1});
        testRotate(new double[] {1, 2, 3, 4}, 0, new double[] {1, 2, 3, 4});
        testRotate(new double[] {1, 2, 3, 4}, 1, new double[] {4, 1, 2, 3});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/primitives/FloatsTest.java

        testRotate(new float[] {1, 2, 3}, 5, new float[] {2, 3, 1});
    
        testRotate(new float[] {1, 2, 3, 4}, -9, new float[] {2, 3, 4, 1});
        testRotate(new float[] {1, 2, 3, 4}, -5, new float[] {2, 3, 4, 1});
        testRotate(new float[] {1, 2, 3, 4}, -1, new float[] {2, 3, 4, 1});
        testRotate(new float[] {1, 2, 3, 4}, 0, new float[] {1, 2, 3, 4});
        testRotate(new float[] {1, 2, 3, 4}, 1, new float[] {4, 1, 2, 3});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/primitives/LongsTest.java

        testRotate(new long[] {1, 2, 3}, 5, new long[] {2, 3, 1});
    
        testRotate(new long[] {1, 2, 3, 4}, -9, new long[] {2, 3, 4, 1});
        testRotate(new long[] {1, 2, 3, 4}, -5, new long[] {2, 3, 4, 1});
        testRotate(new long[] {1, 2, 3, 4}, -1, new long[] {2, 3, 4, 1});
        testRotate(new long[] {1, 2, 3, 4}, 0, new long[] {1, 2, 3, 4});
        testRotate(new long[] {1, 2, 3, 4}, 1, new long[] {4, 1, 2, 3});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. cmd/kube-proxy/app/server_test.go

    		expHealthz         string
    		expMetrics         string
    	}{
    		{
    			name:               "IPv4 bind address",
    			healthzBindAddress: "1.2.3.4",
    			healthzPort:        12345,
    			metricsBindAddress: "2.3.4.5",
    			metricsPort:        23456,
    			expHealthz:         "1.2.3.4:12345",
    			expMetrics:         "2.3.4.5:23456",
    		},
    		{
    			name:               "IPv4 bind address has port",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/Collections2Test.java

        assertNextPermutation(newArrayList(3, 2, 1, 4), permutations);
    
        assertNextPermutation(newArrayList(2, 3, 1, 4), permutations);
        assertNextPermutation(newArrayList(2, 3, 4, 1), permutations);
        assertNextPermutation(newArrayList(2, 4, 3, 1), permutations);
        assertNextPermutation(newArrayList(4, 2, 3, 1), permutations);
    
        assertNextPermutation(newArrayList(4, 2, 1, 3), permutations);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go

    	SYS_POLL                           = 230
    	SYS_WATCHEVENT                     = 231
    	SYS_WAITEVENT                      = 232
    	SYS_MODWATCH                       = 233
    	SYS_GETXATTR                       = 234
    	SYS_FGETXATTR                      = 235
    	SYS_SETXATTR                       = 236
    	SYS_FSETXATTR                      = 237
    	SYS_REMOVEXATTR                    = 238
    	SYS_FREMOVEXATTR                   = 239
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go

    	SYS_IO_GETEVENTS            = 229
    	SYS_IO_SUBMIT               = 230
    	SYS_IO_CANCEL               = 231
    	SYS_SET_TID_ADDRESS         = 232
    	SYS_FADVISE64               = 233
    	SYS_EXIT_GROUP              = 234
    	SYS_LOOKUP_DCOOKIE          = 235
    	SYS_EPOLL_CREATE            = 236
    	SYS_EPOLL_CTL               = 237
    	SYS_EPOLL_WAIT              = 238
    	SYS_REMAP_FILE_PAGES        = 239
    	SYS_TIMER_CREATE            = 240
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top