Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for pstq (0.16 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64_p10.s

    	PSTB R1, $1, 12345678(R2)               // 061000bc9822614e
    	PSTD R1, $1, 12345678(R2)               // 041000bcf422614e
    	PSTFD F1, $1, 12345678(R2)              // 061000bcd822614e
    	PSTFS F1, $1, 123456789(R7)             // 0610075bd027cd15
    	PSTH R1, $1, 12345678(R2)               // 061000bcb022614e
    	PSTQ R2, $1, 12345678(R2)               // 041000bcf042614e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9_gtables.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 20:18:50 UTC 2022
    - 42.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	PMXVI8GER4PP:   "pmxvi8ger4pp",
    	PMXVI8GER4SPP:  "pmxvi8ger4spp",
    	PNOP:           "pnop",
    	PSTB:           "pstb",
    	PSTD:           "pstd",
    	PSTFD:          "pstfd",
    	PSTFS:          "pstfs",
    	PSTH:           "psth",
    	PSTQ:           "pstq",
    	PSTW:           "pstw",
    	PSTXSD:         "pstxsd",
    	PSTXSSP:        "pstxssp",
    	PSTXV:          "pstxv",
    	PSTXVP:         "pstxvp",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  4. operator/pkg/validate/validate_values.go

    }
    
    // ValuesValidate validates the values of the tree using the supplied Func
    func ValuesValidate(validations map[string]ValidatorFunc, node any, path util.Path) (errs util.Errors) {
    	pstr := path.String()
    	scope.Debugf("ValuesValidate %s", pstr)
    	vf := validations[pstr]
    	if vf != nil {
    		errs = util.AppendErrs(errs, vf(path, node))
    	}
    
    	nn, ok := node.(map[string]any)
    	if !ok {
    		// Leaf, nothing more to recurse.
    		return errs
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. operator/pkg/validate/validate.go

    	pstr := path.String()
    	msg := fmt.Sprintf("validate %s:%v(%T) ", pstr, val, val)
    	if util.IsValueNil(val) || util.IsEmptyString(val) {
    		if checkRequired && requiredValues[pstr] {
    			return util.NewErrs(fmt.Errorf("field %s is required but not set", util.ToYAMLPathString(pstr)))
    		}
    		msg += fmt.Sprintf("validate %s: OK (empty value)", pstr)
    		scope.Debug(msg)
    		return nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 12 16:04:15 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions_with_quantization_specs.mlir

    // STATIC-RANGE-PTQ-TO-ALL-SAME: _quantization_method = "static_range_ptq { }"
    // STATIC-RANGE-PTQ-TO-ALL-SAME: _tfl_quant_trait = "fully_quantizable"
    
    // STATIC-RANGE-PTQ-TO-ALL: return %[[XLA_CALL_MODULE:.+]] : tensor<1x1x64xf32>
    // STATIC-RANGE-PTQ-TO-ALL: }
    
    // STATIC-RANGE-PTQ-TO-ALL-LABEL: private @composite_dot_general_fn_1
    // STATIC-RANGE-PTQ-TO-ALL-SAME: tf_quant.composite_function
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 18:09:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. src/time/zoneinfo_test.go

    	for _, test := range []struct {
    		in   string
    		name string
    		out  string
    		ok   bool
    	}{
    		{"", "", "", false},
    		{"X", "", "", false},
    		{"PST", "PST", "", true},
    		{"PST8PDT", "PST", "8PDT", true},
    		{"PST-08", "PST", "-08", true},
    		{"<A+B>+08", "A+B", "+08", true},
    	} {
    		name, out, ok := time.TzsetName(test.in)
    		if name != test.name || out != test.out || ok != test.ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 13 17:06:56 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http/HttpDateTest.kt

        assertThat("Thursday, 01-Jan-1970 00:00:00 PST".toHttpDateOrNull()!!.time)
          .isEqualTo(28800000L)
        // Ignore trailing junk
        assertThat("Thursday, 01-Jan-1970 00:00:00 PST JUNK".toHttpDateOrNull()!!.time)
          .isEqualTo(28800000L)
    
        // ANSI C's asctime() format
        // This format ignores the timezone entirely even if it is present and uses GMT.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/passes.h

    enum class TestQuantizationSpecs {
      kEmpty,                         // empty
      kDisableAllDotGeneral,          // disable-all-dot-general
      kStaticRangePtqToAll,           // static-range-ptq-to-all
      kStaticRangePtqToComputeHeavy,  // static-range-ptq-to-compute-heavy
    };
    
    // Adds generated pass default constructors or options definitions.
    #define GEN_PASS_DECL
    // Adds generated pass registration functions.
    #define GEN_PASS_REGISTRATION
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:21:42 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. 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)
Back to top