Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SomeConfig (0.1 sec)

  1. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathIntegrationTest.groovy

      apply plugin: 'eclipse'
    }
    
    configurations {
      someConfig
      someOtherConfig
    }
    
    dependencies {
      someConfig project(':foo')
      someConfig project(':bar')
      someConfig project(':unwanted')
      someOtherConfig project(':unwanted')
    }
    
    eclipse.classpath {
        plusConfigurations << configurations.someConfig
        minusConfigurations << configurations.someOtherConfig
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/resources/TextResourceFactory.java

     *
     * def sourcedFromArchiveEntry =
     *   resources.text.fromArchiveEntry("path/to/archive.zip", "path/to/archive/entry.txt")
     *
     * configurations { someConfig } // assumption: contains a single archive
     * def sourcedFromConfiguration =
     *   resources.text.fromArchiveEntry(configurations.someConfig, "path/to/archive/entry.txt")
     *
     * def sourceFromUri = resources.text.fromUri("https://example.com/resource")
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 15 19:10:41 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  3. pilot/pkg/config/aggregate/config_test.go

    }
    
    func TestAggregateStoreMakeValidationFailure(t *testing.T) {
    	g := NewWithT(t)
    
    	store1 := memory.Make(collection.SchemasFor(schemaFor("SomeConfig", "broken message name")))
    
    	stores := []model.ConfigStore{store1}
    
    	store, err := makeStore(stores, nil)
    	g.Expect(err).To(MatchError(ContainSubstring("not found: broken message name")))
    	g.Expect(store).To(BeNil())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top