Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 215 for promv1 (0.15 sec)

  1. 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)
  2. tests/integration/telemetry/api/dashboard_test.go

    // limitations under the License.
    
    package api
    
    import (
    	"context"
    	"encoding/json"
    	"fmt"
    	"os"
    	"path/filepath"
    	"strings"
    	"testing"
    	"time"
    
    	promv1 "github.com/prometheus/client_golang/api/prometheus/v1"
    	"github.com/prometheus/common/model"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/http/headers"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/prove.go

    	if d != signed && d != unsigned {
    		return
    	}
    
    	// Additional facts we know given the relationship between len and cap.
    	//
    	// TODO: Since prove now derives transitive relations, it
    	// should be sufficient to learn that len(w) <= cap(w) at the
    	// beginning of prove where we look for all len/cap ops.
    	if v.Op == OpSliceLen && r&lt == 0 && ft.caps[v.Args[0].ID] != nil {
    		// len(s) > w implies cap(s) > w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/prop-prov-1.png

    prop-prov-1.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 00:13:54 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r62/CapturingMultipleUserInputCrossVersionSpec.groovy

                runBuildWithStandardInput(connection, 'something one', 'something two')
            }
    
            then:
            output.contains(FOO.prompt)
            output.contains(FOO.answerOutput('something one'))
            output.contains(BAR.prompt)
            output.contains(BAR.answerOutput('something two'))
        }
    
        def "can capture multiple user input if standard input was provided using default values"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. maven-jline/src/main/java/org/apache/maven/jline/JLineMessageBuilderFactory.java

        }
    
        @Override
        public String prompt(String message) throws PrompterException {
            return prompt(message, null, null);
        }
    
        @Override
        public String prompt(String message, String defaultReply) throws PrompterException {
            return prompt(message, null, defaultReply);
        }
    
        @Override
        public String prompt(String message, List possibleValues) throws PrompterException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/UserInputValidationProblemEvent.java

        private final String prompt;
    
        public UserInputValidationProblemEvent(long timestamp, String prompt) {
            super(timestamp, "prompt", LogLevel.QUIET, null);
            this.prompt = prompt;
        }
    
        @Override
        public void render(StyledTextOutput output) {
            output.text(prompt);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top