Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,209 for CUSTOM (0.17 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDirIntegrationTest.groovy

            configurationCacheRun 'help', '--project-cache-dir', 'custom-cache-dir'
    
            then:
            !file('.gradle/configuration-cache').exists()
    
            and:
            file('custom-cache-dir/configuration-cache').isDirectory()
    
            and:
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRun 'help', '--project-cache-dir', 'custom-cache-dir'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/plugins/consuming/groovy/settings.gradle

    // tag::custom-plugin-repositories[]
    pluginManagement {
        repositories {
            maven {
                url './maven-repo'
            }
            gradlePluginPortal()
            ivy {
                url './ivy-repo'
            }
        }
    }
    // end::custom-plugin-repositories[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 301 bytes
    - Viewed (0)
  3. tests/integration/pilot/gw_topology_test.go

    kind: Service
    metadata:
      name: custom-gateway
      labels:
        istio: ingressgateway
    spec:
      ports:
      - port: 80
        targetPort: 8080
        name: http
      selector:
        istio: ingressgateway
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: custom-gateway
    spec:
      selector:
        matchLabels:
          istio: ingressgateway
      template:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/CheckstylePluginTest.groovy

            task.reports.xml.outputLocation.asFile.get() == project.file("build/reports/checkstyle/custom.xml")
            task.reports.html.outputLocation.asFile.get() == project.file("build/reports/checkstyle/custom.html")
            task.reports.sarif.outputLocation.asFile.get() == project.file("build/reports/checkstyle/custom.sarif")
            !task.ignoreFailures
        }
    
        def "adds checkstyle tasks to check lifecycle task"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishJavaPlatformIntegTest.groovy

            javaPlatform.parsedModuleMetadata.variant("apiElements") {
                constraint("custom-group:core-custom:1.9")
                noMoreDependencies()
            }
            javaPlatform.parsedModuleMetadata.variant("runtimeElements") {
                constraint("custom-group:core-custom:1.9")
                constraint("custom-group:utils-custom:1.9")
                noMoreDependencies()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-groovy/src/test/groovy/org/gradle/api/plugins/GroovyBasePluginTest.groovy

            def sourceSet = project.sourceSets.create('custom')
            assertThat(sourceSet.groovy.displayName, equalTo("custom Groovy source"))
            assertThat(sourceSet.groovy.srcDirs, equalTo(toLinkedSet(project.file("src/custom/groovy"))))
        }
    
        @Test void addsCompileTaskToNewSourceSet() {
            project.sourceSets.create('custom')
    
            def task = project.tasks['compileCustomGroovy']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseCustomSourceAndJavadocLocationIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "custom source and javadoc location"() {
            setup:
            String customSourcePath = temporaryFolder.file('guava-custom-source.jar').absolutePath.replace('\\', '\\\\')
            String customJavadocPath = temporaryFolder.file('guava-custom-javadoc.jar').absolutePath.replace('\\', '\\\\')
    
            buildFile << """
                apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/fess.json

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Aug 11 01:26:55 UTC 2022
    - 39.9K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                    ext.custom = 'repository'
                }
                defaultTask.custom = 'another value'
                javaTask.custom = 'another value'
                groovyTask.custom = 'another value'
                assert !project.hasProperty('custom')
                assert defaultTask.hasProperty('custom')
                assert defaultTask.custom == 'another value'
                assert javaTask.custom == 'another value'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

        }
    }
    
    extensions.create('custom', SomeExtension)
    custom.prop = "\${'some value 1'.substring(5)}"
    assert custom.prop.get() == "value 1"
    
    custom.prop = providers.provider { "\${'some value 2'.substring(5)}" }
    assert custom.prop.get() == "value 2"
    
    custom.prop = null
    custom.prop.convention("\${'some value 3'.substring(5)}")
    assert custom.prop.get() == "value 3"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top