Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,549 for operator_ (0.17 sec)

  1. tensorflow/compiler/mlir/lite/metrics/types_util.h

          hash_result ^= std::hash<int>{}(v.error_code()) << 2;
        }
        if (v.has_operator_() && v.operator_().has_name()) {
          hash_result ^= std::hash<std::string>{}(v.operator_().name()) << 3;
        }
        return hash_result;
      }
    };
    
    // The comparison function for ConverterErrorData.
    struct ConverterErrorDataComparison {
      std::size_t operator()(
          const tflite::metrics::ConverterErrorData& a,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 16:09:28 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. operator/cmd/mesh/operator.go

    )
    
    // OperatorCmd is a group of commands related to installation and management of the operator controller.
    func OperatorCmd(ctx cli.Context) *cobra.Command {
    	oc := &cobra.Command{
    		Use:   "operator",
    		Short: "Commands related to Istio operator controller.",
    		Long:  "The operator command installs, dumps, removes and shows the status of the operator controller.",
    	}
    
    	odArgs := &operatorDumpArgs{}
    	oiArgs := &operatorInitArgs{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/selection/operator.go

    limitations under the License.
    */
    
    package selection
    
    // Operator represents a key/field's relationship to value(s).
    // See labels.Requirement and fields.Requirement for more details.
    type Operator string
    
    const (
    	DoesNotExist Operator = "!"
    	Equals       Operator = "="
    	DoubleEquals Operator = "=="
    	In           Operator = "in"
    	NotEquals    Operator = "!="
    	NotIn        Operator = "notin"
    	Exists       Operator = "exists"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 1K bytes
    - Viewed (0)
  4. operator/docker/Dockerfile.operator

    # hadolint ignore=DL3006
    FROM ${BASE_DISTRIBUTION:-debug}
    
    # install operator binary
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/operator /usr/local/bin/operator
    
    # add operator manifests
    COPY manifests/ /var/lib/istio/manifests/
    
    USER 1337:1337
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 900 bytes
    - Viewed (0)
  5. architecture/environments/operator.md

    [proto](https://github.com/istio/api/blob/master/operator/v1alpha1/operator.proto) and
    compiled to [Go
    structs](https://github.com/istio/api/blob/master/operator/v1alpha1/operator.pb.go).
    `IstioOperatorSpec` has pass-through fields to the Helm values.yaml API, but these are additionally validated through
    a [schema](../operator/pkg/apis/istio/v1alpha1/values_types.proto).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/operator/output/operator-remove.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      namespace: operator-test-namespace
      name: istio-operator
    spec:
      replicas: 1
      selector:
        matchLabels:
          name: istio-operator
      template:
        metadata:
          labels:
            name: istio-operator
        spec:
          serviceAccountName: istio-operator
          containers:
            - name: istio-operator
              image: foo.io/istio/operator:1.2.3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 21 01:45:21 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  7. operator/cmd/mesh/operator-remove.go

    	"os"
    
    	"github.com/fatih/color"
    	"github.com/spf13/cobra"
    
    	"istio.io/api/operator/v1alpha1"
    	"istio.io/istio/istioctl/pkg/cli"
    	iopv1alpha1 "istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/operator/pkg/helmreconciler"
    	"istio.io/istio/operator/pkg/name"
    	"istio.io/istio/operator/pkg/translate"
    	"istio.io/istio/operator/pkg/util/clog"
    	"istio.io/istio/pkg/kube"
    )
    
    type operatorRemoveArgs struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/cache2/FileOperatorTest.kt

        val buffer = Buffer()
        operator.read(6, buffer, 21)
        operator.read(36, buffer, 1)
        operator.read(5, buffer, 5)
        operator.read(28, buffer, 8)
        operator.read(17, buffer, 10)
        operator.read(36, buffer, 2)
        operator.read(2, buffer, 4)
        operator.write(0, buffer, buffer.size)
        operator.read(0, buffer, 12)
        operator.read(47, buffer, 3)
        operator.read(45, buffer, 2)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/operator/output/operator-init.yaml

    metadata:
      name: istio-operator
    subjects:
    - kind: ServiceAccount
      name: istio-operator
      namespace: operator-test-namespace
    roleRef:
      kind: ClusterRole
      name: istio-operator
      apiGroup: rbac.authorization.k8s.io
    ---
    
    
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      namespace: operator-test-namespace
      name: istio-operator
    spec:
      replicas: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. operator/cmd/mesh/operator-common.go

    	"istio.io/istio/operator/pkg/helm"
    	"istio.io/istio/operator/pkg/name"
    	"istio.io/istio/operator/pkg/util"
    )
    
    type operatorCommonArgs struct {
    	// hub is the hub for the operator image.
    	hub string
    	// tag is the tag for the operator image.
    	tag string
    	// imagePullSecrets is an array of imagePullSecret to pull operator image from the private registry
    	imagePullSecrets []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 17 02:25:04 UTC 2022
    - 3.8K bytes
    - Viewed (0)
Back to top