Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for buildAll (0.14 sec)

  1. 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)
  2. tests/integration/security/policy_attachment_only/jwt_gateway_test.go

    				Source(config.File("testdata/requestauthn/gateway-jwt.yaml.tmpl").WithParams(param.Params{
    					param.Namespace.String(): apps.Namespace,
    					"Services":               apps.A.Append(apps.B).Services(),
    				})).
    				BuildAll(nil, apps.A.Append(apps.B).Services()).
    				Apply()
    
    			t.NewSubTest("gateway-authn-policy-attachment-only").Run(func(t framework.TestContext) {
    				test.SetForTest(t, &features.EnableSelectorBasedK8sGatewayPolicy, false)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r81/ToolchainsParallelActionExecutionCrossVersionSpec.groovy

                    boolean canBuild(String modelName) {
                        return modelName == "org.gradle.integtests.tooling.r81.ToolchainModel"
                    }
    
                    Object buildAll(String modelName, Project project) {
                        // Access toolchain related information
                        def compileJavaVersion = project.tasks.compileJava.javaCompiler.get().metadata.languageVersion.asInt()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 05:31:40 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/providers/services/groovy/build.gradle

        private List<String> errors = []
        private List<String> warnings = []
    
        @Override
        boolean canBuild(String modelName) {
            return false
        }
    
        @Override
        Object buildAll(String modelName, Project project) {
            return null
        }
    }
    
    // Plugin is responsible for registering a custom tooling model builder
    // (OrtModelBuilder) with the ToolingModelBuilderRegistry, which allows
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/ParallelActionExecutionCrossVersionSpec.groovy

                    boolean canBuild(String modelName) {
                        return modelName == "org.gradle.integtests.tooling.r68.CustomModel"
                    }
    
                    Object buildAll(String modelName, Project project) {
                        // Do some dependency resolution
                        project.configurations.runtimeClasspath.files.each { }
                        return new CustomModel(path: project.path);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. 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)
  7. platforms/documentation/docs/src/snippets/providers/services/kotlin/build.gradle.kts

        private val warnings: MutableList<String> = mutableListOf()
    
        override fun canBuild(modelName: String): Boolean {
            return false
        }
    
        override fun buildAll(modelName: String, project: Project): Any? {
            return null
        }
    }
    
    // Plugin is responsible for registering a custom tooling model builder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top