Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 99 for promv1 (0.12 sec)

  1. 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)
  2. test/prove.go

    // So, instead, opt rewrites the division with a less-than-optimal replacement.
    // Prove, which can see that n is nonnegative, cannot see the division because
    // opt, an earlier pass, has already replaced it.
    // The fix for this issue allows prove to zero a right shift that was added as
    // part of the less-than-optimal reqwrite. That change by prove then allows
    // lateopt to clean up all the unnecessary parts of the original division
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/term/terminal.go

    // a local terminal, that terminal must first have been put into raw mode.
    // prompt is a string that is written at the start of each input line (i.e.
    // "> ").
    func NewTerminal(c io.ReadWriter, prompt string) *Terminal {
    	return &Terminal{
    		Escape:       &vt100EscapeCodes,
    		c:            c,
    		prompt:       []rune(prompt),
    		termWidth:    80,
    		termHeight:   24,
    		echo:         true,
    		historyIndex: -1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/launcher/daemon/protocol/DaemonMessageSerializerTest.groovy

        }
    
        def "can serialize yes-no question prompt event"() {
            expect:
            def event = new YesNoQuestionPromptEvent(123, 'prompt')
            def result = serialize(event, serializer)
            result instanceof YesNoQuestionPromptEvent
            result.question == 'prompt'
            result.timestamp == 123
        }
    
        def "can serialize boolean question prompt event"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/userinput/UserInputHandlingIntegrationTest.groovy

                }
            """
            def prompt = "what? (default: <default>):"
    
            when:
            runWithInput("generate", prompt, "value")
    
            then:
            result.assertTaskNotSkipped(":generate")
            file("build/out.txt").text == "value"
    
            when:
            runWithInput("generate", prompt, "value")
    
            then:
            result.assertTaskSkipped(":generate")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. src/test/java/jcifs/tests/ContextConfigTest.java

    
        @Test
        // #226
        public void testLegacyConfig () throws CIFSException {
            Properties prop1 = new Properties();
            prop1.setProperty("jcifs.smb.client.enableSMB2", "false");
            prop1.setProperty("jcifs.smb.client.disableSMB1", "false");
            PropertyConfiguration p1 = new PropertyConfiguration(prop1);
    
            assertEquals(DialectVersion.SMB1, p1.getMinimumVersion());
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitInteractiveIntegrationTest.groovy

            }
    
            closeInteractiveExecutor(handle)
    
            then:
            ScriptDslFixture.of(BuildInitDsl.KOTLIN, targetDir, null).assertGradleFilesGenerated()
        }
    
        def "does not prompt for options provided on the command-line"() {
            when:
            def handle = startInteractiveExecutorWithTasks(
                "init",
                "--incubating",
                "--dsl", "kotlin",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 18.9K bytes
    - Viewed (1)
  8. src/cmd/covdata/tool_test.go

    		}
    	}
    
    	// Run instrumented program to generate some coverage data output files,
    	// as follows:
    	//
    	//   <tmp>/covdata0   -- prog1.go compiled -cover
    	//   <tmp>/covdata1   -- prog1.go compiled -cover
    	//   <tmp>/covdata2   -- prog1.go compiled -covermode=atomic
    	//   <tmp>/covdata3   -- prog1.go compiled -covermode=atomic
    	//
    	for m := 0; m < 2; m++ {
    		for k := 0; k < 2; k++ {
    			args := []string{}
    			if k != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. pilot/pkg/model/telemetry_logging.go

    }
    
    func tcpGrpcAccessLogFromTelemetry(push *PushContext, prov *meshconfig.MeshConfig_ExtensionProvider_EnvoyTcpGrpcV3LogProvider) *accesslog.AccessLog {
    	logName := TCPEnvoyAccessLogFriendlyName
    	if prov != nil && prov.LogName != "" {
    		logName = prov.LogName
    	}
    
    	filterObjects := envoyWasmStateToLog
    	if len(prov.FilterStateObjectsToLog) != 0 {
    		filterObjects = prov.FilterStateObjectsToLog
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultValueSnapshotterTest.groovy

            def value = instantiator.newInstance(BeanInterface)
            value.prop1 = "a"
            def value1 = instantiator.newInstance(BeanInterface)
            value1.prop1 = "a"
            def value2 = instantiator.newInstance(BeanInterface)
            value2.prop1 = "b"
            def value3 = instantiator.newInstance(AbstractBean)
            value3.prop1 = "a"
    
            expect:
            def snapshot = snapshotter.snapshot(value)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.5K bytes
    - Viewed (0)
Back to top