- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 979 for sempre (0.09 sec)
-
cmd/site-replication-metrics_gen.go
} case "Endpoint": z.Endpoint, err = dc.ReadString() if err != nil { err = msgp.WrapError(err, "Endpoint") return } case "Secure": z.Secure, err = dc.ReadBool() if err != nil { err = msgp.WrapError(err, "Secure") return } default: err = dc.Skip() if err != nil { err = msgp.WrapError(err) return } } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Feb 06 06:00:45 UTC 2024 - 40.6K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/Cookie.kt
if (!pathMatch(url, path)) return false return !secure || url.isHttps } override fun equals(other: Any?): Boolean { return other is Cookie && other.name == name && other.value == value && other.expiresAt == expiresAt && other.domain == domain && other.path == path && other.secure == secure && other.httpOnly == httpOnly &&
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 06 04:12:05 UTC 2024 - 23.1K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/UncaughtExceptionHandlers.java
* or implied. See the License for the specific language governing permissions and limitations under * the License. */ package com.google.common.util.concurrent; import static java.util.logging.Level.SEVERE; import com.google.common.annotations.GwtIncompatible; import com.google.common.annotations.J2ktIncompatible; import com.google.common.annotations.VisibleForTesting; import java.lang.Thread.UncaughtExceptionHandler;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Dec 14 20:35:03 UTC 2023 - 2.8K bytes - Viewed (0) -
manifests/addons/dashboards/pilot.libsonnet
], panelHeight=10, startY=3) + grid.makeGrid([ row.new('Webhooks') + row.withPanels([ panels.timeSeries.simple( 'Validation', queries.validateWebhook, ||| Rate of XDS push operations, by type. This is incremented on a per-proxy basis. ||| ), panels.timeSeries.simple( 'Injection', queries.injectionWebhook, ||| Size of each xDS push. ||| ), ]),
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jun 12 20:46:28 UTC 2024 - 2.9K bytes - Viewed (0) -
LICENSES/vendor/github.com/blang/semver/v4/LICENSE
= vendor/github.com/blang/semver/v4 licensed under: = The MIT License Copyright (c) 2014 Benedikt Lang <github at benediktlang.de> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Mon Mar 28 07:33:23 UTC 2022 - 1.2K bytes - Viewed (0) -
compat/maven-embedder/src/examples/simple-project/pom.xml
<modelVersion>4.0.0</modelVersion> <groupId>org.apache.maven.embedder</groupId> <artifactId>simple-project</artifactId> <version>1.0-SNAPSHOT</version> <name>simple-project</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0) -
internal/event/target/nats.go
} if n.Token != "" { connOpts = append(connOpts, nats.Token(n.Token)) } if n.Secure || n.TLS && n.TLSSkipVerify { connOpts = append(connOpts, nats.Secure(nil)) } else if n.TLS { connOpts = append(connOpts, nats.Secure(&tls.Config{RootCAs: n.RootCAs})) } if n.CertAuthority != "" { connOpts = append(connOpts, nats.RootCAs(n.CertAuthority)) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 12.9K bytes - Viewed (0) -
istioctl/pkg/metrics/metrics_test.go
&prometheus_model.Sample{Value: 2.5}, }, "histogram_quantile(0.900000, sum(rate(istio_request_duration_milliseconds_bucket{destination_workload=~\"details.*\", destination_workload_namespace=~\".*\",reporter=\"destination\"}[1m0s])) by (le))": prometheus_model.Vector{ // nolint: lll &prometheus_model.Sample{Value: 4.5}, },
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 01:35:47 UTC 2024 - 8K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/TestMapEntrySetGenerator.java
import java.util.List; import java.util.Map; import java.util.Map.Entry; import java.util.Set; import org.checkerframework.checker.nullness.qual.Nullable; /** * Creates map entries using sample keys and sample values. * * @author Jesse Wilson */ @GwtCompatible @ElementTypesAreNonnullByDefault public abstract class TestMapEntrySetGenerator< K extends @Nullable Object, V extends @Nullable Object>
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ClRuntimeException.java
public Object[] getArgs() { return args; } @Override public String getMessage() { return message; } /** * Returns a simple message without a message code. * * @return simple message without message code */ public final String getSimpleMessage() { return simpleMessage; }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.9K bytes - Viewed (0)