Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 208 for 234M (0.09 sec)

  1. android/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)
  2. 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)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go

    	SYS_MUNLOCK                 = 229
    	SYS_MLOCKALL                = 230
    	SYS_MUNLOCKALL              = 231
    	SYS_MINCORE                 = 232
    	SYS_MADVISE                 = 233
    	SYS_REMAP_FILE_PAGES        = 234
    	SYS_MBIND                   = 235
    	SYS_GET_MEMPOLICY           = 236
    	SYS_SET_MEMPOLICY           = 237
    	SYS_MIGRATE_PAGES           = 238
    	SYS_MOVE_PAGES              = 239
    	SYS_RT_TGSIGQUEUEINFO       = 240
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_linux_ppc64le.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: Thu Oct 28 18:17:57 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_linux_386.go

    	SYS_GETXATTR               = 229
    	SYS_LGETXATTR              = 230
    	SYS_FGETXATTR              = 231
    	SYS_LISTXATTR              = 232
    	SYS_LLISTXATTR             = 233
    	SYS_FLISTXATTR             = 234
    	SYS_REMOVEXATTR            = 235
    	SYS_LREMOVEXATTR           = 236
    	SYS_FREMOVEXATTR           = 237
    	SYS_TKILL                  = 238
    	SYS_SENDFILE64             = 239
    	SYS_FUTEX                  = 240
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 11.3K bytes
    - Viewed (1)
  6. src/syscall/zsysnum_linux_arm64.go

    	SYS_MUNLOCK                = 229
    	SYS_MLOCKALL               = 230
    	SYS_MUNLOCKALL             = 231
    	SYS_MINCORE                = 232
    	SYS_MADVISE                = 233
    	SYS_REMAP_FILE_PAGES       = 234
    	SYS_MBIND                  = 235
    	SYS_GET_MEMPOLICY          = 236
    	SYS_SET_MEMPOLICY          = 237
    	SYS_MIGRATE_PAGES          = 238
    	SYS_MOVE_PAGES             = 239
    	SYS_RT_TGSIGQUEUEINFO      = 240
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  7. pkg/test/util/yml/file.go

    	}
    	switch len(types) {
    	case 0:
    		return "empty"
    	case 1:
    		m := GetMetadata(contents)
    		if len(m) == 0 {
    			return fmt.Sprintf("%s.%s", types[0], m[0].Name)
    		}
    		return types[0]
    	case 2, 3, 4:
    		return strings.Join(types, "-")
    	default:
    		return strings.Join(types[:4], "-") + "-more"
    	}
    }
    
    func splitContentsToFiles(workDir, content, filenamePrefix string) ([]string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 07 14:33:54 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/primitives/ShortsTest.java

        testRotate(new short[] {1, 2, 3}, 5, new short[] {2, 3, 1});
    
        testRotate(new short[] {1, 2, 3, 4}, -9, new short[] {2, 3, 4, 1});
        testRotate(new short[] {1, 2, 3, 4}, -5, new short[] {2, 3, 4, 1});
        testRotate(new short[] {1, 2, 3, 4}, -1, new short[] {2, 3, 4, 1});
        testRotate(new short[] {1, 2, 3, 4}, 0, new short[] {1, 2, 3, 4});
        testRotate(new short[] {1, 2, 3, 4}, 1, new short[] {4, 1, 2, 3});
    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/runtime/mpallocbits_test.go

    			npages: 5,
    			hits:   []uint{PallocChunkPages/2 - 3, ^uint(0)},
    			after:  []BitRange{{0, PallocChunkPages}},
    		},
    		"ExactFit65": {
    			before: []BitRange{{0, PallocChunkPages/2 - 31}, {PallocChunkPages/2 + 34, PallocChunkPages/2 - 34}},
    			npages: 65,
    			hits:   []uint{PallocChunkPages/2 - 31, ^uint(0)},
    			after:  []BitRange{{0, PallocChunkPages}},
    		},
    		"SomeFree161": {
    			before: []BitRange{{0, 185}, {331, 1}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 22:00:17 UTC 2020
    - 13.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go

    	SYS_SETFSUID                = 228
    	SYS_SETFSGID                = 229
    	SYS__NEWSELECT              = 230
    	SYS_SPLICE                  = 232
    	SYS_STIME                   = 233
    	SYS_STATFS64                = 234
    	SYS_FSTATFS64               = 235
    	SYS__LLSEEK                 = 236
    	SYS_MLOCK                   = 237
    	SYS_MUNLOCK                 = 238
    	SYS_MLOCKALL                = 239
    	SYS_MUNLOCKALL              = 240
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top