Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,902 for erator (0.26 sec)

  1. tensorflow/compiler/mlir/lite/converter_gen.cc

      OpConv,
      RuntimeVerify,
    };
    
    // NOLINTNEXTLINE
    llvm::cl::opt<ActionType> action(
        llvm::cl::desc("Action to perform:"),
        llvm::cl::values(clEnumValN(OpConv, "gen-operator-converters",
                                    "Generate operator converters"),
                         clEnumValN(RuntimeVerify, "gen-runtime-verifiers",
                                    "Generate TFLite runtime verifiers")));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        setUp(parameters.first, parameters.second)
        var creator = cache.edit("k1")!!
        creator.setString(0, "ABC")
        creator.setString(1, "DE")
        creator.commit()
        cache.flush()
        filesystem.copy(journalFile, journalBkpFile)
        creator = cache.edit("k2")!!
        creator.setString(0, "F")
        creator.setString(1, "GH")
        creator.commit()
        cache.close()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. operator/cmd/mesh/operator-init.go

    	"strings"
    
    	"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/name"
    	"istio.io/istio/operator/pkg/translate"
    	operatorutil "istio.io/istio/operator/pkg/util"
    	"istio.io/istio/operator/pkg/util/clog"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/labels"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/operator/output/operator-dump.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.4K bytes
    - Viewed (0)
Back to top