Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 431 for rev (0.02 sec)

  1. src/internal/bytealg/compare_arm64.s

    	MOVD.P	8(R0), R4
    	MOVD.P	8(R2), R5
    	CMP	R4, R5
    	BNE	cmp
    	SUB	$8, R6
    	// compare last 8 bytes
    tail:
    	MOVD	(R0)(R6), R4
    	MOVD	(R2)(R6), R5
    	CMP	R4, R5
    	BEQ	samebytes
    cmp:
    	REV	R4, R4
    	REV	R5, R5
    	CMP	R4, R5
    ret:
    	MOVD	$1, R0
    	CNEG	HI, R0, R0
    	RET
    small:
    	TBZ	$3, R6, lt_8
    	MOVD	(R0), R4
    	MOVD	(R2), R5
    	CMP	R4, R5
    	BNE	cmp
    	SUBS	$8, R6
    	BEQ	samebytes
    	ADD	$8, R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  2. manifests/charts/ztunnel/templates/rbac.yaml

    ---
    {{- if (eq .Values.platform "openshift") }}
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      name: ztunnel
      labels:
        app: ztunnel
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
    rules:
    - apiGroups: ["security.openshift.io"]
      resources: ["securitycontextconstraints"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 04 01:17:57 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/autoscaling_ingress_v2.golden.yaml

    apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
      labels:
        app: istio-ingressgateway
        install.operator.istio.io/owning-resource: unknown
        istio: ingressgateway
        istio.io/rev: default
        operator.istio.io/component: IngressGateways
        release: istio
      name: istio-ingressgateway
      namespace: istio-system
    spec:
      maxReplicas: 5
      metrics:
      - resource:
          name: cpu
          target:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/templates/poddisruptionbudget.yaml

    apiVersion: policy/v1
    kind: PodDisruptionBudget
    metadata:
      name: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      labels:
        app: istiod
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Pilot"
        release: {{ .Release.Name }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 749 bytes
    - Viewed (0)
  5. istioctl/pkg/checkinject/testdata/check-inject/never-match-injector.yaml

    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
      labels:
        app: sidecar-injector
        install.operator.istio.io/owning-resource-namespace: istio-system
        istio.io/rev: default
        operator.istio.io/component: Pilot
        operator.istio.io/managed: Reconcile
        operator.istio.io/version: 1.15.1
        release: istio
      name: istio-sidecar-injector-deactivated
    webhooks:
      - admissionReviewVersions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishMultipleRepositoriesIntegTest.groovy

        String moduleName = "publish"
        String org = "org.gradle"
        String rev = "2"
    
        IvyFileRepository repo1 = new IvyFileRepository(file("repo1"))
        IvyModule repo1Module = repo1.module(org, moduleName, rev)
    
        IvyFileRepository repo2 = new IvyFileRepository(file("repo2"))
        IvyModule repo2Module = repo2.module(org, moduleName, rev)
    
        def "can publish to different repositories"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/test/kotlin/gradlebuild/performance/tasks/DetermineBaselinesTest.kt

        }
    
        @Test
        fun `resolves to current commit in worker build`() {
            // given
            mockGitOperation(listOf("git", "rev-parse", "HEAD"), "current")
            mockGitOperation(listOf("git", "show", "current:version.txt"), "5.0")
            mockGitOperation(listOf("git", "rev-parse", "--short", "current"), "current")
    
            // then
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 09:29:24 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. manifests/charts/istio-cni/templates/clusterrole.yaml

    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      name: {{ template "name" . }}
      labels:
        app: {{ template "name" . }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Cni"
    rules:
    - apiGroups: [""]
      resources: ["pods","nodes","namespaces"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/templates/service.yaml

      namespace: {{ .Release.Namespace }}
      {{- if .Values.pilot.serviceAnnotations }}
      annotations:
    {{ toYaml .Values.pilot.serviceAnnotations | indent 4 }}
      {{- end }}
      labels:
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Pilot"
        app: istiod
        istio: pilot
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. tests/integration/pilot/gateway_conformance_test.go

    					Contact:      []string{"@istio/maintainers"},
    				},
    				TimeoutConfig: ctx.Settings().GatewayConformanceTimeoutConfig,
    			}
    			if rev := ctx.Settings().Revisions.Default(); rev != "" {
    				opts.NamespaceLabels = map[string]string{
    					"istio.io/rev": rev,
    				}
    			} else {
    				opts.NamespaceLabels = map[string]string{
    					"istio-injection": "enabled",
    				}
    			}
    			ctx.Cleanup(func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 15:22:47 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top