Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for msty (8.46 sec)

  1. src/time/format_test.go

    	{"", "2006-01-02 15:04:05.999999999 -0700 MST", "2010-02-04 21:00:57.012345678 -0800 PST", true, false, 1, 9},
    	// comma "," separator.
    	{"", "2006-01-02 15:04:05,9999 -0700 MST", "2010-02-04 21:00:57 -0800 PST", true, false, 1, 0},
    	{"", "2006-01-02 15:04:05,999999999 -0700 MST", "2010-02-04 21:00:57 -0800 PST", true, false, 1, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  2. cmd/kube-apiserver/app/testing/testserver.go

    		encodedPrivateKey, err := keyutil.MarshalPrivateKeyToPEM(signer)
    		if err != nil {
    			return result, err
    		}
    		if err := keyutil.WriteKey(privateKeyPath, encodedPrivateKey); err != nil {
    			return result, err
    		}
    
    		s.ProxyClientKeyFile = filepath.Join(s.SecureServing.ServerCert.CertDirectory, "misty-crt.key")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/time/zoneinfo_abbrs_windows.go

    	"SA Western Standard Time":        {"-04", "-04"},     // America/La_Paz
    	"Pacific Standard Time":           {"PST", "PDT"},     // America/Los_Angeles
    	"Mountain Standard Time (Mexico)": {"MST", "MST"},     // America/Mazatlan
    	"Central Standard Time (Mexico)":  {"CST", "CST"},     // America/Mexico_City
    	"Saint Pierre Standard Time":      {"-03", "-02"},     // America/Miquelon
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 20:01:59 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p256_asm_arm64.s

    	LDx(y2in)
    	CALL	p256MulInternal<>(SB)    // s2 = y2 * z1ˆ3
    	STy(s2)
    
    	LDx(y1in)
    	CALL	p256SubInternal<>(SB)    // r = s2 - s1
    	STx(r)
    
    	CALL	p256SqrInternal<>(SB)    // rsqr = rˆ2
    	STy	(rsqr)
    
    	LDx(h)
    	CALL	p256SqrInternal<>(SB)    // hsqr = hˆ2
    	STy(hsqr)
    
    	CALL	p256MulInternal<>(SB)    // hcub = hˆ3
    	STy(hcub)
    
    	LDx(y1in)
    	CALL	p256MulInternal<>(SB)    // y1 * hˆ3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. src/time/example_test.go

    	//
    	// Formats:
    	//
    	// Basic full date  "Mon Jan 2 15:04:05 MST 2006" gives "Wed Feb 25 11:06:39 PST 2015"
    	// Basic short date "2006/01/02" gives "2015/02/25"
    	// AM/PM            "3PM==3pm==15h" gives "11AM==11am==11h"
    	// No fraction      "Mon Jan _2 15:04:05 MST 2006" gives "Wed Feb 25 11:06:39 PST 2015"
    	// 0s for fraction  "15:04:05.00000" gives "11:06:39.12340"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  6. operator/pkg/translate/translate_value.go

    		if err != nil {
    			return err
    		}
    		if !found {
    			scope.Debugf("path %s not found in helm Value.yaml tree, skip mapping.", inPath)
    			continue
    		}
    
    		if mstr, ok := m.(string); ok && mstr == "" {
    			scope.Debugf("path %s is empty string, skip mapping.", inPath)
    			continue
    		}
    		// Zero int values are due to proto3 compiling to scalars rather than ptrs. Skip these because values of 0 are
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  7. operator/cmd/mesh/manifest_shared_test.go

    		// placeholders, since the fake API server does not actually pull images and create pods.
    		hub: "fake hub",
    		tag: "fake tag",
    	}
    
    	_, mstr, err := renderOperatorManifest(nil, ocArgs)
    	if err != nil {
    		return err
    	}
    	if err := applyWithReconciler(reconciler, mstr); err != nil {
    		return err
    	}
    
    	return nil
    }
    
    // applyWithReconciler applies the given manifest string using the given reconciler.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:28 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/certs.go

    			s := fmt.Sprintf("!MISSING! %s\t\t\t\t", cert.Name)
    			fmt.Fprintln(tabw, s)
    			continue
    		}
    
    		s := fmt.Sprintf("%s\t%s\t%s\t%s\t%-8v",
    			cert.Name,
    			cert.ExpirationDate.Format("Jan 02, 2006 15:04 MST"),
    			duration.HumanDuration(time.Duration(cert.ResidualTimeSeconds)*time.Second),
    			cert.CAName,
    			yesNo(cert.ExternallyManaged),
    		)
    		fmt.Fprintln(tabw, s)
    	}
    
    	fmt.Fprintln(tabw)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. src/net/mail/message.go

    	days := [...]string{"2", "02"}     // day = 1*2DIGIT
    	years := [...]string{"2006", "06"} // year = 4*DIGIT / 2*DIGIT
    	seconds := [...]string{":05", ""}  // second
    	// "-0700 (MST)" is not in RFC 5322, but is common.
    	zones := [...]string{"-0700", "MST", "UT"} // zone = (("+" / "-") 4DIGIT) / "UT" / "GMT" / ...
    
    	for _, dow := range dows {
    		for _, day := range days {
    			for _, year := range years {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. src/time/zoneinfo_test.go

    // couple of specific timezones.
    func TestFirstZone(t *testing.T) {
    	undo := time.DisablePlatformSources()
    	defer undo()
    
    	const format = "Mon, 02 Jan 2006 15:04:05 -0700 (MST)"
    	var tests = []struct {
    		zone  string
    		unix  int64
    		want1 string
    		want2 string
    	}{
    		{
    			"PST8PDT",
    			-1633269601,
    			"Sun, 31 Mar 1918 01:59:59 -0800 (PST)",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 13 17:06:56 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top