- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 186 for everything (0.14 sec)
-
common-protos/k8s.io/api/rbac/v1beta1/generated.proto
// +optional repeated string resources = 3; // ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. // +optional repeated string resourceNames = 4; // NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 8.6K bytes - Viewed (0) -
src/archive/tar/strconv.go
return "", "", s, ErrHeader } n -= int64(len(nStr) + 1) // convert from index in s to index in rest if n <= 0 { return "", "", s, ErrHeader } // Extract everything between the space and the final newline. rec, nl, rem := rest[:n-1], rest[n-1:n], rest[n:] if nl != "\n" { return "", "", s, ErrHeader } // The first equals separates the key from the value.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Aug 01 14:28:42 UTC 2023 - 9K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/listener.go
vhosts = append(vhosts, fmt.Sprintf("%s %s", describeDomains(vh), describeRoutes(vh))) } } return fmt.Sprintf("Inline Route: %s", strings.Join(vhosts, "; ")) } // If this is a route that matches everything and forwards to a cluster, just report the cluster. func getMatchAllCluster(er *route.RouteConfiguration) string { if len(er.GetVirtualHosts()) != 1 { return "" } vh := er.GetVirtualHosts()[0]
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Nov 29 12:37:14 UTC 2023 - 18.1K bytes - Viewed (0) -
common-protos/k8s.io/api/networking/v1beta1/generated.proto
// In the example: http://<host>/<path>?<searchpart> -> backend where // where parts of the url correspond to RFC 3986, this resource will be used // to match against everything after the last '/' and before the first '?' // or '#'. message HTTPIngressRuleValue { // paths is a collection of paths that map requests to backends. repeated HTTPIngressPath paths = 1; }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 14.9K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFuture.java
// interrupt status from non AbstractFuture futures. state = other.state; notifyAndClearListeners(); return; } /* * Almost everything in GWT is an AbstractFuture (which is as good as TrustedFuture under * GWT). But ImmediateFuture and UncheckedThrowingFuture aren't, so we still need this case. */ try {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jan 22 19:37:41 UTC 2024 - 12.3K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/cache2/Relay.kt
} @Throws(IOException::class) fun commit(upstreamSize: Long) { // Write metadata to the end of the file. writeMetadata(upstreamSize) file!!.channel.force(false) // Once everything else is in place we can swap the dirty header for a clean one. writeHeader(PREFIX_CLEAN, upstreamSize, metadata.size.toLong()) file!!.channel.force(false) // This file is complete.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 11.8K bytes - Viewed (0) -
android/guava/src/com/google/common/io/Closer.java
thrown.addSuppressed(suppressed); } catch (Throwable e) { /* * A Throwable is very unlikely, but we really don't want to throw from a Suppressor, so * we catch everything. (Any Exception is either a RuntimeException or * sneaky checked exception.) With no better options, we log anything to the same * place as Closeables logs. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue May 07 15:26:58 UTC 2024 - 10.4K bytes - Viewed (0) -
architecture/ambient/ztunnel-cni-lifecycle.md
At this point, the pod and all containers have fully shut down, and we can tear everything down. Because the application(s) are already entirely gone, there is no need to have any "draining" time -- we can immediately terminate.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jul 17 23:10:17 UTC 2024 - 9.4K bytes - Viewed (0) -
tensorflow/c/eager/parallel_device/parallel_device_lib.cc
underlying_devices_[component_index], underlying_devices_[0])) { // Device names are from different address spaces, or we can't figure out // whether they are, so we'll fully-qualify everything. return underlying_devices_; } } std::vector<std::string> local_names; local_names.reserve(underlying_devices_.size()); for (const DeviceNameUtils::ParsedName& parsed_component :
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Oct 21 04:14:14 UTC 2024 - 25.9K bytes - Viewed (0) -
guava/src/com/google/common/io/Closer.java
thrown.addSuppressed(suppressed); } catch (Throwable e) { /* * A Throwable is very unlikely, but we really don't want to throw from a Suppressor, so * we catch everything. (Any Exception is either a RuntimeException or * sneaky checked exception.) With no better options, we log anything to the same * place as Closeables logs. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue May 07 15:26:58 UTC 2024 - 10.4K bytes - Viewed (0)