Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for mypair (0.15 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    	{AFLDPQ, C_NAUTO4K, C_NONE, C_NONE, C_PAIR, C_NONE, 74, 8, REGSP, 0, 0},
    	{AFLDPQ, C_LAUTO, C_NONE, C_NONE, C_PAIR, C_NONE, 75, 12, REGSP, 0, 0},
    	{AFLDPQ, C_LAUTOPOOL, C_NONE, C_NONE, C_PAIR, C_NONE, 75, 12, REGSP, LFROM, 0},
    	{AFLDPQ, C_NQOREG_16, C_NONE, C_NONE, C_PAIR, C_NONE, 66, 4, 0, 0, 0},
    	{AFLDPQ, C_NQOREG_16, C_NONE, C_NONE, C_PAIR, C_NONE, 66, 4, 0, 0, C_XPRE},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    std::optional<xla::Window> InferWindowFromDimensions(
        llvm::SmallVector<int64_t> window_dimensions,
        llvm::SmallVector<int64_t> window_strides,
        llvm::SmallVector<std::pair<int64_t, int64_t>> padding,
        llvm::SmallVector<int64_t> lhs_dilation,
        llvm::SmallVector<int64_t> rhs_dilation) {
      const auto verify_size = [&](const size_t x, const char* x_name) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    apiGroup: rbac.authorization.k8s.io kind: ClusterRole name: istio-cni subjects: - kind: ServiceAccount name: istio-cni namespace: {{ .Release.Namespace }} --- {{- if .Values.cni.repair.enabled }} apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: name: istio-cni-repair-rolebinding labels: k8s-app: istio-cni-repair istio.io/rev: {{ .Values.revision | default "default" }} install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }} operator.istio.io/component:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    	a int
    	b float64
    	c string
    	d *int
    }
    
    var _ = T{} == T{} // tests depend on T being comparable
    
    type pair struct {
    	i any
    	s string
    }
    
    func assert(t *testing.T, s, want string) {
    	if s != want {
    		t.Errorf("have %#q want %#q", s, want)
    	}
    }
    
    var typeTests = []pair{
    	{struct{ x int }{}, "int"},
    	{struct{ x int8 }{}, "int8"},
    	{struct{ x int16 }{}, "int16"},
    	{struct{ x int32 }{}, "int32"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    reliance
    
    // ren : 2013-12-12 ZDNS International Limited
    ren
    
    // rent : 2014-12-04 XYZ.COM LLC
    rent
    
    // rentals : 2013-12-05 Binky Moon, LLC
    rentals
    
    // repair : 2013-11-07 Binky Moon, LLC
    repair
    
    // report : 2013-12-05 Binky Moon, LLC
    report
    
    // republican : 2014-03-20 Dog Beach, LLC
    republican
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

             create_location(node.name(), function_name_for_debug_info_)});
      };
    
      // For NextIteration nodes, location is used to pair source and sink nodes.
      // Hence, we use node name as location to keep it unique.
      // TODO(prakalps): In future the plan is to use tokens to pair source/sink
      // nodes. Then NextIteration nodes would not need to be handled separately.
      if (node.type_string() == "NextIteration") {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KaFirDiagnostic.Unsupported
    
    internal class UnsupportedFeatureImpl(
        override val unsupportedFeature: Pair<LanguageFeature, LanguageVersionSettings>,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KaFirDiagnostic.UnsupportedFeature
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    <pre class="grammar">
    "var" IdentifierList = ExpressionList .
    </pre>
    
    <pre>
    i, j := 0, 10
    f := func() int { return 7 }
    ch := make(chan int)
    r, w, _ := os.Pipe()  // os.Pipe() returns a connected pair of Files and an error, if any
    _, y, _ := coord(p)   // coord() returns three values; only interested in y coordinate
    </pre>
    
    <p>
    Unlike regular variable declarations, a short variable declaration may <i>redeclare</i>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top