Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,163 for c000 (0.29 sec)

  1. tests/testdata/config/none.yaml

              - "/usr/share/fortio/"
              - --stdclient
              - -http-port
              #- 127.0.0.1:28080 # This is the port from Sidecar. Normally should be localhost
              - :28080 # bound to 0.0.0.0 to allow additional perf testing.
              - -grpc-port
              - :28079
            env:
            - name: HTTP_PROXY
              value: 127.0.0.1:15002
            resources:
              requests:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  2. testing/internal-testing/src/test/groovy/org/gradle/test/fixtures/concurrent/ConcurrentSpecTest.groovy

            }
            def failure = null
            try {
                assert operation.runAndWait.duration in approx(5000)
            } catch (AssertionError e) {
                failure = e
            }
    
            then:
            failure != null
            failure.message.contains('operation.runAndWait.duration in approx(5000)')
        }
    
        def "can use instants to test that method executes one thing at a time"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/util/VersionNumberTest.groovy

            VersionNumber.parse("11.22.33-eap") == new VersionNumber(11, 22, 33, "eap")
    
            VersionNumber.parse("11.fortyfour") == new VersionNumber(11, 0, 0, "fortyfour")
    
            VersionNumber.parse("1.0.0.0") == new VersionNumber(1, 0, 0, "0")
            VersionNumber.parse("1.0.0.0.0.0.0") == new VersionNumber(1, 0, 0, "0.0.0.0")
            VersionNumber.parse("1.2.3.4-rc1-SNAPSHOT") == new VersionNumber(1, 2, 3, "4-rc1-SNAPSHOT")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:54:04 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  4. hack/serve-prom-scrapes.sh

    # <timestamp>.scrape
    # where <timestamp> is seconds since Jan 1, 1970 UTC.
    # Each such file is taken to be a scrape that lacks timestamps,
    # and the timestamp from the filename is multiplied by the necessary 1000
    # and added to the data in that file.
    
    # This requires an `nc` command that this script knows how to wrangle.
    
    if (( $# != 2 )); then
        echo "Usage: $0 port_num scrapes_dir" >&2
        exit 1
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 04 06:33:06 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. src/net/example_test.go

    package net_test
    
    import (
    	"context"
    	"fmt"
    	"io"
    	"log"
    	"net"
    	"time"
    )
    
    func ExampleListener() {
    	// Listen on TCP port 2000 on all available unicast and
    	// anycast IP addresses of the local system.
    	l, err := net.Listen("tcp", ":2000")
    	if err != nil {
    		log.Fatal(err)
    	}
    	defer l.Close()
    	for {
    		// Wait for a connection.
    		conn, err := l.Accept()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 13 16:36:59 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  6. docs/lambda/README.md

    ```
    
    ### Lambda Target with mTLS authentication
    
    If your lambda target expects mTLS client you can enable it per function target as follows
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 04 19:15:28 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/net/NetShareEnum.java

    /* jcifs smb client library in Java
     * Copyright (C) 2000  "Michael B. Allen" <jcifs at samba dot org>
     * 
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     * 
     * This library is distributed in the hope that it will be useful,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.9K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm/src/testFixtures/groovy/org/gradle/jvm/toolchain/JdkRepository.groovy

            this.jdk = jdk
            this.archiveName = archiveName
    
            archiveFile = zip(jdk.javaHome, File.createTempFile(archiveName, ".tmp").with {deleteOnExit(); it })
            server = new BlockingHttpServer(1000)
        }
    
        URI start() {
            server.start()
            server.uri(archiveName)
        }
    
        void reset() {
            expectHead()
            expectGet()
        }
    
        void expectHead() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 20 08:26:19 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.txt

    10.244.0.109:3000                                HEALTHY                  outbound|3000||grafana.istio-system.svc.cluster.local
    10.244.0.178:80                                  HEALTHY                  outbound|8000||httpbin.default.svc.cluster.local
    10.244.0.176:8080                                HEALTHY                  outbound|80||istio-ingressgateway.istio-system.svc.cluster.local
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 21 14:17:23 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/NetServerEnum2.java

    /* jcifs smb client library in Java
     * Copyright (C) 2000  "Michael B. Allen" <jcifs at samba dot org>
     *                             Gary Rambo <grambo aventail.com>
     * 
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.5K bytes
    - Viewed (0)
Back to top