Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for WithSource (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/MavenResolver.java

            if (moduleSources == null) {
                return super.createArtifactResolver(null);
            }
    
            return moduleSources.withSource(MavenUniqueSnapshotModuleSource.class, source -> {
                if (source.isPresent()) {
                    return new MavenUniqueSnapshotExternalResourceArtifactResolver(super.createArtifactResolver(moduleSources), source.get());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/apiserver.go

    	aggregatedDiscoveryManager := genericServer.AggregatedDiscoveryGroupManager
    	if aggregatedDiscoveryManager != nil {
    		aggregatedDiscoveryManager = aggregatedDiscoveryManager.WithSource(aggregated.CRDSource)
    	}
    	discoveryController := NewDiscoveryController(s.Informers.Apiextensions().V1().CustomResourceDefinitions(), versionDiscoveryHandler, groupDiscoveryHandler, aggregatedDiscoveryManager)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 14:31:43 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/event.go

    	b.Message = &value
    	return b
    }
    
    // WithSource sets the Source field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Source field is set to the value of the last call.
    func (b *EventApplyConfiguration) WithSource(value *EventSourceApplyConfiguration) *EventApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitCategoriesOrTagsCoverageIntegrationSpec.groovy

            TestSource(String relativePath, String sourceSet) {
                this.relativePath = relativePath
                this.source = source
                this.sourceSet = sourceSet
            }
    
            TestSource withSource(String source) {
                this.source = source
                return this
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 14:54:49 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler_test.go

    	}
    
    	pairs := []pair{}
    
    	defaultManager := discoveryendpoint.NewResourceManager("apis")
    	for i := 0; i < 10; i++ {
    		name := discoveryendpoint.Source(100 * i)
    		manager := defaultManager.WithSource(name)
    		apis := fuzzAPIGroups(1, 3, int64(15+i))
    
    		// Give the groups deterministic names
    		for i := range apis.Items {
    			apis.Items[i].Name = fmt.Sprintf("%v.%v.com", i, name)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top