Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for openhft (0.19 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. manifests/charts/gateways/istio-ingress/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)
  9. src/cmd/vendor/golang.org/x/sys/unix/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
    	}
    	defer closedir(d)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  10. src/syscall/syscall_linux.go

    }
    
    func Open(path string, mode int, perm uint32) (fd int, err error) {
    	return openat(_AT_FDCWD, path, mode|O_LARGEFILE, perm)
    }
    
    //sys	openat(dirfd int, path string, flags int, mode uint32) (fd int, err error)
    
    func Openat(dirfd int, path string, flags int, mode uint32) (fd int, err error) {
    	return openat(dirfd, path, flags|O_LARGEFILE, mode)
    }
    
    func Pipe(p []int) error {
    	return Pipe2(p, 0)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top