Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 228 for on_config (0.21 sec)

  1. scripts/mkdocs_hooks.py

        material_langs_path = material_path / "templates" / "partials" / "languages"
        langs = [file.stem for file in material_langs_path.glob("*.html")]
        return langs
    
    
    class EnFile(File):
        pass
    
    
    def on_config(config: MkDocsConfig, **kwargs: Any) -> MkDocsConfig:
        available_langs = get_mkdocs_material_langs()
        dir_path = Path(config.docs_dir)
        lang = dir_path.parent.name
        if lang in available_langs:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 24 20:26:06 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. src/net/dnsconfig.go

    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname defaultNS
    var defaultNS = []string{"127.0.0.1:53", "[::1]:53"}
    
    var getHostname = os.Hostname // variable for testing
    
    type dnsConfig struct {
    	servers       []string      // server addresses (in host:port form) to use
    	search        []string      // rooted suffixes to append to local name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. cni/pkg/install/cniconfig.go

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. .github/bot_config.yml

    tilakrayal <******@****.***> 1717390557 +0530
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 04:55:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/testdata/ec_config.yaml

    Nilekh Chaudhari <******@****.***> 1667859356 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 21:47:59 UTC 2022
    - 209 bytes
    - Viewed (0)
  6. _config.yml

    Harshavardhana <******@****.***> 1624038114 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 18 17:41:54 UTC 2021
    - 27 bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/upgrade/1.7.6-install.yaml.tar

    patch: operation: INSERT_BEFORE value: name: istio.metadata_exchange typed_config: "@type": type.googleapis.com/udpa.type.v1.TypedStruct type_url: type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm value: config: configuration: | {} vm_config: runtime: envoy.wasm.runtime.null code: local: inline_string: envoy.wasm.metadata_exchange --- apiVersion: networking.istio.io/v1alpha3 kind: EnvoyFilter metadata: name: metadata-exchange-1.7-1-7-6 namespace: istio-system labels: istio.io/rev: 1-7-6...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 60K bytes
    - Viewed (0)
  8. pkg/kubelet/network/dns/dns.go

    				if utilnet.IsIPv6(nodeIP) {
    					dnsConfig.Servers = append(dnsConfig.Servers, "::1")
    				} else {
    					dnsConfig.Servers = append(dnsConfig.Servers, "127.0.0.1")
    				}
    			}
    			if len(dnsConfig.Servers) == 0 {
    				dnsConfig.Servers = append(dnsConfig.Servers, "127.0.0.1")
    			}
    			dnsConfig.Searches = []string{"."}
    		}
    	}
    
    	if pod.Spec.DNSConfig != nil {
    		dnsConfig = appendDNSConfig(dnsConfig, pod.Spec.DNSConfig)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 04 11:37:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  9. src/net/dnsconfig_unix_test.go

    package net
    
    import (
    	"errors"
    	"io/fs"
    	"os"
    	"reflect"
    	"strings"
    	"testing"
    	"time"
    )
    
    var dnsReadConfigTests = []struct {
    	name string
    	want *dnsConfig
    }{
    	{
    		name: "testdata/resolv.conf",
    		want: &dnsConfig{
    			servers:    []string{"8.8.8.8:53", "[2001:4860:4860::8888]:53", "[fe80::1%lo0]:53"},
    			search:     []string{"localdomain."},
    			ndots:      5,
    			timeout:    10 * time.Second,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 17:41:32 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  10. cni/pkg/util/pluginutil.go

    	return
    }
    
    // Marshal the CNI config map and append a new line
    func MarshalCNIConfig(cniConfigMap map[string]any) ([]byte, error) {
    	cniConfig, err := json.MarshalIndent(cniConfigMap, "", "  ")
    	if err != nil {
    		return nil, err
    	}
    	cniConfig = append(cniConfig, "\n"...)
    	return cniConfig, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top