Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,549 for operator_ (0.24 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/src/operators/headers/operators.h

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 49 bytes
    - Viewed (0)
  2. releasenotes/notes/operator-max-concurrent-reconcile-40810.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - https://github.com/istio/istio/issues/40827
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 28 05:00:12 UTC 2022
    - 211 bytes
    - Viewed (0)
  3. src/go/token/token.go

    // Non-operators have lowest precedence, followed by operators
    // starting with precedence 1 up to unary operators. The highest
    // precedence serves as "catch-all" precedence for selector,
    // indexing, and other operator and delimiter tokens.
    const (
    	LowestPrec  = 0 // non-operators
    	UnaryPrec   = 6
    	HighestPrec = 7
    )
    
    // Precedence returns the operator precedence of the binary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. tests/integration/operator/operator_dumper.go

    	ns := d.ns
    	if len(ns) < 1 {
    		ns = "istio-operator"
    	}
    
    	dir, err := ctx.CreateTmpDirectory("istio-operator-" + d.ID().String())
    	if err != nil {
    		scopes.Framework.Errorf("Unable to create directory for dumping operator contents: %v", err)
    		return
    	}
    	kube.DumpPods(ctx, dir, ns, []string{"name=istio-operator"})
    }
    
    func (d *operatorDumper) ID() resource.ID {
    	return &operatorID{d.rev}
    }
    
    type operatorID struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      ParamIterator& operator=(const ParamIterator& other) {
        if (this != &other)
          impl_.reset(other.impl_->Clone());
        return *this;
      }
    
      const T& operator*() const { return *impl_->Current(); }
      const T* operator->() const { return impl_->Current(); }
      // Prefix version of operator++.
      ParamIterator& operator++() {
        impl_->Advance();
        return *this;
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  6. manifests/charts/istio-operator/crds/crd-operator.yaml

    John Howard <******@****.***> 1616816301 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 27 03:38:21 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  7. istioctl/pkg/kubeinject/testdata/istio-operator.yaml

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 689 bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      ParamIterator& operator=(const ParamIterator& other) {
        if (this != &other)
          impl_.reset(other.impl_->Clone());
        return *this;
      }
    
      const T& operator*() const { return *impl_->Current(); }
      const T* operator->() const { return impl_->Current(); }
      // Prefix version of operator++.
      ParamIterator& operator++() {
        impl_->Advance();
        return *this;
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      }
    
      absl::flat_hash_set<const tflite::OperatorT*> pruned_subgraph_ops;
      if (experimental_prune_unreachable_nodes_unconditionally) {
        TF_ASSIGN_OR_RETURN(pruned_subgraph_ops,
                            PruneSubgraph(subgraph, func_inputs, func_outputs));
      }
    
      // Construct MLIR operators from TFLite operators
      for (const auto& it : llvm::enumerate(subgraph.operators)) {
        auto& op = it.value();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/README.md

    To generate additional operators, extend the lists in this script. Note that
    category names correspond to generated source file names, and should be
    consistent with the original source files registering each operator. For example
    since `REGISTER_OP("MatMul")` appears in ***core/math_ops.cc***, the "MatMul"
    operator in the script should be in the "math" category, and it will be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 17:21:01 UTC 2021
    - 993 bytes
    - Viewed (0)
Back to top