Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for buildAll (0.25 sec)

  1. tests/integration/security/pass_through_filter_chain_test.go

    kind: DestinationRule
    metadata:
      name: {{ .To.ServiceName }}-dr
    spec:
      host: "fake.destination.{{ .To.ServiceName }}"
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
    ---`)).
    						BuildAll(nil, apps.Ns1.All).
    						Apply()
    
    					echotest.New(t, apps.Ns1.All.Instances()).
    						WithDefaultFilters(1, 1).
    						FromMatch(match.NotProxylessGRPC).
    						ToMatch(match.And(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinBuildScriptModelBuilder.kt

    object KotlinBuildScriptModelBuilder : ToolingModelBuilder {
    
        override fun canBuild(modelName: String): Boolean =
            modelName == "org.gradle.kotlin.dsl.tooling.models.KotlinBuildScriptModel"
    
        override fun buildAll(modelName: String, modelRequestProject: Project): KotlinBuildScriptModel {
            val timer = startTimer()
            val parameter = requestParameterOf(modelRequestProject)
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. tests/integration/security/reachability_test.go

    						if skipMV {
    							t.SkipNow()
    						}
    					}
    					// Apply the configs.
    					config.New(t).
    						Source(c.configs...).
    						BuildAll(nil, allServices).
    						Apply()
    					// Run the test against a number of ports.
    					allOpts := append([]echo.CallOptions{}, c.callOpts...)
    					if len(allOpts) == 0 {
    						allOpts = []echo.CallOptions{
    							{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

                    fun action() {
                        val modelName = KotlinBuildScriptModel::class.qualifiedName
                        val builder = builderRegistry.getBuilder(modelName)
                        val model = builder.buildAll(modelName, project) as KotlinBuildScriptModel
                        if (model.classPath.any { it.name.startsWith("gradle-kotlin-dsl") }) {
                            println("gradle-kotlin-dsl!")
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MultiProjectJvmApplicationInitIntegrationTest.groovy

    
    abstract class AbstractMultiProjectJvmApplicationInitIntegrationTest extends AbstractJvmLibraryInitIntegrationSpec {
        protected BuildInitDsl buildDsl
    
        protected Language jvmLanguage
    
        void setupDslAndLanguage(BuildInitDsl buildDsl, Language jvmLanguage) {
            this.buildDsl = buildDsl
            this.jvmLanguage = jvmLanguage
        }
    
        @Override
        String subprojectName() {
            return null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. scripts/docs.py

        build_site_dist_path = build_site_path / lang
        if lang == "en":
            dist_path = site_path
            # Don't remove en dist_path as it might already contain other languages.
            # When running build_all(), that function already removes site_path.
            # All this is only relevant locally, on GitHub Actions all this is done through
            # artifacts and multiple workflows, so it doesn't matter if directories are
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. Makefile.core.mk

    # * Building a single docker image (generally during dev). In this case we just want to build the single binary alone
    BUILD_ALL ?= true
    define build-linux
    .PHONY: $(TARGET_OUT_LINUX)/$(shell basename $(1))
    ifeq ($(BUILD_ALL),true)
    $(TARGET_OUT_LINUX)/$(shell basename $(1)): build-linux
    	@:
    else
    $(TARGET_OUT_LINUX)/$(shell basename $(1)): $(TARGET_OUT_LINUX)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. tools/docker-builder/main.go

    		// Otherwise, build just the single item. proxyv2 is special since it is always built separately with tag=agent.
    		// Ideally we would just always build the targets we need but our Makefile is not that smart
    		env = append(env, "BUILD_ALL=false")
    	}
    
    	env = append(env,
    		// Build should already run in container, having multiple layers of docker causes issues
    		"BUILD_WITH_CONTAINER=0",
    	)
    	return env
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top