- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 754 for simples (0.13 sec)
-
manifests/addons/gen.sh
# limitations under the License. WD=$(dirname "$0") WD=$(cd "$WD"; pwd) set -eux # This script sets up the plain text rendered deployments for addons # See samples/addons/README.md for more information ADDONS="${WD}/../../samples/addons" DASHBOARDS="${WD}/dashboards" mkdir -p "${ADDONS}" TMP=$(mktemp -d) LOKI_VERSION=${LOKI_VERSION:-"6.18.0"} GRAFANA_VERSION=${GRAFANA_VERSION:-"8.5.8"} # Set up kiali
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sun Nov 03 18:01:40 UTC 2024 - 3.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/net/PercentEscaperTest.java
import junit.framework.TestCase; /** * Tests for {@link PercentEscaper}. * * @author David Beaumont */ @GwtCompatible public class PercentEscaperTest extends TestCase { /** Tests that the simple escaper treats 0-9, a-z and A-Z as safe */ public void testSimpleEscaper() { UnicodeEscaper e = new PercentEscaper("", false); for (char c = 0; c < 128; c++) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 15:41:36 UTC 2024 - 5.2K bytes - Viewed (0) -
docs/features/calls.md
# Calls The HTTP client’s job is to accept your request and produce its response. This is simple in theory but it gets tricky in practice. ## [Requests](https://square.github.io/okhttp/4.x/okhttp/okhttp3/-request/) Each HTTP request contains a URL, a method (like `GET` or `POST`), and a list of headers. Requests may also contain a body: a data stream of a specific content type. ## [Responses](https://square.github.io/okhttp/4.x/okhttp/okhttp3/-response/)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 3.9K bytes - Viewed (0) -
istioctl/pkg/validate/validate.go
Example: ` # Validate bookinfo-gateway.yaml istioctl validate -f samples/bookinfo/networking/bookinfo-gateway.yaml # Validate bookinfo-gateway.yaml with shorthand syntax istioctl v -f samples/bookinfo/networking/bookinfo-gateway.yaml # Validate all yaml files under samples/bookinfo/networking directory istioctl validate -f samples/bookinfo/networking
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 15 22:27:47 UTC 2024 - 14.3K bytes - Viewed (0) -
tensorflow/c/eager/c_api_experimental.cc
tsl::Set_TF_Status_from_Status(status, result->sampler->GetStatus()); if (!result->sampler->GetStatus().ok()) { delete result; return nullptr; } return result; } void TFE_MonitoringDeleteSampler0(TFE_MonitoringSampler0* sampler) { delete sampler; } TFE_MonitoringSamplerCell* TFE_MonitoringGetCellSampler0( TFE_MonitoringSampler0* sampler) { return static_cast<TFE_MonitoringSamplerCell*>(
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 35.9K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/SetTestSuiteBuilder.java
private ReserializedSetGenerator(OneSizeTestContainerGenerator<Collection<E>, E> gen) { this.gen = gen; } @Override public SampleElements<E> samples() { return gen.samples(); } @Override public Set<E> create(Object... elements) { return (Set<E>) SerializableTester.reserialize(gen.create(elements)); } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 4.7K bytes - Viewed (0) -
src/packaging/rpm/packaging.properties
# Properties used to build to the RPM package # # Environment file packaging.env.file=/etc/sysconfig/fess # Default configuration directory and file to use in bin/plugin script # Simple marker to check that properties are correctly overridden packaging.type=rpm # Custom header for package scripts packaging.scripts.header=
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 10 01:24:02 UTC 2015 - 420 bytes - Viewed (0) -
docs_src/path_operation_advanced_configuration/tutorial002.py
@app.get("/items/") async def read_items(): return [{"item_id": "Foo"}] def use_route_names_as_operation_ids(app: FastAPI) -> None: """ Simplify operation IDs so that generated API clients have simpler function names. Should be called only after all routes have been added. """ for route in app.routes: if isinstance(route, APIRoute):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Mar 26 19:09:53 UTC 2020 - 572 bytes - Viewed (0) -
compat/maven-embedder/src/examples/simple-project/src/test/java/org/apache/maven/embedder/AppTest.java
package org.apache.maven.embedder; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; /** * Unit test for simple App. */ public class AppTest extends TestCase { /** * Create the test case * * @param testName name of the test case */ public AppTest( String testName ) { super( testName ); } /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 651 bytes - Viewed (0) -
README.md
cUrl-like Java Client [![Java CI with Maven](https://github.com/codelibs/curl4j/actions/workflows/maven.yml/badge.svg)](https://github.com/codelibs/curl4j/actions/workflows/maven.yml) ===================== curl4j is a simple cUrl-like Java client. ## Version [Versions in Maven Repository](https://repo1.maven.org/maven2/org/codelibs/curl4j/) ## Using Maven Put the following block into pom.xml if using Maven: <dependency>
Registered: Thu Oct 31 02:32:13 UTC 2024 - Last Modified: Sat Feb 19 00:59:27 UTC 2022 - 566 bytes - Viewed (0)