This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7-12 | |
I believe these lot are good to close at this point, for a variety of reasons | |
https://github.com/ubergeek42/weechat-android/issues/378 | |
No steps to reproduce, ancient | |
https://github.com/ubergeek42/weechat-android/issues/57 | |
ancient, issue long resolved | |
https://github.com/ubergeek42/weechat-android/issues/59 | |
old issue, long resolved | |
https://github.com/ubergeek42/weechat-android/issues/67 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface ResettableLazy<out T> : Lazy<T> { | |
fun reset() | |
} | |
private class ResettableSynchronizedLazyImpl<out T>(initializer: () -> T, lock: Any? = null) : ResettableLazy<T> { | |
private val initializer: (() -> T)? = initializer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void printActivityFlags(String activityName, Intent intent) { | |
Field[] declaredFields = Intent.class.getDeclaredFields(); | |
StringBuilder stringBuilder = new StringBuilder(activityName + " => "); | |
for (Field field : declaredFields) { | |
if (field.getName().startsWith("FLAG_")) { // Fetch all the flag names which start from "FLAG_" | |
try { | |
int flag = field.getInt(null); | |
if ((intent.getFlags() | flag) == intent.getFlags()) { // checking that flag is present or not. | |
stringBuilder.append(field.getName()); | |
stringBuilder.append("|"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (C) 2014 The Android Open Source Project | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
js [it.names = [] for (it of mappings.getCandidates(modes.NORMAL, 'z'))] | |
nnoremap z something |