Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for customFile (0.17 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

            then:
            staticLibrary("build/libs/hello/static/hello").assertExists()
            installation("build/install/main").exec().out == "Hello!"
        }
    
        @ToBeFixedForConfigurationCache
        def "can customize binaries before and after linking"() {
            def helloWorldApp = new CppHelloWorldApp()
            given:
            buildFile << '''
    apply plugin: 'cpp'
    
    model {
        components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationKotlinDslIntegTest.groovy

            testDirectory.file('settings.gradle.kts')
        }
    
        def setup() {
            requireOwnGradleUserHomeDir() // Isolate Kotlin DSL extensions API jar
        }
    
        def "can customize POM using Kotlin DSL"() {
            given:
            settingsFile << 'rootProject.name = "customizePom"'
            buildFile << """
                plugins {
                    `maven-publish`
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

     * You can also completely replace the set of published artifacts using {@link #setArtifacts(Iterable)}.
     * Together, these methods give you full control over what artifacts will be published.
     * </p><p>
     * To customize the metadata published in the generated POM, set properties, e.g. {@link MavenPom#getDescription()}, on the POM returned via the {@link #getPom()}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

     * Together, these methods give you full control over the artifacts to be published.
     * </p><p>
     * In addition, {@link IvyModuleDescriptorSpec} provides configuration methods to customize licenses, authors, and the description to be published in the Ivy module descriptor.
     * </p><p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[build_environment]]
    = Configuring the Build Environment
    
    Configuring the build environment is a powerful way to customize the build process.
    There are many mechanisms available.
    By leveraging these mechanisms, you can make your Gradle builds more flexible and adaptable to different environments and requirements.
    
    == Available mechanisms
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/connection/RealRoutePlanner.kt

       *
       * In order to support preemptive authentication we pass a fake "Auth Failed" response to the
       * authenticator. This gives the authenticator the option to customize the CONNECT request. It can
       * decline to do so by returning null, in which case OkHttp will use it as-is.
       */
      @Throws(IOException::class)
      private fun createTunnelRequest(route: Route): Request {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/unicode/letter.go

    type CaseRange struct {
    	Lo    uint32
    	Hi    uint32
    	Delta d
    }
    
    // SpecialCase represents language-specific case mappings such as Turkish.
    // Methods of SpecialCase customize (by overriding) the standard mappings.
    type SpecialCase []CaseRange
    
    // BUG(r): There is no mechanism for full case folding, that is, for
    // characters that involve multiple runes in the input or output.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationIntegTest.groovy

    /**
     * Tests maven POM customization
     */
    class MavenPublishPomCustomizationIntegTest extends AbstractMavenPublishIntegTest {
        @Rule
        SetSystemProperties sysProp = new SetSystemProperties()
    
        def "can customize pom xml"() {
            given:
            settingsFile << "rootProject.name = 'customizePom'"
            buildFile << """
                apply plugin: 'maven-publish'
    
                group = 'org.gradle.test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. pkg/test/framework/components/environment/kube/flags.go

    	flag.StringVar(&settingsFromCommandLine.Architecture, "istio.test.kube.architecture", settingsFromCommandLine.Architecture,
    		"Indicates the architecture (arm64 or amd64) of the cluster under test. This is used to customize tests that require per-arch specific settings")
    	flag.StringVar(&controlPlaneTopology, "istio.test.kube.controlPlaneTopology",
    		"", "Specifies the mapping for each cluster to the cluster hosting its control plane. The value is a "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. pkg/api/service/warnings_test.go

    )
    
    func TestGetWarningsForService(t *testing.T) {
    	testCases := []struct {
    		name        string
    		tweakSvc    func(svc *api.Service) // Given a basic valid service, each test case can customize it.
    		numWarnings int
    	}{{
    		name: "new topology mode set",
    		tweakSvc: func(s *api.Service) {
    			s.Annotations = map[string]string{api.AnnotationTopologyMode: "foo"}
    		},
    		numWarnings: 0,
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 22:57:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top