Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for fn_name (0.34 sec)

  1. internal/config/config.go

    // Merge environment values with on disk KVS, environment values overrides
    // anything on the disk.
    func Merge(cfgKVS map[string]KVS, envname string, defaultKVS KVS) map[string]KVS {
    	newCfgKVS := make(map[string]KVS)
    	for _, e := range env.List(envname) {
    		tgt := strings.TrimPrefix(e, envname+Default)
    		if tgt == envname {
    			tgt = Default
    		}
    		newCfgKVS[tgt] = defaultKVS
    	}
    	for tgt, kv := range cfgKVS {
    		newCfgKVS[tgt] = kv
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  2. cni/pkg/cmd/root.go

    func registerEnvironment[T env.Parseable](name string, defaultValue T, usage string) {
    	envName := strings.Replace(strings.ToUpper(name), "-", "_", -1)
    	// Note: we do not rely on istio env package to retrieve configuration. We relies on viper.
    	// This is just to make sure the reference doc tool can generate doc with these vars as env variable at istio.io.
    	env.Register(envName, defaultValue, usage)
    	bindViper(name)
    }
    
    func bindViper(name string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. src/crypto/x509/verify.go

    // VerifyOptions contains parameters for Certificate.Verify.
    type VerifyOptions struct {
    	// DNSName, if set, is checked against the leaf certificate with
    	// Certificate.VerifyHostname or the platform verifier.
    	DNSName string
    
    	// Intermediates is an optional pool of certificates that are not trust
    	// anchors, but can be used to form a chain from the leaf certificate to a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/compute_test.go

    	// Kubernetes release.
    	for _, rt := range tests {
    		t.Run(rt.name, func(t *testing.T) {
    
    			dnsName := constants.CoreDNSDeploymentName
    
    			client := newMockClientForTest(t, dnsName, rt.beforeDNSVersion, rt.deployDNSFailed)
    
    			actualUpgrades, actualErr := GetAvailableUpgrades(rt.vg, rt.allowExperimental, rt.allowRCs, client, &output.TextPrinter{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/os/OperatingSystem.java

        public static OperatingSystem current() {
            if (currentOs == null) {
                currentOs = forName(System.getProperty("os.name"));
            }
            return currentOs;
        }
    
        // for testing current()
        static void resetCurrent() {
            currentOs = null;
        }
    
        public static OperatingSystem forName(String os) {
            String osName = os.toLowerCase(Locale.ROOT);
            if (osName.contains("windows")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/extract_outside_compilation_pass_test.cc

        Graph *xla_graph = xla_fbody->graph;
        auto node_name_index = xla_graph->BuildNodeNameIndex();
    
        // Check that we have call node.
        Node *fn_node = node_name_index["fn"];
        EXPECT_NE(fn_node, nullptr);
        EXPECT_EQ(fn_node->type_string(), "fn_oc");
    
        std::unique_ptr<FunctionBody> call_fbody;
        TF_CHECK_OK(FunctionDefToBodyHelper(*fld.Find("fn_oc"), AttrSlice(), &fld,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 41K bytes
    - Viewed (0)
  7. pkg/apis/certificates/v1beta1/defaults_test.go

    			req:    newCSR(kubeletClientPEMOptions, pemOptions{org: "not-system:nodes"}),
    			usages: kubeletClientUsages,
    			exp:    false,
    		},
    		"does not default to kube-apiserver-client-kubelet if a dnsName is set": {
    			req:    newCSR(kubeletClientPEMOptions, pemOptions{dnsNames: []string{"something"}}),
    			usages: kubeletClientUsages,
    			exp:    false,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 16.9K bytes
    - Viewed (0)
  8. platforms/software/resources/src/main/java/org/gradle/internal/resource/UriTextResource.java

     */
    public class UriTextResource implements TextResource {
        private static final HashCode SIGNATURE = Hashing.signature(UriTextResource.class);
        protected static final Charset DEFAULT_ENCODING = Charset.forName("utf-8");
        private static final String USER_AGENT;
    
        static {
            String osName = System.getProperty("os.name");
            String osVersion = System.getProperty("os.version");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/manager.go

    	m.pendingAdmissionPod = pod
    }
    
    func (m *ManagerImpl) isContainerAlreadyRunning(podUID, cntName string) bool {
    	cntID, err := m.containerMap.GetContainerID(podUID, cntName)
    	if err != nil {
    		klog.V(4).InfoS("container not found in the initial map, assumed NOT running", "podUID", podUID, "containerName", cntName, "err", err)
    		return false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  10. src/syscall/types_linux.go

    };
    
    // ustat is deprecated and glibc 2.28 removed ustat.h. Provide the type here for
    // backwards compatibility. Copied from /usr/include/bits/ustat.h
    struct ustat {
    	__daddr_t f_tfree;
    	__ino_t f_tinode;
    	char f_fname[6];
    	char f_fpack[6];
    };
    
    */
    import "C"
    
    // Machine characteristics; for internal use.
    
    const (
    	sizeofPtr      = C.sizeofPtr
    	sizeofShort    = C.sizeof_short
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.9K bytes
    - Viewed (0)
Back to top