Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 395 for subTable (0.13 sec)

  1. pkg/test/framework/resource/version.go

    func (rv *RevVerMap) IsMultiVersion() bool {
    	return rv != nil && len(*rv) > 0
    }
    
    // TemplateMap creates a map of revisions and versions suitable for templating.
    func (rv *RevVerMap) TemplateMap() map[string]string {
    	if rv == nil {
    		return nil
    	}
    	templateMap := make(map[string]string)
    	if len(*rv) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  2. samples/addons/README.md

    are not a part of Istio, they are essential to making the most of Istio's observability features.
    
    The deployments here are meant to quickly get up and running, and are optimized for this case. As a result,
    they may not be suitable for production. See below for more info on integrating a production grade version of each
    addon.
    
    ## Getting started
    
    To quickly deploy all addons:
    
    ```shell script
    kubectl apply -f samples/addons
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis_openapi.json

                "type": "string"
              },
              "serverAddress": {
                "default": "",
                "description": "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.",
                "type": "string"
              }
            },
            "required": [
              "clientCIDR",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. docs/compression/README.md

    so performance impact should be minimal even if precompressed data is re-compressed.
    Decompressing incompressible data has no significant performance impact.
    
    Below is a list of common files and content-types which are typically not suitable for compression.
    
    - Extensions
    
     | `gz`  | (GZIP)      |
     | `bz2` | (BZIP2)     |
     | `rar` | (WinRAR)    |
     | `zip` | (ZIP)       |
     | `7z`  | (7-Zip)     |
     | `xz`  | (LZMA)      |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/print_flags.go

    }
    
    func (e NoCompatiblePrinterError) Error() string {
    	output := ""
    	if e.OutputFormat != nil {
    		output = *e.OutputFormat
    	}
    
    	sort.Strings(e.AllowedFormats)
    	return fmt.Sprintf("unable to match a printer suitable for the output format %q, allowed formats are: %s", output, strings.Join(e.AllowedFormats, ","))
    }
    
    // IsNoCompatiblePrinterError returns true if it is a not a compatible printer
    // otherwise it will return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 00:16:47 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  6. src/testing/internal/testdeps/deps.go

    	"regexp"
    	"runtime/pprof"
    	"strings"
    	"sync"
    	"time"
    )
    
    // Cover indicates whether coverage is enabled.
    var Cover bool
    
    // TestDeps is an implementation of the testing.testDeps interface,
    // suitable for passing to [testing.MainStart].
    type TestDeps struct{}
    
    var matchPat string
    var matchRe *regexp.Regexp
    
    func (TestDeps) MatchString(pat, str string) (result bool, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. src/net/dnsclient.go

    	return int(uint(runtime_rand()) >> 1) // clear sign bit
    }
    
    func randIntn(n int) int {
    	return randInt() % n
    }
    
    // reverseaddr returns the in-addr.arpa. or ip6.arpa. hostname of the IP
    // address addr suitable for rDNS (PTR) record lookup or an error if it fails
    // to parse the IP address.
    func reverseaddr(addr string) (arpa string, err error) {
    	ip := ParseIP(addr)
    	if ip == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/check_control_dependencies.mlir

    // RUN: tf-opt -split-input-file -tf-executor-check-control-dependencies -verify-diagnostics %s | FileCheck %s
    
    // expected-error@+1 {{'builtin.module' op not suitable for checking control dependencies}}
    module {
      // CHECK-LABEL: func @not_suitable_for_checking
      func.func @not_suitable_for_checking() -> () {
        tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 16:14:07 UTC 2022
    - 8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1alpha1/types.go

    // a certain combination:
    // - no object exists with suitable topology and storage class name
    // - such an object exists, but the capacity is unset
    // - such an object exists, but the capacity is zero
    //
    // The producer of these objects can decide which approach is more suitable.
    //
    // They are consumed by the kube-scheduler when a CSI driver opts into
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/dataflow_actions.adoc

    ----
    ====
    <1> Parameters in the parameter type must be annotated. If a parameter is annotated with link:{javadocPath}/org/gradle/api/services/ServiceReference.html[`@ServiceReference`], then a suitable shared build service implementation is automatically assigned to the parameter when the action is created, according to the <<build_services.adoc#sec:service_references,usual rules>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top