Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for DR (0.13 sec)

  1. src/crypto/tls/testdata/Client-TLSv13-ClientCert-RSA-RSAPSS

    00000170  98 ce 74 f2 4c 65 ad 01  aa 76 b5 b0 7c a0 7d 09  |..t.Le...v..|.}.|
    00000180  ad d6 20 7d 12 67 f8 4c  2c 41 37 34 66 86 fe 3d  |.. }.g.L,A74f..=|
    00000190  44 52 f0 08 26 4c b3 e7  71 b3 89 b3 5c 78 7e db  |DR..&L..q...\x~.|
    000001a0  34 31 dc dc 7c 7d 28 e1  41 96 f4 2f 28 60 9f 5b  |41..|}(.A../(`.[|
    000001b0  b2 2b 37 6b 3f 3a 37 e2  38 7a 66 40 fe 44 44 72  |.+7k?:7.8zf@.DDr|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/grpcgen/grpcgen_test.go

    	// identify the service. In k8s store, labels are matched instead.
    	// For server configs to work, the server XDS bootstrap must match the IP.
    	sd.AddService(&model.Service{
    		// Required: namespace (otherwise DR matching fails)
    		Attributes: model.ServiceAttributes{
    			Name:      svcname,
    			Namespace: ns,
    		},
    		Hostname:       host.Name(hn),
    		DefaultAddress: "127.0.5.1",
    		Ports: model.PortList{
    			{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. istioctl/pkg/analyze/analyze.go

    		"Suppress reporting a message code on a specific resource. Values are supplied in the form "+
    			`<code>=<resource> (e.g. '--suppress "IST0102=DestinationRule primary-dr.default"'). Can be repeated. `+
    			`You can include the wildcard character '*' to support a partial match (e.g. '--suppress "IST0102=DestinationRule *.default" ).`)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

                throw new IllegalArgumentException("could not make url use https", e);
            }
        }
    
        public static boolean isSecureUrl(URI url) {
            /*
             * TL;DR: http://127.0.0.1 will bypass this validation, http://localhost will fail this validation.
             *
             * Hundreds of Gradle's integration tests use a local web-server to test logic that relies upon
             * this behavior.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. docs/tr/docs/async.md

    # Concurrency ve async / await
    
    *path operasyon fonksiyonu* için `async def `sözdizimi,  asenkron kod, eşzamanlılık ve paralellik hakkında bazı ayrıntılar.
    
    ## Aceleniz mi var?
    
    <abbr title="too long; didn't read"><strong>TL;DR:</strong></abbr>
    
    Eğer `await` ile çağrılması gerektiğini belirten üçüncü taraf kütüphaneleri kullanıyorsanız, örneğin:
    
    ```Python
    results = await some_library()
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. src/net/http/request_test.go

    // delayedEOFReader never returns (n > 0, io.EOF), instead putting
    // off the io.EOF until a subsequent Read call.
    type delayedEOFReader struct {
    	r io.Reader
    }
    
    func (dr delayedEOFReader) Read(p []byte) (n int, err error) {
    	n, err = dr.r.Read(p)
    	if n > 0 && err == io.EOF {
    		err = nil
    	}
    	return
    }
    
    func TestIssue10884_MaxBytesEOF(t *testing.T) {
    	dst := io.Discard
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route.go

    	for _, httpRoute := range virtualService.Spec.(*networking.VirtualService).Http {
    		for _, destination := range httpRoute.Route {
    			hash, dr := hashForHTTPDestination(push, node, destination)
    			if hash != nil {
    				hashByDestination[destination] = hash
    				destinationRules = append(destinationRules, dr)
    			}
    		}
    	}
    	return hashByDestination, destinationRules
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  8. docs/ru/docs/async.md

    ## Нет времени?<a name="in-a-hurry"></a>
    
    <abbr title="too long; didn't read (основная мысль)"><strong>TL;DR:</strong></abbr>
    
    Допустим, вы используете сторонюю библиотеку, которая требует вызова с ключевым словом `await`:
    
    ```Python
    results = await some_library()
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 39.9K bytes
    - Viewed (0)
  9. docs/pt/docs/async.md

    Detalhes sobre a sintaxe `async def` para *funções de operação de rota* e alguns conceitos de código assíncrono, concorrência e paralelismo.
    
    ## Com pressa?
    
    <abbr title="muito longo; não li"><strong>TL;DR:</strong></abbr>
    
    Se você estiver utilizando bibliotecas de terceiros que dizem para você chamar as funções com `await`, como:
    
    ```Python
    results = await some_library()
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  10. docs/fr/docs/async.md

    ## Vous êtes pressés ?
    
    <abbr title="'too long; didn't read' en anglais, ou 'trop long ; j'ai pas lu'"><strong>TL;DR :</strong></abbr>
    
    Si vous utilisez des bibliothèques tierces qui nécessitent d'être appelées avec `await`, telles que :
    
    ```Python
    results = await some_library()
    ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top