Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 137 for index (0.07 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    quote }} {{- end }} service.istio.io/canonical-name: {{ index .ObjectMeta.Labels `service.istio.io/canonical-name` | default (index .ObjectMeta.Labels `app.kubernetes.io/name`) | default (index .ObjectMeta.Labels `app`) | default .DeploymentMeta.Name | quote }} service.istio.io/canonical-revision: {{ index .ObjectMeta.Labels `service.istio.io/canonical-revision` | default (index .ObjectMeta.Labels `app.kubernetes.io/version`) | default (index .ObjectMeta.Labels `version`) | default "latest" | quote...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/checkstyle_plugin.adoc

    // limitations under the License.
    
    [[checkstyle_plugin]]
    = The Checkstyle Plugin
    
    The Checkstyle plugin performs quality checks on your project's Java source files using https://checkstyle.org/index.html[Checkstyle] and generates reports from these checks.
    
    [[sec:checkstyle_usage]]
    == Usage
    
    To use the Checkstyle plugin, include the following in your build script:
    
    .Using the Checkstyle plugin
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 16:44:32 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    In Maven repositories, changing versions are commonly referred to as link:https://maven.apache.org/guides/getting-started/index.html#what-is-a-snapshot-version[snapshot versions].
    Snapshot versions contain the suffix `-SNAPSHOT`.
    The following example demonstrates how to declare a snapshot version on the Spring dependency.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. build/pause/Makefile

    all-container-docker: $(addprefix sub-container-docker-,$(ALL_OS_ARCH.linux))
    all-container-registry: $(addprefix sub-container-registry-,$(ALL_OS_ARCH))
    
    # split words on hyphen, access by 1-index
    word-hyphen = $(word $2,$(subst -, ,$1))
    sub-container-%:
    	$(MAKE) OUTPUT_TYPE=$(call word-hyphen,$*,1) OS=$(call word-hyphen,$*,2) ARCH=$(call word-hyphen,$*,3) OSVERSION=$(call word-hyphen,$*,4) container
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    - In the Kotlin DSL, the `Settings` object documentation is found link:{kotlinDslPath}/gradle/org.gradle.api.initialization/-settings/index.html[here].
    
    Many top-level properties and blocks in a settings script are part of the Settings API.
    
    For example, we can set the root project name in the settings script using the `Settings.rootProject` property:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/jacoco_plugin.adoc

    ----
    .
    └── build
        ├── jacoco
        │   └── run.exec
        └── reports
            └── jacoco
                └── applicationCodeCoverageReport
                    └── html
                        └── index.html
    
    ----
    
    
    [[sec:jacoco_tasks]]
    == Tasks
    
    For projects that also apply the Java Plugin, the JaCoCo plugin automatically adds the following tasks:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. cluster/images/etcd/Makefile

    		--build-arg RUNNERIMAGE=$(RUNNERIMAGE) \
    		-f $(TEMP_DIR)/$(DOCKERFILE) \
    		$(TEMP_DIR)
    	docker buildx rm $$BUILDER
    
    push: build
    
    # split words on hyphen, access by 1-index
    word-hyphen = $(word $2,$(subst -, ,$1))
    
    sub-build-%:
    	$(MAKE) OUTPUT_TYPE=docker OS=$(call word-hyphen,$*,1) ARCH=$(call word-hyphen,$*,2) build
    
    all-build: $(addprefix sub-build-,$(ALL_OS_ARCH))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top