Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 360 for promv1 (0.18 sec)

  1. hack/serve-prom-scrapes.sh

    Mike Spreitzer <******@****.***> 1643956386 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 04 06:33:06 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. releasenotes/notes/prom-cert-permission.yaml

    Pengyuan Bian <******@****.***> 1616894114 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Mar 28 01:15:14 UTC 2021
    - 190 bytes
    - Viewed (0)
  3. samples/guide/src/main/java/okhttp3/recipes/kt/YubikeyClientAuth.kt

          if (callback is PasswordCallback) {
            val console = System.console()
    
            if (console != null) {
              callback.password = console.readPassword(callback.prompt)
            } else {
              System.err.println(callback.prompt)
              callback.password = System.`in`.bufferedReader().readLine().toCharArray()
            }
          } else {
            throw UnsupportedCallbackException(callback)
          }
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.2K bytes
    - Viewed (1)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPrompter.java

        }
    
        @Override
        public String prompt(String message, List<String> possibleValues, String defaultReply) throws PrompterException {
            try {
                Class<?> clazz = container.getContainerRealm().loadClass(PROMPTER_CLASS);
                Object instance = container.lookup(clazz);
                Method method = clazz.getMethod("prompt", String.class, List.class, String.class);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 3K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/events/SelectOptionPromptEventTest.groovy

    import org.gradle.util.internal.TextUtil
    import spock.lang.Specification
    
    class SelectOptionPromptEventTest extends Specification {
        def "formats prompt"() {
            def event = new SelectOptionPromptEvent(123, "question", ["11", "12", "13"], 1)
    
            assert event.prompt == TextUtil.toPlatformLineSeparators("""question:
      1: 11
      2: 12
      3: 13
    Enter selection (default: 12) [1..3] """)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/initialization/DefaultGradlePropertiesLoaderTest.groovy

            given:
            1 * environment.propertiesFile(fromDir(settingsDir)) >> [
                "prop1": "value",
                "prop2": "value"
            ]
    
            File otherSettingsDir = tmpDir.createDir("otherSettingsDir")
            1 * environment.propertiesFile(fromDir(otherSettingsDir)) >> ["prop1": "otherValue"]
    
            when:
            def properties = loadAndMergePropertiesWith(emptyMap())
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 06 11:52:10 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. releasenotes/notes/33864.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
      - 33857
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 18:26:31 UTC 2021
    - 218 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/fossil/hello.txt

    handle fossil
    
    env USER=rsc
    fossil init --date-override 2017-09-22T01:15:36Z hello.fossil
    fossil open --keep hello.fossil
    
    fossil add hello.go
    fossil commit --no-prompt --nosign --date-override 2017-09-22T01:19:07Z --comment 'hello world'
    
    fossil timeline --oneline
    cmp stdout .fossil-timeline
    
    -- .fossil-timeline --
    d4c7dcdc29 hello world
    58da0d15e9 initial empty check-in
    +++ no more data (2) +++
    -- hello.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 470 bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/baseuri-interpolation/pom.xml

      <description>
        Test interpolation of ${project.baseUri}
      </description>
    
      <properties>
        <!-- this is where we collect all the interpolated values for the POM dump -->
        <prop1>${project.baseUri}</prop1>
      </properties>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/basedir-interpolation/pom-with-unusual-name.xml

      </description>
    
      <properties>
        <!-- this is where we collect all the interpolated values for the POM dump -->
        <prop0>${basedir}</prop0>
        <prop1>${project.basedir}</prop1>
      </properties>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.3K bytes
    - Viewed (0)
Back to top