Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,612 for withID (0.13 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

            }
            hasPlugin('with-rich2') {
                withId 'org.example'
                withVersion {
                    prefer '1.0'
                }
            }
            hasPlugin('with-rich3') {
                withId 'org.example'
                withVersion {
                    require '1.0'
                }
            }
            hasPlugin('with-rich4') {
                withId 'org.example'
                withVersion {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginContainerTest.groovy

            def plugin = container.apply("custom-plugin-with-injection")
            def executed = false
    
            then:
    
            container.withId("custom-plugin-with-injection", {
                assert it == plugin
                executed = true
            })
            executed
            container.getPlugin("custom-plugin-with-injection") == plugin
            container.hasPlugin("custom-plugin-with-injection")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginRegistry.java

                    }
    
                    PotentialPlugin<?> potentialPlugin = pluginInspector.inspect(implClass);
                    PluginImplementation<Object> withId = new RegistryAwarePluginImplementation(classLoader, pluginId, potentialPlugin);
                    return Optional.of(withId);
                }
            });
        }
    
        @Override
        public PluginRegistry createChild(final ClassLoaderScope lookupScope) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 10.4K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

                    allprojects {
                        repositories {
                            ${mavenCentralRepository()}
                        }
                    }
                    subprojects {
                        plugins.withId('java') {
                            testing {
                                suites {
                                    test {
                                        useJUnit()
                                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  5. pilot/pkg/xds/delta_test.go

    		newEndpointWithAccount("127.0.0.1", "hello-sa", "v1"))
    	// Wait until the above debounce, to ensure we can precisely check XDS responses without spurious pushes
    	s.EnsureSynced(t)
    
    	ads := s.ConnectDeltaADS().WithID("sidecar~127.0.0.1~test.default~default.svc.cluster.local")
    
    	// Initially we get everything
    	ads.Request(&discovery.DeltaDiscoveryRequest{
    		ResourceNamesSubscribe: []string{},
    	})
    	resp := ads.ExpectResponse()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

                    allprojects {
                        repositories {
                            ${mavenCentralRepository()}
                        }
                    }
                    subprojects {
                        plugins.withId('java') {
                            testing {
                                suites {
                                    test {
                                        useJUnit()
                                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/jsonschemaprops.go

    // apply.
    func JSONSchemaProps() *JSONSchemaPropsApplyConfiguration {
    	return &JSONSchemaPropsApplyConfiguration{}
    }
    
    // WithID sets the ID field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/jsonschemaprops.go

    // apply.
    func JSONSchemaProps() *JSONSchemaPropsApplyConfiguration {
    	return &JSONSchemaPropsApplyConfiguration{}
    }
    
    // WithID sets the ID field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  9. pilot/pkg/xds/eds_sh_test.go

    	for addr := range r.weights {
    		out = append(out, addr)
    	}
    	sort.Strings(out)
    	return out
    }
    
    // The test will setup 3 networks with various number of endpoints for the same service within
    // each network. It creates an instance of memory registry for each cluster and populate it
    // with Service, Instances and an ingress gateway service.
    // It then conducts an EDS query from each network expecting results to match the design of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginManagerTest.groovy

            manager.pluginContainer.hasPlugin("foo")
        }
    
        def "action is notified when imperative plugin with id is applied"() {
            def action = Mock(Action)
    
            given:
            addPluginId("foo", imperativeClass)
            manager.withPlugin("foo", action)
            manager.pluginContainer.withId("foo", action)
    
            when:
            manager.apply(imperativeClass)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top