Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    A complex and highly dynamic build may require some restructuring anyway, so in such cases reimplementing build logic to follow Gradle best practice makes sense.
    
    Since applying Gradle best practices will make your builds easier to use and faster, we recommend that you migrate all projects in that way eventually, but it makes sense to focus on the projects that have to be restructured first and those that would benefit most from the improvements.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. helm/minio/templates/post-job.yaml

            {{- end }}
          {{- if .Values.serviceAccount.create }}
          serviceAccountName: {{ .Values.serviceAccount.name }}
          {{- end }}
          {{- if .Values.policies }}
          initContainers:
            - name: minio-make-policy
              image: "{{ .Values.mcImage.repository }}:{{ .Values.mcImage.tag }}"
              {{- if .Values.makePolicyJob.securityContext.enabled }}
              securityContext:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jul 08 19:18:31 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. src/runtime/asm_riscv64.s

    // at the top of the system stack because the one at the top of
    // the system stack terminates the stack walk (see topofstack()).
    TEXT runtime·systemstack_switch(SB), NOSPLIT, $0-0
    	UNDEF
    	JALR	RA, ZERO	// make sure this function is not leaf
    	RET
    
    // func systemstack(fn func())
    TEXT runtime·systemstack(SB), NOSPLIT, $0-8
    	MOV	fn+0(FP), CTXT	// CTXT = fn
    	MOV	g_m(g), T0	// T0 = m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-egress/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
    - 12.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

     * Separate API and implementation JARs — it may make sense to have these as separate projects, particularly if you already have a multi-project build
     * Generated sources — if the resulting sources should be compiled with the production code, add their path(s) to the `main` source set and make sure that the `compileJava` task depends on the task that generates the sources
    
    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. src/runtime/asm_wasm.s

    // func checkASM() bool
    TEXT ·checkASM(SB), NOSPLIT, $0-1
    	MOVB $1, ret+0(FP)
    	RET
    
    TEXT runtime·gogo(SB), NOSPLIT, $0-8
    	MOVD buf+0(FP), R0
    	MOVD gobuf_g(R0), R1
    	MOVD 0(R1), R2	// make sure g != nil
    	MOVD R1, g
    	MOVD gobuf_sp(R0), SP
    
    	// Put target PC at -8(SP), wasm_pc_f_loop will pick it up
    	Get SP
    	I32Const $8
    	I32Sub
    	I64Load gobuf_pc(R0)
    	I64Store $0
    
    	MOVD gobuf_ret(R0), RET0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:26:51 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    Inspecting provides a comparison point to better understand the impact of the changes recommended on this page.
    
    To best make use of this page:
    
    . Inspect your build.
    . Make a change.
    . Inspect your build again.
    
    If the change improved build times, make it permanent. If you don't see an improvement, remove the change and try another.
    
    == Update versions
    
    [[update_gradle]]
    === Gradle
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    - a customization action which allows you to _filter_ which variants are going to be published
    
    To utilise these methods, you must make sure that the `SoftwareComponent` you work with is itself an `AdhocComponentWithVariants`, which is the case for the components created by the Java plugins (Java, Java Library, Java Platform).
    Adding a variant is then very simple:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top