Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for grails (0.13 sec)

  1. platforms/ide/ide-plugins/src/test/resources/org/gradle/plugins/ide/idea/model/customProject.xml

        <resourceExtensions>
          <entry name=".+\.(properties|xml|html|dtd|tld)" />
          <entry name=".+\.(gif|png|jpeg|jpg)" />
        </resourceExtensions>
        <wildcardResourcePatterns>
          <entry name="?*.gradle" />
          <entry name="?*.grails" />
        </wildcardResourcePatterns>
        <annotationProcessing enabled="false" useClasspath="true" />
      </component>
      <component name="CopyrightManager" default="">
        <module2copyright />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/model/ProjectTest.groovy

     * limitations under the License.
     */
    package org.gradle.plugins.ide.idea.model
    import org.gradle.api.JavaVersion
    import org.gradle.internal.xml.XmlTransformer
    import spock.lang.Specification
    
    class ProjectTest extends Specification {
        final PathFactory pathFactory = new PathFactory().addPathVariable("PROJECT_DIR", new File("root"))
        final customModules = [path('file://$PROJECT_DIR$/gradle-idea-plugin.iml')]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. pkg/controller/certificates/approver/sarapprove_test.go

    	return makeFancyTestCsr(csrBuilder{cn: "test-cert"})
    }
    
    type csrBuilder struct {
    	cn         string
    	orgs       []string
    	requestor  string
    	usages     []capi.KeyUsage
    	dns        []string
    	emails     []string
    	ips        []net.IP
    	signerName string
    }
    
    func makeFancyTestCsr(b csrBuilder) *capi.CertificateSigningRequest {
    	pk, err := ecdsa.GenerateKey(elliptic.P256(), insecureRand)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 21:12:04 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Queues.java

      @J2ktIncompatible
      @GwtIncompatible // SynchronousQueue
      public static <E> SynchronousQueue<E> newSynchronousQueue() {
        return new SynchronousQueue<>();
      }
    
      /**
       * Drains the queue as {@link BlockingQueue#drainTo(Collection, int)}, but if the requested {@code
       * numElements} elements are not available, it will wait for them up to the specified timeout.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. chainable_api.go

    	}
    	return
    }
    
    // Joins specify Joins conditions
    //
    //	db.Joins("Account").Find(&user)
    //	db.Joins("JOIN emails ON emails.user_id = users.id AND emails.email = ?", "******@****.***").Find(&user)
    //	db.Joins("Account", DB.Select("id").Where("user_id = users.id AND name = ?", "someName").Model(&Account{}))
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. gradle/wrapper/gradle-wrapper.jar

    warranty or additional liability. END OF TERMS AND CONDITIONS META-INF/MANIFEST.MF Manifest-Version: 1.0 Implementation-Title: Gradle Wrapper org/gradle/cli/CommandLineArgumentE.class package org.gradle.cli; public final synchronized class CommandLineArgumentE extends RuntimeException { public void CommandLineArgumentE(String); } org/gradle/cli/CommandLineOption.class package org.gradle.cli; public final synchronized class CommandLineOption { public final java.util.HashSet options; public Class argumentType;...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 24 09:00:26 UTC 2023
    - 42.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/ide/problems-api-usage/groovy/sample-ide/build.gradle

            ':sample-project:assemble'  // The executed task
        ]
    }
    
    tasks.register('importBuild') {
        dependsOn(tasks.run)
    }
    
    Gradle rootBuild(Gradle gradle) {
        if (gradle?.parent) rootBuild(gradle.parent) else gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 735 bytes
    - Viewed (0)
  8. platforms/documentation/docs/build.gradle

    tasks.named("docsTest") { task ->
        maxParallelForks = 2
        // The org.gradle.samples plugin uses Exemplar to execute integration tests on the samples.
        // Exemplar doesn't know about that it's running in the context of the gradle/gradle build
        // so it uses the Gradle distribution from the running build. This is not correct, because
        // we want to verify that the samples work with the Gradle distribution being built.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-monolithic/build.gradle

    subprojects {
        apply from: rootProject.file("common.gradle")
        apply from: rootProject.file("components.gradle")
    }
    
    apply from: file("common.gradle")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 191 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/toolingApi/eclipse/groovy/build.gradle

        id 'application'
    }
    
    def toolingApiVersion = gradle.gradleVersion
    
    repositories {
        maven { url 'https://repo.gradle.org/gradle/libs-releases' }
    }
    
    dependencies {
        implementation "org.gradle:gradle-tooling-api:${toolingApiVersion}"
        // Need an SLF4J implementation at runtime
        runtimeOnly 'org.slf4j:slf4j-simple:1.7.10'
    }
    
    application {
        mainClass = 'org.gradle.sample.Main'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 419 bytes
    - Viewed (0)
Back to top