Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for buildAll (0.12 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ToolingApiSpec.groovy

                        return modelName == "$SomeToolingModel.class.name"
                    }
                    Object buildAll(String modelName, Project project) {
                        return buildAll(modelName, null, project)
                    }
                    Object buildAll(String modelName, MyModelParameter parameter, Project project) {
                        def messagePrefix = parameter == null ? '' : parameter.messagePrefix
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r48/PhasedBuildActionCrossVersionSpec.groovy

                    }
    
                    Class<CustomParameter> getParameterType() {
                        return CustomParameter.class;
                    }
    
                    Object buildAll(String modelName, Project project) {
                        if (modelName == '${CustomProjectsLoadedModel.name}') {
                            return new DefaultCustomModel('loading');
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

        }
    
        @Override
        public Class<EclipseRuntime> getParameterType() {
            return EclipseRuntime.class;
        }
    
        @Override
        public Object buildAll(String modelName, EclipseRuntime eclipseRuntime, Project project) {
            this.eclipseRuntime = eclipseRuntime;
            List<EclipseWorkspaceProject> projects = eclipseRuntime.getWorkspace().getProjects();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. tests/integration/security/jwt_test.go

    					if len(policy) > 0 {
    						// Apply the policy for all targets.
    						config.New(t).
    							Source(config.File(policy).WithParams(param.Params{
    								"JWTServer": jwtServer,
    							})).
    							BuildAll(nil, apps.Ns1.All).
    							Apply()
    					}
    
    					newTrafficTest(t, apps.Ns1.All.Instances()).Run(func(t framework.TestContext, from echo.Instance, to echo.Target) {
    						for _, c := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
Back to top