Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 280 for inversion (0.17 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/fieldselector_test.go

    			},
    			{
    				version:              version,
    				fieldSelector:        "spec.quantity=2",
    				expectedByName:       sets.New("shirt1", "shirt3"),
    				expectObserveRemoval: sets.New("shirt1"), // shirt 1 is deleted
    			},
    			{
    				version:        version,
    				fieldSelector:  "spec.size=M",
    				expectedByName: sets.New("shirt2"),
    			},
    			{
    				version:        version,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:53:03 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. src/crypto/tls/boring_test.go

    	test := func(t *testing.T, name string, v uint16, msg string) {
    		t.Run(name, func(t *testing.T) {
    			serverConfig := testConfig.Clone()
    			serverConfig.MinVersion = VersionSSL30
    			clientConfig := testConfig.Clone()
    			clientConfig.MinVersion = v
    			clientConfig.MaxVersion = v
    			_, _, err := testHandshake(t, clientConfig, serverConfig)
    			if msg == "" {
    				if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. docs/fr/docs/tutorial/path-params.md

        que des vérifications d'erreur, de l'auto-complétion, etc.
    
    ## <abbr title="aussi appelé sérialisation, ou parfois parsing ou marshalling en anglais">Conversion</abbr> de données
    
    Si vous exécutez cet exemple et allez sur <a href="http://127.0.0.1:8000/items/3" class="external-link" target="_blank">http://127.0.0.1:8000/items/3</a>, vous aurez comme réponse :
    
    ```JSON
    {"item_id":3}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/codec.go

    func (internalGroupVersioner) KindForGroupVersionKinds(kinds []schema.GroupVersionKind) (schema.GroupVersionKind, bool) {
    	for _, kind := range kinds {
    		if kind.Version == APIVersionInternal {
    			return kind, true
    		}
    	}
    	for _, kind := range kinds {
    		return schema.GroupVersionKind{Group: kind.Group, Version: APIVersionInternal, Kind: kind.Kind}, true
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:20:30 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

            """
            abstract class $valueSourceClassName implements ${ValueSource.name}<$returnType, Params> {
                interface Params extends ${ValueSourceParameters.name} {
                    Property<$inputType> getInput()
                }
    
                @Override $returnType obtain() {
                    return $conversion
                }
            }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  6. pkg/test/echo/server/endpoint/http.go

    				// HTTP server to return in the response. However, for debugging, we can at least log
    				// them at this level.
    				epLog.Infof("TLS connection with alpn: %v", info.SupportedProtos)
    				return nil, nil
    			},
    			MinVersion: tls.VersionTLS12,
    		}
    		// Listen on the given port and update the port if it changed from what was passed in.
    		listener, port, err = listenOnAddressTLS(s.ListenerIP, s.Port.Port, config)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. pkg/kube/adapter.go

    	//
    	// For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
    	// `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]` and `matchPolicy: Equivalent`,
    	// an API request to apps/v1beta1 deployments would be converted and sent to the webhook
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 10 16:40:00 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/secure_serving.go

    		// Can't use TLSv1.1 because of RC4 cipher usage
    		MinVersion: tls.VersionTLS12,
    		// enable HTTP2 for go's 1.7 HTTP Server
    		NextProtos: []string{"h2", "http/1.1"},
    	}
    
    	// these are static aspects of the tls.Config
    	if s.DisableHTTP2 {
    		klog.Info("Forcing use of http/1.1 only")
    		tlsConfig.NextProtos = []string{"http/1.1"}
    	}
    	if s.MinTLSVersion > 0 {
    		tlsConfig.MinVersion = s.MinTLSVersion
    	}
    	if len(s.CipherSuites) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. src/image/color/ycbcr.go

    	// if cb < 0 {
    	//     cb = 0
    	// } else if cb > 0xff {
    	//     cb = ^int32(0)
    	// }
    	//
    	// but uses fewer branches and is faster.
    	// Note that the uint8 type conversion in the return
    	// statement will convert ^int32(0) to 0xff.
    	// The code below to compute cr uses a similar pattern.
    	//
    	// Note that -11056 - 21712 + 32768 equals 0.
    	cb := -11056*r1 - 21712*g1 + 32768*b1 + 257<<15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. cni/pkg/plugin/plugin_test.go

            "search": ["testSearch"],
            "options": ["testOption"]
        },
        "prevResult": {
            "cniversion": "%s",
            "interfaces": [
                {
                    "name": "%s",
                    "sandbox": "%s"
                }
            ],
            "ips": [
                {
                    "version": "4",
                    "address": "10.0.0.2/24",
                    "gateway": "10.0.0.1",
                    "interface": 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top