Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for respondsTo (0.32 sec)

  1. testing/performance/src/templates/task-creation/build.gradle

     */
    
    @groovy.transform.CompileStatic
    void createTasks(Project p, int iterations) {
        for (int i=0; i<iterations; i++) {
            p.task("foo\$i", type: Copy)
        }
    }
    
    if (tasks.metaClass.respondsTo(tasks, "register")) {
        for (int i=0; i<$taskCount; i++) {
           project.tasks.register("foo\$i", Copy)
        }
    } else {
        createTasks(project, $taskCount)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 974 bytes
    - Viewed (0)
  2. platforms/software/maven/src/crossVersionTest/groovy/org/gradle/api/publish/maven/MavenPublishCrossVersionIntegrationTest.groovy

            settingsFile.text = "rootProject.name = 'consumer'"
    
            buildFile.text = """
    configurations {
        lib
    }
    repositories {
        if (repositories.metaClass.respondsTo(repositories, 'maven')) {
            maven { url "${repo.uri}" }
        } else {
            mavenRepo urls: ["${repo.uri}"]
        }
    }
    dependencies {
        lib 'org.gradle.crossversion:published:1.9'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/crossVersionTest/groovy/org/gradle/integtests/resolve/GradleMetadataJavaLibraryCrossVersionIntegrationTest.groovy

                        }
                    }
                    implementation 'com.google.inject:guice:4.2.2:no_aop'
                }
    
                java {
                    if (JavaPluginExtension.metaClass.respondsTo(delegate, 'registerFeature')) {
                        sourceSets {
                            hibernateSupport
                        }
                        registerFeature("hibernateSupport") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/crossVersionTest/groovy/org/gradle/integtests/resolve/ResolveCrossVersionIntegrationTest.groovy

            and:
            server.allowGetOrHead("/repo", mavenRepo.rootDir)
    
            and:
            buildFile << """
    repositories {
        if (repositories.metaClass.respondsTo(repositories, 'maven')) {
            maven { url "${mavenHttpRepo.uri}" }
        } else {
            mavenRepo urls: "${mavenHttpRepo.uri}"
        }
    }
    
    configurations {
        compile
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/GroovyCodecs.kt

                }
                scriptReferenced()
            }
    
            override fun invokeMethod(name: String, args: Any): Any {
                // See above for why this check happens
                if (targetMetadata.respondsTo(null, name).isEmpty()) {
                    throw MissingMethodException(name, Project::class.java, arrayOf())
                }
                scriptReferenced()
            }
    
            private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. docs/metrics/healthcheck/README.md

    # MinIO Healthcheck
    
    MinIO server exposes three un-authenticated, healthcheck endpoints liveness probe and a cluster probe at `/minio/health/live` and `/minio/health/cluster` respectively.
    
    ## Liveness probe
    
    This probe always responds with '200 OK'. Only fails if 'etcd' is configured and unreachable. When liveness probe fails, Kubernetes like platforms restart the container.
    
    ```
    livenessProbe:
      httpGet:
        path: /minio/health/live
        port: 9000
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jul 06 16:18:38 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/routes/flags.go

    	url := path.Join("/debug/flags", flag)
    	c.UnlistedHandleFunc(url, handler)
    
    	f.addFlag(flag)
    }
    
    // Index responds with the `/debug/flags` request.
    // For example, "/debug/flags/v" serves the "--v" flag.
    // Index responds to a request for "/debug/flags/" with an HTML page
    // listing the available flags.
    func (f DebugFlags) Index(w http.ResponseWriter, r *http.Request) {
    	lock.RLock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 3.2K bytes
    - Viewed (0)
  8. guava-gwt/src/com/google/common/base/Base.gwt.xml

    <!--
        We used to set this only for packages that had manual supersource. That
        worked everywhere that I know of except for one place: when running the GWT
        util.concurrent tests under Guava.
    
        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
        The summary is that it ignores one file in favor of the other.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. guava-gwt/src/com/google/common/escape/Escape.gwt.xml

    <!--
        We used to set this only for packages that had manual supersource. That
        worked everywhere that I know of except for one place: when running the GWT
        util.concurrent tests under Guava.
    
        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
        The summary is that it ignores one file in favor of the other.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. guava-gwt/test/com/google/common/escape/testing/Testing.gwt.xml

    <!--
        We used to set this only for packages that had manual supersource. That
        worked everywhere that I know of except for one place: when running the GWT
        util.concurrent tests under Guava.
    
        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
        The summary is that it ignores one file in favor of the other.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top