- Sort Score
- Result 10 results
- Languages All
Results 2091 - 2100 of 2,307 for mmap (0.06 sec)
-
guava-tests/test/com/google/common/cache/EmptyCachesTest.java
import com.google.common.collect.ImmutableSet; import com.google.common.collect.Iterables; import com.google.common.collect.Maps; import com.google.common.testing.EqualsTester; import java.util.Collection; import java.util.Map.Entry; import java.util.Set; import java.util.concurrent.ExecutionException; import junit.framework.TestCase; /** * {@link LoadingCache} tests that deal with empty caches. * * @author mike nonemacher */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 11.5K bytes - Viewed (0) -
cmd/object-lambda-handlers.go
}, UserIdentity: levent.Identity{ Type: "IAMUser", PrincipalID: cred.AccessKey, AccessKeyID: cred.SecretKey, }, } return eventData, nil } var statusTextToCode = map[string]int{ "Continue": http.StatusContinue, "Switching Protocols": http.StatusSwitchingProtocols, "Processing": http.StatusProcessing,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 22 07:04:48 UTC 2024 - 10.3K bytes - Viewed (0) -
common-protos/k8s.io/api/discovery/v1beta1/generated.proto
// endpoint is located. This should match the corresponding node label. // This field is deprecated and will be removed in future api versions. // +optional map<string, string> topology = 5; // nodeName represents the name of the Node hosting this endpoint. This can // be used to determine endpoints local to a Node. // +optional optional string nodeName = 6;
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 8K bytes - Viewed (0) -
common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto
// Selector which must match a node's labels for the carp to be scheduled on that node. // More info: http://kubernetes.io/docs/user-guide/node-selection/README // +optional map<string, string> nodeSelector = 7; // ServiceAccountName is the name of the ServiceAccount to use to run this carp. // More info: https://kubernetes.io/docs/concepts/security/service-accounts/ // +optional
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 7.7K bytes - Viewed (0) -
cni/pkg/nodeagent/cni-watcher_test.go
}, Status: corev1.PodStatus{ PodIP: fakePodIP, }, } podOutOfAmbient := &corev1.Pod{ ObjectMeta: metav1.ObjectMeta{ Name: "pod-noambient", Namespace: "funkyns", Labels: map[string]string{ label.IoIstioDataplaneMode.Name: constants.DataplaneModeNone, }, }, Spec: corev1.PodSpec{ NodeName: NodeName, }, Status: corev1.PodStatus{ PodIP: fakePodIP, },
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 7.6K bytes - Viewed (0) -
common-protos/k8s.io/api/authentication/v1/generated.proto
optional string uid = 2; // The names of groups this user is a part of. // +optional repeated string groups = 3; // Any additional information provided by the authenticator. // +optional map<string, ExtraValue> extra = 4;
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 6.7K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Converter.java
* converter.reverse().convertAll(bs)}. * <li>Use {@code converter} or {@code converter.reverse()} anywhere a {@link * java.util.function.Function} is accepted (for example {@link java.util.stream.Stream#map * Stream.map}). * <li><b>Do not</b> call {@link #doForward} or {@link #doBackward} directly; these exist only to * be overridden. * </ul> * * <h3>Example</h3> * * <pre>
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 15 16:12:13 UTC 2024 - 23K bytes - Viewed (0) -
disabled-Jenkinsfile.s390x
} dir ('apache-maven/target') { stash includes: 'apache-maven-bin.zip', name: 'maven-dist-s390x' } } } } Map runITsTasks = [:] for (String os in runITsOses) { for (def jdk in runITsJdks) { String osLabel = jenkinsEnv.labelForOS(os); String jdkName = jenkinsEnv.jdkFromVersion(os, "${jdk}")
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Sep 30 14:11:55 UTC 2024 - 7.7K bytes - Viewed (0) -
src/bytes/bytes_test.go
// 1. Grow. This triggers two reallocations in Map. maxRune := func(r rune) rune { return unicode.MaxRune } m := Map(maxRune, []byte(a)) expect := tenRunes(unicode.MaxRune) if string(m) != expect { t.Errorf("growing: expected %q got %q", expect, m) } // 2. Shrink minRune := func(r rune) rune { return 'a' } m = Map(minRune, []byte(tenRunes(unicode.MaxRune))) expect = a
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Aug 19 19:09:04 UTC 2024 - 61.2K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/RecordingEventListener.kt
.toDouble(), ) .isCloseTo(elapsedMs.toDouble(), 100.0) } return result } fun recordedEventTypes() = eventSequence.map { it.name } fun clearAllEvents() { while (eventSequence.isNotEmpty()) { takeEvent() } } private fun logEvent(e: CallEvent) { for (lock in forbiddenLocks) {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 9K bytes - Viewed (0)