Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for dotV (0.05 sec)

  1. 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)
  2. 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)
  3. internal/s3select/select_test.go

    	}{
    		{
    			name:  "Select a column containing dot",
    			query: `select "na.me" from S3Object s`,
    			wantResult: `apple
    mango`,
    		},
    		{
    			name:       "Select column containing dot with table name prefix",
    			query:      `select count(S3Object."na.me") from S3Object`,
    			wantResult: `2`,
    		},
    		{
    			name:  "Select column containing dot with table alias prefix",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  4. 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)
  5. src/main/java/jcifs/smb/SmbTransportImpl.java

    /* jcifs smb client library in Java
     * Copyright (C) 2005  "Michael B. Allen" <jcifs at samba dot org>
     *                  "Eric Glass" <jcifs at samba dot org>
     *
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K 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. cmd/xl-storage_test.go

    		{"bucket1", true},
    		{"$this-is-not-valid-too", true},
    		{"contains-$-dollar", true},
    		{"contains-^-carrot", true},
    		{"contains-$-dollar", true},
    		{"contains-$-dollar", true},
    		{".starts-with-a-dot", true},
    		{"ends-with-a-dot.", true},
    		{"ends-with-a-dash-", true},
    		{"-starts-with-a-dash", true},
    		{"THIS-BEINGS-WITH-UPPERCASe", true},
    		{"tHIS-ENDS-WITH-UPPERCASE", true},
    		{"ThisBeginsAndEndsWithUpperCase", true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  8. 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)
  9. pkg/apis/certificates/validation/validation_test.go

    					SignerName: "example/some-signer-name",
    				},
    			},
    			errs: field.ErrorList{
    				field.Invalid(specPath.Child("signerName"), "example", "should be a domain with at least two segments separated by dots"),
    			},
    		},
    		"signerName path component is empty": {
    			csr: capi.CertificateSigningRequest{
    				ObjectMeta: validObjectMeta,
    				Spec: capi.CertificateSigningRequestSpec{
    					Usages:     validUsages,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_mounter_test.go

    			specVolumeName: "spec-0",
    			path:           filepath.Join(tmpDir, fmt.Sprintf("pods/%s/volumes/kubernetes.io~csi/%s/%s", testPodUID, "spec-0", "/mount")),
    		},
    		{
    			name:           "specName with dots",
    			specVolumeName: "test.spec.1",
    			path:           filepath.Join(tmpDir, fmt.Sprintf("pods/%s/volumes/kubernetes.io~csi/%s/%s", testPodUID, "test.spec.1", "/mount")),
    		},
    	}
    	for _, tc := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
Back to top