Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for msty (0.09 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. operator/cmd/mesh/operator-dump.go

    		l.LogAndFatal(fmt.Errorf("unknown output format: %v", odArgs.common.outputFormat))
    	}
    
    	_, mstr, err := renderOperatorManifest(args, &odArgs.common)
    	if err != nil {
    		l.LogAndFatal(err)
    	}
    
    	var output string
    	if output, err = yamlToFormat(mstr, odArgs.common.outputFormat); err != nil {
    		l.LogAndFatal(err)
    	}
    	l.Print(output)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. 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)
  5. operator/cmd/mesh/operator-init.go

    	vals, mstr, err := renderOperatorManifest(args, &oiArgs.common)
    	if err != nil {
    		l.LogAndFatal(err)
    	}
    
    	installerScope.Debugf("Installing operator charts with the following values:\n%s", vals)
    	installerScope.Debugf("Using the following manifest to install operator:\n%s\n", mstr)
    
    	opts := &applyOptions{
    		DryRun: args.DryRun,
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/async_op_thread.mlir

    // RUN: tfrt_fallback_translate -mlir-to-bef %s | tf_bef_executor --work_queue_type=mstd 2>&1 | FileCheck %s
    
    func.func @test_async_op_kernel_thread() -> !tfrt.chain {
      %ch0 = tfrt.new.chain
    
      %ch1 = tfrt_fallback_async.createop(%ch0) key(0) device("/CPU:0") "tf.Const"()
             { dtype = i32, value = dense<[2]> : tensor<1xi32> } num_args(0)
      %ch2 = tfrt_fallback_async.createop(%ch1) key(1) device("/CPU:0")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 18 22:58:56 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. 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)
  9. src/go/internal/gccgoimporter/testdata/time.gox

    const RFC1123 = "Mon, 02 Jan 2006 15:04:05 MST";
    const RFC1123Z = "Mon, 02 Jan 2006 15:04:05 -0700";
    const RFC3339 = "2006-01-02T15:04:05Z07:00";
    const RFC3339Nano = "2006-01-02T15:04:05.999999999Z07:00";
    const RFC822 = "02 Jan 06 15:04 MST";
    const RFC822Z = "02 Jan 06 15:04 -0700";
    const RFC850 = "Monday, 02-Jan-06 15:04:05 MST";
    const RubyDate = "Mon Jan 02 15:04:05 -0700 2006";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batching_fallback.mlir

    // RUN: tfrt_fallback_translate --mlir-to-bef %s | tf_bef_executor --work_queue_type=mstd:1,1 | FileCheck %s
    // RUN: tfrt_fallback_translate --mlir-to-bef %s | tf_bef_executor --work_queue_type=mstd:8 | FileCheck %s
    
    func.func @matmul_cpu(%ch: !tfrt.chain, %a: !tfrt_fallback.tf_tensor, %b: !tfrt_fallback.tf_tensor) -> (!tfrt.chain, !tfrt_fallback.tf_tensor) {
      // Enqueue a sleep onto blocking work queue, %ch0 is fulfilled when sleeping is done.
      %us = tfrt.constant.i32 1000
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 18 22:58:56 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top