Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 360 for promv1 (0.29 sec)

  1. pkg/test/framework/components/prometheus/kube.go

    	return c.api[cluster.Name()]
    }
    
    func (c *kubeComponent) RawQuery(cluster cluster.Cluster, promQL string) (model.Value, error) {
    	scopes.Framework.Debugf("Query running: %s", promQL)
    
    	v, _, err := c.api[cluster.Name()].Query(context.Background(), promQL, time.Now())
    	if err != nil {
    		return nil, fmt.Errorf("error querying Prometheus: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. docs/en/docs/css/termynal.css

        display: inline-block;
        vertical-align: middle;
    }
    
    [data-ty="input"]:before,
    [data-ty-prompt]:before {
        margin-right: 0.75em;
        color: var(--color-text-subtle);
    }
    
    [data-ty="input"]:before {
        content: '$';
    }
    
    [data-ty][data-ty-prompt]:before {
        content: attr(data-ty-prompt);
    }
    
    [data-ty-cursor]:after {
        content: attr(data-ty-cursor);
        font-family: monospace;
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/promotion/PublishRelease.kt

                    display = ParameterDisplay.PROMPT,
                    allowEmpty = true
                )
                text(
                    "confirmationCode",
                    "",
                    label = "Confirmation Code",
                    description = "Enter the value '$requiredConfirmationCode' (no quotes) to confirm the promotion",
                    display = ParameterDisplay.PROMPT,
                    allowEmpty = false
                )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/typeconversion/MapNotationConverterTest.groovy

            expect:
            def object = parser.parseNotation([name: 'name', version: 'version', prop1: 'prop1', optional: '1.2'])
            object.key1 == 'name'
            object.key2 == 'version'
            object.prop1 == 'prop1'
        }
    
        def "does not mutate original map"() {
            def source = [name: 'name', version: 'version', prop1: 'prop1', optional: '1.2']
            def copy = new HashMap<String, Object>(source)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 11:58:37 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerConsoleInputEndUserIntegrationTest.groovy

    import org.gradle.util.internal.TextUtil
    
    import static org.gradle.integtests.fixtures.BuildScanUserInputFixture.DUMMY_TASK_NAME
    import static org.gradle.integtests.fixtures.BuildScanUserInputFixture.PROMPT
    import static org.gradle.integtests.fixtures.BuildScanUserInputFixture.answerOutput
    import static org.gradle.integtests.fixtures.BuildScanUserInputFixture.buildScanPlugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/pilot/testdata/multiXdsStatusSinglePilot.txt

    NAME       CLUSTER      CDS       LDS        EDS        RDS          ECDS         ISTIOD      VERSION
    proxy1     cluster1     STALE     SYNCED     SYNCED     NOT SENT     NOT SENT     istiod1     1.20
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 03:42:52 UTC 2024
    - 300 bytes
    - Viewed (0)
  7. security/samples/plugin_ca_certs/ca.cfg

    [req]
    distinguished_name = req_distinguished_name
    x509_extensions = v3_req
    prompt = no
    
    [req_distinguished_name]
    C = US
    ST = California
    L = Sunnyvale
    O = Istio
    CN = Istio CA
    
    [v3_req]
    keyUsage = keyCertSign
    basicConstraints = CA:TRUE
    subjectAltName = @alt_names
    
    [alt_names]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 06 16:00:29 UTC 2017
    - 295 bytes
    - Viewed (0)
  8. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/UserQuestions.java

        /**
         * Asks the user to select an option from the given list and returns the answer.
         * Uses the {@link Object#toString()} representation of the options to format the prompt.
         * Does not prompt the user when there is only one option in the given list.
         *
         * @param question The text of the question.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/PropertyProfileActivatorTest.java

            Profile profile = newProfile("prop", "value");
    
            Properties props1 = newProperties("prop", "value");
            Properties props2 = newProperties("prop", "other");
    
            assertActivation(true, profile, newContext(props1, props2));
    
            assertActivation(false, profile, newContext(props2, props1));
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptVisibilityIntegrationTest.groovy

    @groovy.transform.Field
    String prop3 = "abc"
    
    int prop4 = 12
    
    prop2 = prop1
    
    assert prop1 == "abc"
    assert prop2 == "abc"
    assert prop3 == "abc"
    assert prop4 == 12
    """
            file("child1/build.gradle") << """
    try {
        prop1
        assert false
    } catch(MissingPropertyException e) {
        assert e.property == 'prop1'
    }
    try {
        prop2
        assert false
    } catch(MissingPropertyException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top