Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for index (0.09 sec)

  1. manifests/charts/gateways/istio-egress/templates/deployment.yaml

            heritage: Tiller
            release: istio
            chart: gateways
    {{- end }}
            service.istio.io/canonical-name: {{ $gateway.name }}
            service.istio.io/canonical-revision: {{ index $gateway.labels "app.kubernetes.io/version" | default (index $gateway.labels "version") | default .Values.revision | default "latest" | quote }}
            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
    - 12.1K bytes
    - Viewed (0)
  2. src/crypto/sha256/sha256block_amd64.s

    // H7 = h + H7
    
    // Wt = Mt; for 0 <= t <= 15
    #define MSGSCHEDULE0(index) \
    	MOVL	(index*4)(SI), AX; \
    	BSWAPL	AX; \
    	MOVL	AX, (index*4)(BP)
    
    // Wt = SIGMA1(Wt-2) + Wt-7 + SIGMA0(Wt-15) + Wt-16; for 16 <= t <= 63
    //   SIGMA0(x) = ROTR(7,x) XOR ROTR(18,x) XOR SHR(3,x)
    //   SIGMA1(x) = ROTR(17,x) XOR ROTR(19,x) XOR SHR(10,x)
    #define MSGSCHEDULE1(index) \
    	MOVL	((index-2)*4)(BP), AX; \
    	MOVL	AX, CX; \
    	RORL	$17, AX; \
    	MOVL	CX, DX; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

                fieldRef:
                  fieldPath: spec.nodeName
            - name: ISTIO_META_INTERCEPTION_MODE
              value: "{{ .ProxyConfig.InterceptionMode.String }}"
            {{- with (valueOrDefault  (index .InfrastructureLabels "topology.istio.io/network") .Values.global.network) }}
            - name: ISTIO_META_NETWORK
              value: {{.|quote}}
            {{- end }}
            - name: ISTIO_META_WORKLOAD_NAME
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/files/waypoint.yaml

                  resource: limits.cpu
            - name: ISTIO_META_CLUSTER_ID
              value: "{{ valueOrDefault .Values.global.multiCluster.clusterName `Kubernetes` }}"
            {{- $network := valueOrDefault (index .InfrastructureLabels `topology.istio.io/network`) .Values.global.network }}
            {{- if $network }}
            - name: ISTIO_META_NETWORK
              value: "{{ $network }}"
            {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    Specifics of the different plugins are available in their dedicated documentation.
    ====
    
    TIP: There are a number of hands-on samples that you can explore for link:../samples/index.html#java[Java], link:../samples/index.html#groovy[Groovy], link:../samples/index.html#scala[Scala] and link:../samples/index.html#kotlin[Kotlin].
    
    == Introduction
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    * `gradle init --type java-application --test-framework spock`: Uses https://spockframework.org[Spock] for testing instead of JUnit 4
    * `gradle init --type java-application --test-framework testng`: Uses https://testng.org/doc/index.html[TestNG] for testing instead of JUnit 4
    
    
    [[sec:java_version_option]]
    ==== The `--java-version` option
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr5_build_scripts.adoc

            implementationClass = "license.LicensePlugin"
        }
    }
    
    // Additional lines //
    ----
    <1> Use the `plugins{}` block from link:{kotlinDslPath}/gradle/org.gradle.kotlin.dsl/-kotlin-settings-script/index.html[KotlinSettingsScript] in the Kotlin DSL
    <2> Apply the Java Gradle plugin development plugin to add support for developing Gradle plugins
    <3> Apply the Kotlin JVM plugin to add support for Kotlin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. src/math/big/arith_ppc64x.s

    	MOVD  z+0(FP), R10      // R10 = z[]
    
    	// If z_len = 0, we are done
    	CMP   R7, $0
    	MOVD  R0, R4
    	BEQ   done
    
    	// Process the first iteration out of the loop so we can
    	// use MOVDU and avoid 3 index registers updates.
    	MOVD  0(R8), R11      // R11 = x[i]
    	MOVD  0(R9), R12      // R12 = y[i]
    	ADD   $-1, R7         // R7 = z_len - 1
    	ADDC  R12, R11, R15   // R15 = x[i] + y[i], set CA
    	CMP   R7, $0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  9. src/hash/crc32/crc32_ppc64le.s

    	MOVD    p+8(FP), R4
    	MOVD    p_len+16(FP), R5 // p len
    
    	// R3 = incoming crc
    	// R14 = constant table identifier
    	// R5 = address of bytes
    	// R6 = length of bytes
    
    	// defines for index loads
    
    	MOVD	$16,off16
    	MOVD	$32,off32
    	MOVD	$48,off48
    	MOVD	$64,off64
    	MOVD	$80,off80
    	MOVD	$96,off96
    	MOVD	$112,off112
    	MOVD	$0,R15
    
    	MOVD	R3,R10	// save initial crc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    - In the Groovy DSL, the `Project` object documentation is found link:{groovyDslPath}/org.gradle.api.Project.html[here].
    - In the Kotlin DSL, the `Project` object documentation is found link:{kotlinDslPath}/gradle/org.gradle.api/-project/index.html[here].
    
    Many top-level properties and blocks in a build script are part of the Project API.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top