Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for dotV (0.06 sec)

  1. src/text/template/exec_test.go

    	// Dots of all kinds to test basic evaluation.
    	{"dot int", "<{{.}}>", "<13>", 13, true},
    	{"dot uint", "<{{.}}>", "<14>", uint(14), true},
    	{"dot float", "<{{.}}>", "<15.1>", 15.1, true},
    	{"dot bool", "<{{.}}>", "<true>", true, true},
    	{"dot complex", "<{{.}}>", "<(16.2-17i)>", 16.2 - 17i, true},
    	{"dot string", "<{{.}}>", "<hello>", "hello", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. src/net/url/url_test.go

    	{"http://foo.com/bar/baz", "quux/./dotdot/../dotdot/../dot/./tail/..", "http://foo.com/bar/quux/dot/"},
    
    	// Remove any dot-segments prior to forming the target URI.
    	// https://datatracker.ietf.org/doc/html/rfc3986#section-5.2.4
    	{"http://foo.com/dot/./dotdot/../foo/bar", "../baz", "http://foo.com/dot/baz"},
    
    	// Triple dot isn't special
    	{"http://foo.com/bar", "...", "http://foo.com/..."},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. src/time/format.go

    	n := digitsLen(std)
    	if trim && (n == 0 || nanosec == 0) {
    		return b
    	}
    	dot := separator(std)
    	b = append(b, dot)
    	b = appendInt(b, nanosec, 9)
    	if n < 9 {
    		b = b[:len(b)-9+n]
    	}
    	if trim {
    		for len(b) > 0 && b[len(b)-1] == '0' {
    			b = b[:len(b)-1]
    		}
    		if len(b) > 0 && b[len(b)-1] == dot {
    			b = b[:len(b)-1]
    		}
    	}
    	return b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. src/os/os_test.go

    }
    
    func TestFileReaddirnames(t *testing.T) {
    	t.Parallel()
    
    	t.Run(".", testReaddirnames(".", dot))
    	t.Run("sysdir", testReaddirnames(sysdir.name, sysdir.files))
    	t.Run("TempDir", testReaddirnames(t.TempDir(), nil))
    }
    
    func TestFileReaddir(t *testing.T) {
    	t.Parallel()
    
    	t.Run(".", testReaddir(".", dot))
    	t.Run("sysdir", testReaddir(sysdir.name, sysdir.files))
    	t.Run("TempDir", testReaddir(t.TempDir(), nil))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		result.AddSyncResult(createSandboxResult)
    
    		// ConvertPodSysctlsVariableToDotsSeparator converts sysctl variable
    		// in the Pod.Spec.SecurityContext.Sysctls slice into a dot as a separator.
    		// runc uses the dot as the separator to verify whether the sysctl variable
    		// is correct in a separate namespace, so when using the slash as the sysctl
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    				`errState=got unexpected nil transformer, errGen=failed to validate annotations: annotations: Invalid value: "panda": ` +
    				`should be a domain with at least two segments separated by dots, statusKeyIDHash="sha256:6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b", ` +
    				`encryptKeyIDHash="", stateKeyIDHash="", expirationTimestamp=` + (time.Time{}).Format(time.RFC3339),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	} else if len(strings.Split(spec.Group, ".")) < 2 {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("group"), spec.Group, "should be a domain with at least one dot"))
    	}
    
    	allErrs = append(allErrs, validateEnumStrings(fldPath.Child("scope"), string(spec.Scope), []string{string(apiextensions.ClusterScoped), string(apiextensions.NamespaceScoped)}, true)...)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  8. cmd/sts-handlers_test.go

    		if err != nil {
    			c.Fatalf("normalize err: %v", err)
    		}
    		return normalizedDN
    	}
    
    	actualUserDN := mustNormalizeDN("uid=svc.algorithm,OU=swengg,DC=min,DC=io")
    
    	// \uFE52 is the unicode dot SMALL FULL STOP used below:
    	userDNWithUnicodeDot := "uid=svc﹒algorithm,OU=swengg,DC=min,DC=io"
    
    	if err = s.adm.SetPolicy(ctx, policy, userDNWithUnicodeDot, false); err != nil {
    		c.Fatalf("Unable to set policy: %v", err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_messages.go

    				}
    				if len(m.serverName) != 0 {
    					// Multiple names of the same name_type are prohibited.
    					return false
    				}
    				m.serverName = string(serverName)
    				// An SNI value may not include a trailing dot.
    				if strings.HasSuffix(m.serverName, ".") {
    					return false
    				}
    			}
    		case extensionStatusRequest:
    			// RFC 4366, Section 3.6
    			var statusType uint8
    			var ignored cryptobyte.String
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/proxier.go

    func servicePortChainNameBase(servicePortName *proxy.ServicePortName, protocol string) string {
    	// nftables chains can contain the characters [A-Za-z0-9_./-] (but must start with
    	// a letter, underscore, or dot).
    	//
    	// Namespace, Service, and Port names can contain [a-z0-9-] (with some additional
    	// restrictions that aren't relevant here).
    	//
    	// Protocol is /(tcp|udp|sctp)/.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
Back to top