Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 191 for promv1 (0.16 sec)

  1. istioctl/pkg/metrics/metrics_test.go

    	startTime time.Time, endTime time.Time,
    ) ([]prometheus_model.LabelSet, promv1.Warnings, error) {
    	return nil, nil, nil
    }
    
    func (client mockPromAPI) Snapshot(ctx context.Context, skipHead bool) (promv1.SnapshotResult, error) {
    	return promv1.SnapshotResult{}, nil
    }
    
    func (client mockPromAPI) Rules(ctx context.Context) (promv1.RulesResult, error) {
    	return promv1.RulesResult{}, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 02:07:44 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. istioctl/pkg/metrics/metrics.go

    	}
    	return nil
    }
    
    func prometheusAPI(address string) (promv1.API, error) {
    	promClient, err := api.NewClient(api.Config{Address: address})
    	if err != nil {
    		return nil, fmt.Errorf("could not build prometheus client: %v", err)
    	}
    	return promv1.NewAPI(promClient), nil
    }
    
    func metrics(promAPI promv1.API, workload string, duration time.Duration) (workloadMetrics, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. pkg/test/framework/components/prometheus/prometheus.go

    	API() v1.API
    	APIForCluster(cluster cluster.Cluster) v1.API
    
    	// Query run the provided PromQL against the given cluster
    	RawQuery(cluster cluster.Cluster, promQL string) (prom.Value, error)
    
    	// Query Run the provided query against the given cluster
    	Query(cluster cluster.Cluster, query Query) (prom.Value, error)
    
    	// QuerySum is a help around Query to compute the sum
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 02 02:57:50 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. src/cmd/covdata/testdata/prog1.go

    Than McIntosh <******@****.***> 1634828243 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:47:16 UTC 2022
    - 616 bytes
    - Viewed (0)
  5. maven-core/src/test/resources/projects/reread/pom1.xml

    rfscholte <******@****.***> 1613318185 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Feb 14 15:56:25 UTC 2021
    - 945 bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/DefaultUserInputHandler.java

                return prompt(prompt, defaultValue, sanitizedValue -> sanitizedValue);
            }
    
            private <T> T prompt(PromptOutputEvent prompt, final T defaultValue, final Transformer<T, String> parser) {
                T result = prompt(prompt, sanitizedInput -> {
                    if (sanitizedInput.isEmpty()) {
                        return defaultValue;
                    }
                    return parser.transform(sanitizedInput);
                });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. releasenotes/notes/prom-rewrite.yaml

    Brian Avery <******@****.***> 1597180858 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 208 bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/promotion/StartReleaseCycle.kt

                text("confirmationCode", "", label = "Confirmation Code", description = "Enter the value 'startCycle' (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
    - 2.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AbstractUserInputRenderer.java

            // Start capturing input prior to displaying the prompt so that the input received after the prompt is displayed will be captured.
            // This does leave a small window where some text may be captured prior to the prompt being fully displayed, however this is
            // better than doing things in the other order, where there will be a small window where text may not be captured after prompt is fully displayed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/PromptOutputEvent.java

    /**
     * Requests that the client present the given prompt to the user and return the user's response as a single line of text.
     *
     * The response is delivered to the {@link UserInputReader} service.
     */
    public abstract class PromptOutputEvent extends RenderableOutputEvent implements InteractiveEvent {
        public PromptOutputEvent(long timestamp) {
            super(timestamp, "prompt", LogLevel.QUIET, null);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top