Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 88 for index (0.05 sec)

  1. src/internal/bytealg/compare_386.s

    	PMOVMSKB X1, BX
    	XORL	$0xffff, BX	// convert EQ to NE
    	JNE	diff16	// branch if at least one byte is not equal
    	ADDL	$16, SI
    	ADDL	$16, DI
    	SUBL	$16, BP
    	JMP	largeloop
    
    diff16:
    	BSFL	BX, BX	// index of first byte that differs
    	XORL	DX, DX
    	MOVB	(SI)(BX*1), CX
    	CMPB	CX, (DI)(BX*1)
    	SETHI	DX
    	LEAL	-1(DX*2), DX	// convert 1/0 to +1/-1
    	MOVL	DX, (AX)
    	RET
    
    mediumloop:
    	CMPL	BP, $4
    	JBE	_0through4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 23 21:22:58 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inputs/custom-template.yaml.40.values.gen.yaml

    annotations:\n    # Disable the built-in transformations. In the future we may want a template-level API\n    prometheus.istio.io/merge-metrics: \"false\"\n    sidecar.istio.io/rewriteAppHTTPProbers: \"false\"\n    foo: bar\nspec:\n  containers:\n  {{- range $index, $container := .Spec.Containers }}\n  - name: {{ $container.Name }}\n    env:\n    - name: SOME_ENV\n      value: \"true\"\n    - name: SOME_FILE\n      value: /var/lib/data/foo.json\n    volumeMounts:\n    - mountPath: /var/lib/data/foo.json\n   ...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/searchResults.jsp

    	<ol class="list-unstyled col-md-8">
    		<c:forEach var="doc" varStatus="s" items="${documentItems}">
    			<li id="result${s.index}">
    				<h3 class="title text-truncate">
    					<a class="link" href="${doc.url_link}" data-uri="${doc.url_link}"
    						data-id="${doc.doc_id}" data-order="${s.index}">${doc.content_title}</a>
    				</h3>
    				<div class="body">
    					<c:if test="${thumbnailSupport && !empty doc.thumbnail}">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jun 09 04:29:42 UTC 2022
    - 9K bytes
    - Viewed (0)
  4. src/internal/bytealg/compare_amd64.s

    diff64:
    	ADDQ	$48, SI
    	ADDQ	$48, DI
    	JMP	diff16
    diff48:
    	ADDQ	$32, SI
    	ADDQ	$32, DI
    	JMP	diff16
    diff32:
    	ADDQ	$16, SI
    	ADDQ	$16, DI
    	// AX = bit mask of differences
    diff16:
    	BSFQ	AX, BX	// index of first byte that differs
    	XORQ	AX, AX
    	MOVB	(SI)(BX*1), CX
    	CMPB	CX, (DI)(BX*1)
    	SETHI	AX
    	LEAQ	-1(AX*2), AX	// convert 1/0 to +1/-1
    	RET
    
    	// 0 through 16 bytes left, alen>=8, blen>=8
    _0through16:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 17:17:01 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-ingress/templates/serviceaccount.yaml

    {{ $gateway := index .Values "gateways" "istio-ingressgateway" }}
    apiVersion: v1
    kind: ServiceAccount
    {{- if .Values.global.imagePullSecrets }}
    imagePullSecrets:
    {{- range .Values.global.imagePullSecrets }}
      - name: {{ . }}
    {{- end }}
    {{- end }}
    metadata:
      name: {{ $gateway.name }}-service-account
      namespace: {{ .Release.Namespace }}
      labels:
    {{ $gateway.labels | toYaml | trim | indent 4 }}
        release: {{ .Release.Name }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 752 bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-ingress/templates/autoscale.yaml

    {{ $gateway := index .Values "gateways" "istio-ingressgateway" }}
    {{- if and $gateway.autoscaleEnabled $gateway.autoscaleMin $gateway.autoscaleMax }}
    apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
      name: {{ $gateway.name }}
      namespace: {{ .Release.Namespace }}
      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 951 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/overview/quick_start.adoc

    <<partr1_gradle_init#part1_begin,-> Start the Tutorial >>
    
    [[reference]]
    === 3. API Reference
    
    Gradle's API references can be found in the links below:
    
    - link:{javadocPath}/index.html[Javadocs^]
    - link:{groovyDslPath}/index.html[Groovy DSL Reference^]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:58:37 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/settings_file_basics.adoc

    [[sec:settings_file_script]]
    == Settings script
    
    The settings file is a script.
    It is either a `settings.gradle` file written in Groovy or a `settings.gradle.kts` file in Kotlin.
    
    The link:{groovyDslPath}/index.html[Groovy DSL^] and the link:{kotlinDslPath}/index.html[Kotlin DSL^] are the only accepted languages for Gradle scripts.
    
    The settings file is typically found in the root directory of the project.
    
    Let's take a look at an example and break it down:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/kube/templates/deployment.yaml

    {{- end}}
    {{- if ne $.ImagePullSecretName "" }}
          imagePullSecrets:
          - name: {{ $.ImagePullSecretName }}
    {{- end }}
          containers:
    {{- if and
      (ne (index $subset.Annotations "sidecar.istio.io/inject") "false")
      (ne (index $subset.Annotations "inject.istio.io/templates") "grpc")
      ($.OverlayIstioProxy)
    }}
          - name: istio-proxy
            image: auto
            imagePullPolicy: {{ $.ImagePullPolicy }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/orig/view/search.jsp

    						<c:forEach var="item" varStatus="s" items="${popularWords}">
    							<c:if test="${s.index < 3}">
    								<la:link
    									href="/search?q=${f:u(item)}${fe:facetQuery()}${fe:geoQuery()}">${f:h(item)}</la:link>
    							</c:if>
    							<c:if test="${3 <= s.index}">
    								<la:link styleClass="d-none d-sm-inline"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top