Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 175 for openhft (0.36 sec)

  1. samples/addons/kiali.yaml

      - get
      - list
      - watch
      - create
      - delete
      - patch
    - apiGroups: ["apps.openshift.io"]
      resources:
      - deploymentconfigs
      verbs:
      - get
      - list
      - watch
      - patch
    - apiGroups: ["project.openshift.io"]
      resources:
      - projects
      verbs:
      - get
    - apiGroups: ["route.openshift.io"]
      resources:
      - routes
      verbs:
      - get
    - apiGroups: ["authentication.k8s.io"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. src/debug/macho/file_test.go

    	if ff.Magic != MagicFat {
    		t.Errorf("OpenFat: got magic number %#x, want %#x", ff.Magic, MagicFat)
    	}
    	if len(ff.Arches) != 2 {
    		t.Errorf("OpenFat: got %d architectures, want 2", len(ff.Arches))
    	}
    
    	for i := range ff.Arches {
    		arch := &ff.Arches[i]
    		ftArch := &fileTests[i]
    
    		if arch.Cpu != ftArch.hdr.Cpu || arch.SubCpu != ftArch.hdr.SubCpu {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  3. tests/integration/helm/util.go

    // adjustValuesForOpenShift adds the "openshift" or "openshift-ambient" profile to the
    // values if tests are running in OpenShift, and returns the modified values
    func adjustValuesForOpenShift(ctx framework.TestContext, values string) string {
    	if !ctx.Settings().OpenShift {
    		return values
    	}
    
    	if !strings.Contains(values, "profile: ") {
    		values += "\nprofile: openshift\n"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. pkg/volume/util/subpath/subpath_linux.go

    		}
    		// Dive into the created directory
    		childFD, err = syscall.Openat(parentFD, dir, nofollowFlags|unix.O_CLOEXEC, 0)
    		if err != nil {
    			return fmt.Errorf("cannot open %s: %s", currentPath, err)
    		}
    		// We can be sure that childFD is safe to use. It could be changed
    		// by user after Mkdirat() and before Openat(), however:
    		// - it could not be changed to symlink - we use nofollowFlags
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
  5. pkg/test/framework/resource/flags.go

    		"If set, only the standard gateway conformance tests will be run; tests relying on experimental resources will be skipped.")
    
    	flag.BoolVar(&settingsFromCommandLine.OpenShift, "istio.test.openshift", settingsFromCommandLine.OpenShift,
    		"Indicate the tests run in an OpenShift platform rather than in plain Kubernetes.")
    
    	initGatewayConformanceTimeouts()
    }
    
    func initGatewayConformanceTimeouts() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. pkg/apis/rbac/validation/validation.go

    // Minimal validation of names for roles and bindings. Identical to the validation for Openshift. See:
    // * https://github.com/kubernetes/kubernetes/blob/60db507b279ce45bd16ea3db49bf181f2aeb3c3d/pkg/api/validation/name.go
    // * https://github.com/openshift/origin/blob/388478c40e751c4295dcb9a44dd69e5ac65d0e3b/pkg/api/helpers.go
    func ValidateRBACName(name string, prefix bool) []string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:48:21 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  7. src/syscall/syscall_darwin.go

    	// fdopendir expects to take control of its argument.
    	// Just Dup'ing the file descriptor is not enough, as the
    	// result shares underlying state. Use openat to make a really
    	// new file descriptor referring to the same directory.
    	fd2, err := openat(fd, ".", O_RDONLY, 0)
    	if err != nil {
    		return 0, err
    	}
    	d, err := fdopendir(fd2)
    	if err != nil {
    		Close(fd2)
    		return 0, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. pkg/kube/inject/inject_test.go

    		},
    		{
    			// Test injection on OpenShift. Currently kube-inject does not work, only test webhook
    			in:   "hello-openshift.yaml",
    			want: "hello-openshift.yaml.injected",
    			setFlags: []string{
    				"components.cni.enabled=true",
    			},
    			skipInjection: true,
    			setup: func(t test.Failer) {
    				test.SetEnvForTest(t, platform.Platform.Name, platform.OpenShift)
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. pkg/kube/util.go

    				// If the pod is controlled by the replication controller, which is created by the DeploymentConfig resource in
    				// Openshift platform, set the deploy name to the deployment config's name, and the kind to 'DeploymentConfig'.
    				//
    				// nolint: lll
    				// For DeploymentConfig details, refer to
    				// https://docs.openshift.com/container-platform/4.1/applications/deployments/what-deployments-are.html#deployments-and-deploymentconfigs_what-deployments-are
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-egress/templates/deployment.yaml

    {{- if $gateway.podAnnotations }}
    {{ toYaml $gateway.podAnnotations | indent 8 }}
    {{ end }}
        spec:
    {{- if not $gateway.runAsRoot }}
          securityContext:
    {{- if not (eq .Values.global.platform "openshift") }}
            runAsUser: 1337
            runAsGroup: 1337
    {{- end }}
            runAsNonRoot: true
    {{- end }}
          serviceAccountName: {{ $gateway.name }}-service-account
    {{- if .Values.global.priorityClassName }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top