- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,165 for fail (0.01 sec)
-
android/guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java
public static void assertMapEntryIsUnmodifiable(Entry<?, ?> entry) { try { // fine because the call is going to fail without modifying the entry @SuppressWarnings("unchecked") Entry<?, @Nullable Object> nullableValueEntry = (Entry<?, @Nullable Object>) entry; nullableValueEntry.setValue(null); fail("setValue on unmodifiable Map.Entry succeeded"); } catch (UnsupportedOperationException expected) { } }
Registered: 2025-05-30 12:43 - Last Modified: 2025-05-13 17:27 - 14.6K bytes - Viewed (0) -
cni/pkg/nodeagent/meshdataplane_linux.go
log.Errorf("failed to add pod to ipset, pod will fail healthchecks: %v", err) // Adding pod to ipset should always be an upsert, so should not fail // unless we have a kernel incompatibility - thus it should either // never fail, or isn't usefully retryable. // For now tho, err on the side of being loud in the logs, // since retrying in that case isn't _harmful_ and means all pods will fail anyway. return err }
Registered: 2025-05-28 22:53 - Last Modified: 2025-03-04 23:25 - 13.6K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/UrlComponentEncodingTesterJvm.kt
fail("Encoding $component $codePoint using $encoding") } return } // Check that the URI and HttpURL have the exact same escaping. if (toAndFromUri != httpUrl) { fail("Encoding $component $codePoint using $encoding") } if (uri.toString() != httpUrl.toString()) { fail("Encoding $component $codePoint using $encoding") }
Registered: 2025-05-30 11:42 - Last Modified: 2025-03-19 19:25 - 5.5K bytes - Viewed (0) -
istioctl/pkg/proxyconfig/proxyconfig_test.go
wantException: true, // "istioctl proxy-config clusters invalid" should fail }, { // listeners invalid args: strings.Split("listeners invalid", " "), expectedString: "unable to retrieve Pod: pods \"invalid\" not found", wantException: true, // "istioctl proxy-config listeners invalid" should fail }, { // logging empty args: strings.Split("log", " "),
Registered: 2025-05-28 22:53 - Last Modified: 2025-01-15 15:19 - 11.2K bytes - Viewed (0) -
istioctl/pkg/checkinject/testdata/check-inject/never-match-injector.yaml
webhooks: - admissionReviewVersions: - v1beta1 - v1 clientConfig: service: name: istiod namespace: istio-system path: /inject port: 443 failurePolicy: Fail matchPolicy: Equivalent name: rev.namespace.sidecar-injector.istio.io namespaceSelector: matchLabels: istio.io/deactivated: never-match objectSelector: matchLabels:
Registered: 2025-05-28 22:53 - Last Modified: 2023-06-15 15:02 - 3.1K bytes - Viewed (0) -
cmd/tier_test.go
} metrics := globalTierMetrics.Report() var succ, fail float64 for _, metric := range metrics { switch metric.Description.Name { case tierRequestsSuccess: succ += metric.Value case tierRequestsFailure: fail += metric.Value } } if int(succ) != expSuccess { t.Fatalf("Expected %d successes but got %f", expSuccess, succ) } if int(fail) != expFailure {
Registered: 2025-05-25 19:28 - Last Modified: 2023-12-21 04:13 - 1.5K bytes - Viewed (0) -
istioctl/pkg/checkinject/testdata/check-inject/default-injector.yaml
webhooks: - admissionReviewVersions: - v1beta1 - v1 clientConfig: service: name: istiod namespace: istio-system path: /inject port: 443 failurePolicy: Fail matchPolicy: Equivalent name: rev.namespace.sidecar-injector.istio.io namespaceSelector: matchExpressions: - key: istio.io/rev operator: In values:
Registered: 2025-05-28 22:53 - Last Modified: 2023-06-15 15:02 - 3.9K bytes - Viewed (0) -
manifests/charts/gateways/istio-egress/templates/zzz_profile.yaml
{{- $profile = (. | fromYaml) }} {{- else }} {{ fail (cat "unknown profile" .) }} {{- end }} {{- end }} {{- with .Values.compatibilityVersion }} {{- with $.Files.Get (printf "files/profile-compatibility-version-%s.yaml" .) }} {{- $ignore := mustMergeOverwrite $profile (. | fromYaml) }} {{- else }} {{ fail (cat "unknown compatibility version" $.Values.compatibilityVersion) }} {{- end }} {{- end }}
Registered: 2025-05-28 22:53 - Last Modified: 2025-04-12 16:18 - 2.8K bytes - Viewed (0) -
manifests/charts/istio-cni/templates/zzz_profile.yaml
{{- $profile = (. | fromYaml) }} {{- else }} {{ fail (cat "unknown profile" .) }} {{- end }} {{- end }} {{- with .Values.compatibilityVersion }} {{- with $.Files.Get (printf "files/profile-compatibility-version-%s.yaml" .) }} {{- $ignore := mustMergeOverwrite $profile (. | fromYaml) }} {{- else }} {{ fail (cat "unknown compatibility version" $.Values.compatibilityVersion) }} {{- end }} {{- end }}
Registered: 2025-05-28 22:53 - Last Modified: 2025-04-12 16:18 - 2.8K bytes - Viewed (0) -
manifests/charts/ztunnel/templates/zzz_profile.yaml
{{- $profile = (. | fromYaml) }} {{- else }} {{ fail (cat "unknown profile" .) }} {{- end }} {{- end }} {{- with .Values.compatibilityVersion }} {{- with $.Files.Get (printf "files/profile-compatibility-version-%s.yaml" .) }} {{- $ignore := mustMergeOverwrite $profile (. | fromYaml) }} {{- else }} {{ fail (cat "unknown compatibility version" $.Values.compatibilityVersion) }} {{- end }} {{- end }}
Registered: 2025-05-28 22:53 - Last Modified: 2025-04-12 16:18 - 2.8K bytes - Viewed (0)