Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for tcp_prefix (1.12 sec)

  1. pkg/bootstrap/testdata/stats_compression_zstd_golden.json

        "use_all_default_tags": false,
        "stats_tags": [
          {
            "tag_name": "cluster_name",
            "regex": "^cluster\\.((.+?(\\..+?\\.svc\\.cluster\\.local)?)\\.)"
          },
          {
            "tag_name": "tcp_prefix",
            "regex": "^tcp\\.((.*?)\\.)\\w+?$"
          },
          {
            "regex": "_rq(_(\\d{3}))$",
            "tag_name": "response_code"
          },
          {
            "tag_name": "response_code_class",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. pkg/bootstrap/testdata/stats_compression_brotli_golden.json

        "use_all_default_tags": false,
        "stats_tags": [
          {
            "tag_name": "cluster_name",
            "regex": "^cluster\\.((.+?(\\..+?\\.svc\\.cluster\\.local)?)\\.)"
          },
          {
            "tag_name": "tcp_prefix",
            "regex": "^tcp\\.((.*?)\\.)\\w+?$"
          },
          {
            "regex": "_rq(_(\\d{3}))$",
            "tag_name": "response_code"
          },
          {
            "tag_name": "response_code_class",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. tools/packaging/common/envoy_bootstrap.json

        "use_all_default_tags": false,
        "stats_tags": [
          {
            "tag_name": "cluster_name",
            "regex": "^cluster\\.((.+?(\\..+?\\.svc\\.cluster\\.local)?)\\.)"
          },
          {
            "tag_name": "tcp_prefix",
            "regex": "^tcp\\.((.*?)\\.)\\w+?$"
          },
          {
            "regex": "_rq(_(\\d{3}))$",
            "tag_name": "response_code"
          },
          {
            "tag_name": "response_code_class",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfig.java

            private final String typePrefix;
    
            ConfigType(final String typePrefix) {
                this.typePrefix = typePrefix;
            }
    
            public String getTypePrefix() {
                return typePrefix;
            }
    
            String getConfigId(final String id) {
                if (id == null) {
                    return null;
                }
                return typePrefix + id.toString();
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. tensorflow/c/generate-pc.sh

        esac
    done
    
    [ -z $TF_VERSION ] && echo "Specify a version using -v or --version" && exit 1
    
    echo "Generating pkgconfig file for TensorFlow $TF_VERSION in $TF_PREFIX"
    
    cat << EOF > tensorflow.pc
    prefix=${TF_PREFIX}
    exec_prefix=\${prefix}
    libdir=\${exec_prefix}/${LIBDIR}
    includedir=\${prefix}/include/tensorflow
    
    Name: TensorFlow
    Version: ${TF_VERSION}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Aug 04 07:01:14 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/testing/utils.go

    */
    
    package testing
    
    import (
    	"os"
    	"path"
    )
    
    // PathPrefix returns the prefix set via the ETCD_PREFIX environment variable (if any).
    func PathPrefix() string {
    	pref := os.Getenv("ETCD_PREFIX")
    	if pref == "" {
    		pref = "registry"
    	}
    	return path.Join("/", pref)
    }
    
    // AddPrefix adds the ETCD_PREFIX to the provided key
    func AddPrefix(in string) string {
    	return path.Join(PathPrefix(), in)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 01 13:02:49 UTC 2019
    - 962 bytes
    - Viewed (0)
  7. pkg/kubelet/util/store/filestore.go

    */
    
    package store
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"strings"
    
    	utilfs "k8s.io/kubernetes/pkg/util/filesystem"
    )
    
    const (
    	// Name prefix for the temporary files.
    	tmpPrefix = "."
    )
    
    // FileStore is an implementation of the Store interface which stores data in files.
    type FileStore struct {
    	// Absolute path to the base directory for storing data files.
    	directoryPath string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 15:08:27 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/opensearch/extension/ExtensionPlugin.java

            extra.put("char_type", CharTypeFilterFactory::new);
            extra.put("number_concat", NumberConcatenationFilterFactory::new);
            extra.put("pattern_concat", PatternConcatenationFilterFactory::new);
            extra.put("stop_prefix", StopTokenPrefixFilterFactory::new);
            extra.put("stop_suffix", StopTokenSuffixFilterFactory::new);
            extra.put("reloadable_keyword_marker", ReloadableKeywordMarkerFilterFactory::new);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/coderepo.go

    		subdir += "/"
    	}
    	haveLICENSE := false
    	topPrefix := ""
    	for _, zf := range zr.File {
    		if topPrefix == "" {
    			i := strings.Index(zf.Name, "/")
    			if i < 0 {
    				return fmt.Errorf("missing top-level directory prefix")
    			}
    			topPrefix = zf.Name[:i+1]
    		}
    		var name string
    		var found bool
    		if name, found = strings.CutPrefix(zf.Name, topPrefix); !found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/fetch.go

    	// safe to do because the lock file ensures that their writers are no longer
    	// active.
    	parentDir := filepath.Dir(dir)
    	tmpPrefix := filepath.Base(dir) + ".tmp-"
    	if old, err := filepath.Glob(filepath.Join(str.QuoteGlob(parentDir), str.QuoteGlob(tmpPrefix)+"*")); err == nil {
    		for _, path := range old {
    			RemoveAll(path) // best effort
    		}
    	}
    	if dirExists {
    		if err := RemoveAll(dir); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top