Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for generateDot (0.15 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

            inheritOutputDirs = false
            outputDir = file('muchBetterOutputDir')
            testOutputDir = file('muchBetterTestOutputDir')
    
            jdkName = '1.6'
    
            iml {
                generateTo = file('customImlFolder')
    
                withXml {
                    def node = it.asNode()
                    node.appendNode('someInterestingConfiguration', 'hey!')
                }
            }
        }
    }
    '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
     *     id 'idea'
     * }
     *
     * idea {
     *   module {
     *     iml {
     *       //if you like to keep *.iml in a secret folder
     *       generateTo = file('secret-modules-folder')
     *
     *       //if you want to mess with the resulting XML in whatever way you fancy
     *       withXml {
     *         def node = it.asNode()
     *         node.appendNode('iLoveGradle', 'true')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

                    }
                }
    
                dependencies {
                    api("org.apache.commons:commons-lang3:3.5")
                }
    
                """
            )
    
            build("generatePom")
    
            val pom = existing("build/publications/mavenJavaLibrary/pom-default.xml").readText()
            assertThat(pom, containsString("com.google.guava"))
            assertThat(pom, containsString("commons-lang3"))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  4. hack/update-codegen.sh

    UPDATE_API_KNOWN_VIOLATIONS="${UPDATE_API_KNOWN_VIOLATIONS:-}"
    API_KNOWN_VIOLATIONS_DIR="${API_KNOWN_VIOLATIONS_DIR:-"${KUBE_ROOT}/api/api-rules"}"
    
    OUT_DIR="_output"
    BOILERPLATE_FILENAME="hack/boilerplate/boilerplate.generatego.txt"
    APPLYCONFIG_PKG="k8s.io/client-go/applyconfigurations"
    PLURAL_EXCEPTIONS="Endpoints:Endpoints,ResourceClaimParameters:ResourceClaimParameters,ResourceClassParameters:ResourceClassParameters"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    }
    
    func (s *ambientTestServer) addPods(t *testing.T, ip string, name, sa string, labels map[string]string,
    	annotations map[string]string, markReady bool, phase corev1.PodPhase,
    ) {
    	t.Helper()
    	pod := generatePod(ip, name, testNS, sa, "node1", labels, annotations)
    
    	p := s.pc.Get(name, pod.Namespace)
    	if p == nil {
    		// Apiserver doesn't allow Create to modify the pod status; in real world it's a 2 part process
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top