- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 173 for Jones (0.03 sec)
-
Makefile.core.mk
RELEASE_LDFLAGS='' else RELEASE_LDFLAGS='-extldflags -static -s -w' endif # List of all binaries to build # We split the binaries into "agent" binaries and standard ones. This corresponds to build "agent". # This allows conditional compilation to avoid pulling in costly dependencies to the agent, such as XDS and k8s. AGENT_BINARIES:=./pilot/cmd/pilot-agent
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 03 23:53:59 UTC 2024 - 18.4K bytes - Viewed (0) -
istioctl/pkg/tag/tag.go
UserManaged: true, } tagWhYAML, err := Generate(ctx, kubeClient, opts, istioNS) if err != nil { return err } // Check the newly generated webhook does not conflict with existing ones. resName := webhookName if resName == "" { resName = fmt.Sprintf("%s-%s", "istio-revision-tag", tagName) } if err := analyzeWebhook(resName, istioNS, tagWhYAML, revision, kubeClient.RESTConfig()); err != nil {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 22 15:40:30 UTC 2024 - 16.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableList.java
* * <p>Builder instances can be reused; it is safe to call {@link #build} multiple times to build * multiple lists in series. Each new list contains all the elements of the ones created before * it. * * @since 2.0 */ public static final class Builder<E> extends ImmutableCollection.ArrayBasedBuilder<E> { /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 21:21:17 UTC 2024 - 27.7K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.2.md
aggregating status across all pods, maintaining application availability, and rollback. * <strong>Automated cluster management: </strong> * Kubernetes clusters can now span zones within a cloud provider. Pods from a service will be automatically spread across zones, enabling applications to tolerate zone failure. * Simplified way to run a container on every node (DaemonSet API (Beta) in the
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Fri Dec 04 06:36:19 UTC 2020 - 41.4K bytes - Viewed (0) -
helm-releases/minio-1.0.2.tgz
## If defined, it must be a sub-directory of the path specified in {{ .Values.mountPath }} ## bucketRoot: "" # Number of drives attached to a node drivesPerNode: 1 # Number of MinIO containers running replicas: 4 # Number of expanded MinIO clusters zones: 1 ## TLS Settings for MinIO tls: enabled: false ## Create a secret with private.key and public.crt files and pass that here. Ref: https://github.com/minio/minio/tree/master/docs/tls/kubernetes#2-create-kubernetes-secret certSecret: "" publicCrt: public.crt...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 24 18:58:05 UTC 2021 - 13.6K bytes - Viewed (0) -
cni/pkg/iptables/iptables.go
"-m", "mark", "!", "--mark", inpodMark, "-j", "REDIRECT", "--to-ports", fmt.Sprintf("%d", DNSCapturePort), ) // Assign packets between the proxy and upstream DNS servers to their own conntrack zones to avoid issues in port collision // See https://github.com/istio/istio/issues/33469 // Proxy --> Upstream iptablesBuilder.AppendRule( iptableslog.UndefinedCommand, ChainInpodOutput, iptablesconstants.RAW,
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Oct 15 15:39:28 UTC 2024 - 23.3K bytes - Viewed (0) -
docs/en/docs/tutorial/sql-databases.md
### Create Multiple Models In **SQLModel**, any model class that has `table=True` is a **table model**. And any model class that doesn't have `table=True` is a **data model**, these ones are actually just Pydantic models (with a couple of small extra features). 🤓 With SQLModel, we can use **inheritance** to **avoid duplicating** all the fields in all the cases. #### `HeroBase` - the base class
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Oct 09 19:44:42 UTC 2024 - 14.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
SmbTransportInternal trans = dc.unwrap(SmbTransportInternal.class); // the tconHostName is from the DC referral, that referral must be resolved // before following deeper ones. Otherwise e.g. samba will return a broken // referral. synchronized ( trans ) { try { // ensure connected trans.ensureConnected();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:07:29 UTC 2023 - 29.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java
for (Iterator<ResolutionNode> i = node.getChildrenIterator(); i.hasNext(); ) { ResolutionNode child = i.next(); try { // We leave in optional ones, but don't pick up its dependencies if (!child.isResolved() && (!child.getArtifact().isOptional() || child.isChildOfRootNode())) { Artifact artifact = child.getArtifact();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 36.7K bytes - Viewed (0) -
docs/en/docs/python-types.md
#### Newer versions of Python The syntax using `typing` is **compatible** with all versions, from Python 3.6 to the latest ones, including Python 3.9, Python 3.10, etc.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 26 11:47:53 UTC 2024 - 16.7K bytes - Viewed (0)