Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 62 for make (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    +
    Gradle makes use of conventions to eliminate much of the boilerplate associated with older builds and to make it easier for users to work with new builds once they are familiar with those conventions.
    But that doesn't mean you have to follow them.
    +
    Gradle provides many configuration options that allow for a good degree of customization.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. cluster/images/etcd/Makefile

    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))
    
    sub-push-image-%:
    	$(MAKE) OUTPUT_TYPE=registry OS=$(call word-hyphen,$*,1) ARCH=$(call word-hyphen,$*,2) OSVERSION=$(call word-hyphen,$*,3) REGISTRY=$(PUSH_REGISTRY) push
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/values.yaml

        remotePilotAddress: ""
    
        ##############################################################################################
        # The following values are found in other charts. To effectively modify these values, make   #
        # make sure they are consistent across your Istio helm charts                                #
        ##############################################################################################
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. src/runtime/race_arm64.s

    	MOVD    runtime·tls_g(SB), R11 \
    	MOVD    (R0)(R11), g
    
    // func runtime·raceread(addr uintptr)
    // Called from instrumented code.
    // Defined as ABIInternal so as to avoid introducing a wrapper,
    // which would make caller's PC ineffective.
    TEXT	runtime·raceread<ABIInternal>(SB), NOSPLIT, $0-8
    	MOVD	R0, R1	// addr
    	MOVD	LR, R2
    	// void __tsan_read(ThreadState *thr, void *addr, void *pc);
    	MOVD	$__tsan_read(SB), R9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-ingress/values.yaml

          logLevel: warning
    
        ##############################################################################################
        # The following values are found in other charts. To effectively modify these values, make   #
        # make sure they are consistent across your Istio helm charts                                #
        ##############################################################################################
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    Some tasks, like link:{groovyDslPath}/org.gradle.api.tasks.Copy.html[Copy] or link:{groovyDslPath}/org.gradle.api.tasks.bundling.Jar.html[Jar], usually do not make sense to make cacheable because Gradle is only copying files from one location to another.
    It also doesn't make sense to make tasks cacheable that do not produce outputs or have no task actions.
    
    [[sec:task_output_caching_cacheable_3rd_party]]
    === Third party plugins
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. src/runtime/asm_mipsx.s

    	BNE	g, R1, 2(PC)
    	JMP	runtime·badmcall(SB)
    	MOVW	fn+0(FP), REGCTXT	// context
    	MOVW	0(REGCTXT), R4	// code pointer
    	MOVW	(g_sched+gobuf_sp)(g), R29	// sp = m->g0->sched.sp
    	ADDU	$-8, R29	// make room for 1 arg and fake LR
    	MOVW	R1, 4(R29)
    	MOVW	R0, 0(R29)
    	JAL	(R4)
    	JMP	runtime·badmcall2(SB)
    
    // systemstack_switch is a dummy routine that systemstack leaves at the bottom
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    Gradle provides a flexible and extensible build model that delegates the actual work to the execution of a graph of tasks.
    Maven uses a model of fixed, linear phases to which you can attach goals (the things that do the work).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    :plugin-reference-documentation: https://plugins.gradle.org/docs/publish-plugin[reference documentation of the {publishplugin}]
    
    Publishing a plugin is the primary way to make it available for others to use.
    While you can publish to a private repository to restrict access, publishing to the https://plugins.gradle.org[{portal}] makes your plugin available to anyone in the world.
    
    image::plugin-portal-page.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. src/runtime/asm_loong64.s

    	RET
    
    /*
     *  go-routine
     */
    
    // void gogo(Gobuf*)
    // restore state from Gobuf; longjmp
    TEXT runtime·gogo(SB), NOSPLIT|NOFRAME, $0-8
    	MOVV	buf+0(FP), R4
    	MOVV	gobuf_g(R4), R5
    	MOVV	0(R5), R0	// make sure g != nil
    	JMP	gogo<>(SB)
    
    TEXT gogo<>(SB), NOSPLIT|NOFRAME, $0
    	MOVV	R5, g
    	JAL	runtime·save_g(SB)
    
    	MOVV	gobuf_sp(R4), R3
    	MOVV	gobuf_lr(R4), R1
    	MOVV	gobuf_ret(R4), R19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top