Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for openhft (0.3 sec)

  1. tests/fuzz/testdata/inject/fuzz_into_resource_file.dict

    "alwaysInjectSelector"
    "injectedAnnotations"
    "kind: CronJob"
    "kind: DaemonSet"
    "kind: Deployment"
    "kind: DeploymentConfig"
    "kind: IstioOperator"
    "kind: List"
    "kind: Service"
    "apiVersion: apps/v1"
    "apiVersion: apps.openshift.io/v1"
    "apiVersion: batch/v2alpha1"
    "apiVersion: install.istio.io/v1alpha1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 09 17:12:53 UTC 2021
    - 377 bytes
    - Viewed (0)
  2. manifests/charts/istio-cni/templates/clusterrole.yaml

        operator.istio.io/component: "Cni"
    rules:
    - apiGroups: [""]
      resources: ["pods","nodes","namespaces"]
      verbs: ["get", "list", "watch"]
    {{- if (eq .Values.platform "openshift") }}
    - apiGroups: ["security.openshift.io"]
      resources: ["securitycontextconstraints"]
      resourceNames: ["privileged"]
      verbs: ["use"]
    {{- end }}
    ---
    {{- if .Values.cni.repair.enabled }}
    apiVersion: rbac.authorization.k8s.io/v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. releasenotes/notes/make-httpbin-work-ocp.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: documentation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 19:08:11 UTC 2023
    - 156 bytes
    - Viewed (0)
  4. manifests/charts/gateway/README.md

    That is, `--set some.field=true` should be passed, not `--set defaults.some.field=true`.
    
    ### OpenShift
    
    When deploying the gateway in an OpenShift cluster, use the `openshift` profile to override the default values, for example:
    
    ```console
    helm install istio-ingressgateway istio/gateway --set profile=openshift
    ```
    
    ### `image: auto` Information
    
    The image used by the chart, `auto`, may be unintuitive.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. releasenotes/notes/fix-chained-cni-helm.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 43632
      - 45034
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 17:12:09 UTC 2023
    - 257 bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/deploymentconfig-multi.yaml

        spec:
          selector:
            app: hello
            tier: frontend
          ports:
            - protocol: "TCP"
              port: 80
              targetPort: 80
          type: LoadBalancer
    
      - apiVersion: apps.openshift.io/v1
        kind: DeploymentConfig
        metadata:
          name: hello
        spec:
          replicas: 7
          template:
            metadata:
              labels:
                app: hello
                tier: backend
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  7. src/debug/macho/fat.go

    			}
    		}
    
    		ff.Arches = append(ff.Arches, fa)
    	}
    
    	return &ff, nil
    }
    
    // OpenFat opens the named file using [os.Open] and prepares it for use as a Mach-O
    // universal binary.
    func OpenFat(name string) (*FatFile, error) {
    	f, err := os.Open(name)
    	if err != nil {
    		return nil, err
    	}
    	ff, err := NewFatFile(f)
    	if err != nil {
    		f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/server_test.go

    	}, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	var sniCerts []SNICertKeyContentProvider
    	certSpecs := []testCertSpec{
    		{
    			host:  "172.30.0.1",
    			ips:   []string{"172.30.0.1"},
    			names: []string{"openshift", "openshift.default.svc.cluster.local"},
    		},
    		{
    			host:  "127.0.0.1",
    			ips:   []string{"127.0.0.1"},
    			names: []string{"localhost"},
    		},
    		{
    			host:  "2001:abcd:bcda::1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 18:29:15 UTC 2021
    - 6K bytes
    - Viewed (0)
  9. pkg/registry/rbac/validation/policy_compact_test.go

    				{Verbs: []string{"list"}, APIGroups: []string{"", "builds.openshift.io"}, Resources: []string{"builds"}},
    			},
    			Expected: []rbacv1.PolicyRule{
    				{Verbs: []string{"get"}, APIGroups: []string{"", "builds.openshift.io"}, Resources: []string{"builds"}},
    				{Verbs: []string{"list"}, APIGroups: []string{"", "builds.openshift.io"}, Resources: []string{"builds"}},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 02 16:51:16 UTC 2020
    - 9.5K bytes
    - Viewed (0)
  10. src/syscall/linkname_openbsd.go

    // license that can be found in the LICENSE file.
    
    //go:build openbsd && !mips64
    
    package syscall
    
    import _ "unsafe"
    
    // used by internal/syscall/unix
    //go:linkname unlinkat
    //go:linkname openat
    //go:linkname fstatat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 351 bytes
    - Viewed (0)
Back to top