- Sort Score
- Result 10 results
- Languages All
Results 491 - 500 of 530 for soft (0.06 sec)
-
CHANGELOG/CHANGELOG-1.3.md
* Handle federated service name lookups in kube-dns. ([#25727](https://github.com/kubernetes/kubernetes/pull/25727), [@madhusudancs](https://github.com/madhusudancs)) * Support sort-by timestamp in kubectl get ([#25600](https://github.com/kubernetes/kubernetes/pull/25600), [@janetkuo](https://github.com/janetkuo))
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 84K bytes - Viewed (0) -
cmd/admin-handlers-users.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import ( "bytes" "context" "encoding/json" "errors" "fmt" "io" "net/http" "os" "slices" "sort" "strconv" "strings" "time" "unicode/utf8" "github.com/klauspost/compress/zip" "github.com/minio/madmin-go/v3" "github.com/minio/minio/internal/auth" "github.com/minio/minio/internal/config/dns"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 03 23:11:02 UTC 2024 - 85.1K bytes - Viewed (0) -
guava/src/com/google/common/base/CharMatcher.java
private static final class AnyOf extends CharMatcher { private final char[] chars; public AnyOf(CharSequence chars) { this.chars = chars.toString().toCharArray(); Arrays.sort(this.chars); } @Override public boolean matches(char c) { return Arrays.binarySearch(chars, c) >= 0; } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 53.9K bytes - Viewed (0) -
api/go1.txt
pkg sort, func Strings([]string) pkg sort, func StringsAreSorted([]string) bool pkg sort, method (Float64Slice) Len() int pkg sort, method (Float64Slice) Less(int, int) bool pkg sort, method (Float64Slice) Search(float64) int pkg sort, method (Float64Slice) Sort() pkg sort, method (Float64Slice) Swap(int, int) pkg sort, method (IntSlice) Len() int pkg sort, method (IntSlice) Less(int, int) bool
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0) -
cmd/site-replication.go
package cmd import ( "bytes" "context" "encoding/base64" "encoding/binary" "encoding/json" "encoding/xml" "errors" "fmt" "math/rand" "net/url" "reflect" "runtime" "sort" "strings" "sync" "time" "github.com/minio/madmin-go/v3" "github.com/minio/minio-go/v7" minioClient "github.com/minio/minio-go/v7" "github.com/minio/minio-go/v7/pkg/credentials"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 185.1K bytes - Viewed (0) -
src/main/resources/fess_label_ja.properties
labels.num=数 labels.pn=ページ番号 labels.protocolScheme=スキーム labels.purgeByBots=Botsの削除 labels.logLevel=ログレベル labels.purgeSearchLogDay=検索ログの削除 labels.query=クエリー labels.queryId=クエリーID labels.rt=rt labels.searchLog=検索ログ labels.sort=ソート labels.start=スタート位置 labels.loginRequired=ログインが必要 labels.loginLink=ログインリンク表示 labels.threadName=スレッド名 labels.url=URL labels.userFavorite=お気に入りログ labels.userInfo=利用者情報 labels.webApiJson=JSONレスポンス
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 46.2K bytes - Viewed (0) -
cmd/object-handlers.go
package cmd import ( "archive/tar" "context" "encoding/hex" "encoding/xml" "errors" "fmt" "io" "net/http" "net/http/httptest" "net/textproto" "net/url" "os" "sort" "strconv" "strings" "sync/atomic" "time" "github.com/google/uuid" "github.com/klauspost/compress/gzhttp" miniogo "github.com/minio/minio-go/v7" "github.com/minio/minio-go/v7/pkg/credentials"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 05 05:16:15 UTC 2024 - 117.4K bytes - Viewed (0) -
docs/de/docs/deployment/docker.md
3. Kopiere die Datei mit den Paketanforderungen in das Verzeichnis `/code`. Kopieren Sie zuerst **nur** die Datei mit den Anforderungen, nicht den Rest des Codes. Da sich diese Datei **nicht oft ändert**, erkennt Docker das und verwendet den **Cache** für diesen Schritt, wodurch der Cache auch für den nächsten Schritt aktiviert wird. 4. Installiere die Paketabhängigkeiten aus der Anforderungsdatei.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 39K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.17.md
### CLI Improvements - The kubectl's api-resource command now has a `--sort-by` flag to sort resources by name or kind. ([#81971](https://github.com/kubernetes/kubernetes/pull/81971), [@laddng](https://github.com/laddng))
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Jan 28 10:44:33 UTC 2021 - 346.2K bytes - Viewed (1) -
android/guava/src/com/google/common/collect/Iterators.java
* element of the input iterators. Equivalent entries will not be de-duplicated. * * <p>Callers must ensure that the source {@code iterators} are in non-descending order as this * method does not sort its input. * * <p>For any equivalent elements across all {@code iterators}, it is undefined which element is * returned first. * * @since 11.0 */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 50.3K bytes - Viewed (0)