Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 156 for Dialer (0.11 sec)

  1. maven-core/src/test/resources-project-builder/micromailer/pom.xml

      </parent>
    
      <groupId>org.sonatype.micromailer</groupId>
      <artifactId>micromailer</artifactId>
      <version>1.0.3</version>
      <packaging>jar</packaging>
      <name>Micro Mailer</name>
      <!-- SCM -->
      <scm>
        <connection>scm:svn:http://svn.sonatype.org/spice/trunk/micromailer</connection>
        <url>https://svn.sonatype.org/spice/trunk/micromailer</url>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Aug 03 09:29:10 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. pkg/test/envoy/binary.go

    	if err != nil {
    		return "", err
    	}
    
    	return latestBinPath, nil
    }
    
    // FindBinaryOrFail calls FindBinary and fails the given test if an error occurs.
    func FindBinaryOrFail(t test.Failer) string {
    	p, err := FindBinary()
    	if err != nil {
    		t.Fatal(err)
    	}
    	return p
    }
    
    func findBinaries() ([]string, error) {
    	binPaths := make([]string, 0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 18 22:00:05 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. src/runtime/symtab_test.go

    	// instruction is (hopefully) an alignment instruction.
    	for runtime.FuncForPC(pc) == f {
    		pc++
    	}
    	pc--
    
    	// Is this an alignment region filler instruction? We only check this
    	// on amd64 for simplicity. If this function has no filler, then we may
    	// get a false negative, but will never get a false positive.
    	if runtime.GOARCH == "amd64" {
    		code := *(*uint8)(unsafe.Pointer(pc))
    		if code != 0xcc { // INT $3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 21:46:33 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  4. tests/integration/security/util/secret/secret.go

    const IstioDNSSecretType = "istio.io/dns-key-and-cert"
    
    // ExamineDNSSecretOrFail calls ExamineDNSSecret and fails t if an error occurs.
    func ExamineDNSSecretOrFail(t test.Failer, secret *v1.Secret, expectedID string) {
    	t.Helper()
    	if err := ExamineDNSSecret(secret, expectedID); err != nil {
    		t.Fatal(err)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 22 04:04:14 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/util/traffic/result.go

    func (r Result) PercentSuccess() float64 {
    	return float64(r.SuccessfulRequests) / float64(r.TotalRequests)
    }
    
    // CheckSuccessRate asserts that a minimum success threshold was met.
    func (r Result) CheckSuccessRate(t test.Failer, minimumPercent float64) {
    	if r.PercentSuccess() < minimumPercent {
    		t.Fatalf("Minimum success threshold, %f, was not met. %d/%d (%f) requests failed: %v",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 12 22:50:35 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  6. test/typeparam/issue44688.go

    package main
    
    type A1[T any] struct {
    	val T
    }
    
    func (p *A1[T]) m1(val T) {
    	p.val = val
    }
    
    type A2[T any] interface {
    	m2(T)
    }
    
    type B1[T any] struct {
    	filler int
    	*A1[T]
    	A2[T]
    }
    
    type B2[T any] interface {
    	A2[T]
    }
    
    type ImpA2[T any] struct {
    	f T
    }
    
    func (a2 *ImpA2[T]) m2(s T) {
    	a2.f = s
    }
    
    type C[T any] struct {
    	filler1 int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/match/matcher.go

    		if m(i) {
    			return i, nil
    		}
    	}
    
    	return nil, errors.New("found 0 matching echo instances")
    }
    
    // FirstOrFail calls First and then fails the test if an error occurs.
    func (m Matcher) FirstOrFail(t test.Failer, i echo.Instances) echo.Instance {
    	res, err := m.First(i)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return res
    }
    
    // Any indicates whether any echo.Instance matches this matcher.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 20:45:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. cluster/addons/fluentd-gcp/README.md

    ```
    
    [cpu]: https://kubernetes.io/docs/tasks/configure-pod-container/assign-cpu-resource/
    [memory]: https://kubernetes.io/docs/tasks/configure-pod-container/assign-memory-resource/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/grpc_service.go

    				c, err := net.DialUnix(unixProtocol, nil, &net.UnixAddr{Name: addr})
    				if err != nil {
    					klog.ErrorS(err, "failed to create connection to unix socket", "addr", addr)
    				} else {
    					klog.V(4).InfoS("Successfully dialed Unix socket", "addr", addr)
    				}
    				return c, err
    			}),
    		grpc.WithChainUnaryInterceptor(recordMetricsInterceptor(providerName)),
    	)
    
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 23:18:16 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. pkg/test/kube/util.go

    				name, waitTime)
    		}
    	}
    }
    
    // WaitForSecretToExistOrFail calls WaitForSecretToExist and fails the given test.Failer if an error occurs.
    func WaitForSecretToExistOrFail(t test.Failer, a kubernetes.Interface, namespace, name string,
    	waitTime time.Duration,
    ) *corev1.Secret {
    	t.Helper()
    	s, err := WaitForSecretToExist(a, namespace, name, waitTime)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top