Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 45 for Co (0.03 sec)

  1. src/net/http/cookiejar/jar.go

    	"slices"
    	"strings"
    	"sync"
    	"time"
    )
    
    // PublicSuffixList provides the public suffix of a domain. For example:
    //   - the public suffix of "example.com" is "com",
    //   - the public suffix of "foo1.foo2.foo3.co.uk" is "co.uk", and
    //   - the public suffix of "bar.pvt.k12.ma.us" is "pvt.k12.ma.us".
    //
    // Implementations of PublicSuffixList must be safe for concurrent use by
    // multiple goroutines.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. docs/pl/docs/help-fastapi.md

    Uwielbiam czytać w jaki sposób **FastAPI** jest używane, co Ci się w nim podobało, w jakim projekcie/firmie go używasz itp.
    
    ## Głosuj na FastAPI
    
    * <a href="https://www.slant.co/options/34241/~fastapi-review" class="external-link" target="_blank">Głosuj na **FastAPI** w Slant</a>.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/utils.go

    	})
    }
    
    func testCheckResultFunc(t *testing.T, w watch.Interface, check func(actualEvent watch.Event)) {
    	select {
    	case res := <-w.ResultChan():
    		obj := res.Object
    		if co, ok := obj.(runtime.CacheableObject); ok {
    			res.Object = co.GetObject()
    		}
    		check(res)
    	case <-time.After(wait.ForeverTestTimeout):
    		t.Errorf("time out after waiting %v on ResultChan", wait.ForeverTestTimeout)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 07:26:55 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. docs/pl/docs/features.md

    }
    
    my_second_user: User = User(**second_user_data)
    ```
    
    !!! info
        `**second_user_data` oznacza:
    
        Przekaż klucze i wartości słownika `second_user_data` bezpośrednio jako argumenty klucz-wartość, co jest równoznaczne z: `User(id=4, name="Mary", joined="2018-11-30")`
    
    ### Wsparcie edytora
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching_test.go

    	exactMatch := v1.Exact
    	equivalentMatch := v1.Equivalent
    
    	mapper := runtime.NewEquivalentResourceRegistryWithIdentity(func(resource schema.GroupResource) string {
    		if resource.Resource == "deployments" {
    			// co-locate deployments in all API groups
    			return "/deployments"
    		}
    		return ""
    	})
    	mapper.RegisterKindFor(gvr("extensions", "v1beta1", "deployments"), "", gvk("extensions", "v1beta1", "Deployment"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    }
    
    func TestIsFullyQualifiedDomainName(t *testing.T) {
    	goodValues := []string{
    		"a.com",
    		"k8s.io",
    		"dev.k8s.io",
    		"dev.k8s.io.",
    		"foo.example.com",
    		"this.is.a.really.long.fqdn",
    		"bbc.co.uk",
    		"10.0.0.1", // DNS labels can start with numbers and there is no requirement for letters.
    		"hyphens-are-good.k8s.io",
    		strings.Repeat("a", 63) + ".k8s.io",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorTest.groovy

            ['java.home': "java-home",
             'java.version': "1.${version}.0_66",
             'java.vendor': "Hewlett-Packard Co.",
             'os.arch': "ia64",
             'java.vm.name': "Java HotSpot(TM) 64-Bit Server VM",
             'java.vm.version': "25.66-b17",
             'java.vm.vendor': "Hewlett-Packard Co.",
             'java.runtime.name': "Java(TM) SE Runtime Environment",
             'java.runtime.version': "1.${version}.0_66-b08"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    	if po == nil {
    		return nil
    	}
    	co := &metav1.CreateOptions{
    		DryRun:          po.DryRun,
    		FieldManager:    po.FieldManager,
    		FieldValidation: po.FieldValidation,
    	}
    	co.TypeMeta.SetGroupVersionKind(metav1.SchemeGroupVersion.WithKind("CreateOptions"))
    	return co
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. pkg/kube/util.go

    	}
    	clientConfig := clientcmd.NewDefaultClientConfig(*rawConfig, &clientcmd.ConfigOverrides{})
    	restConfig, err := clientConfig.ClientConfig()
    	if err != nil {
    		return nil, err
    	}
    	for _, co := range configOverrides {
    		co(restConfig)
    	}
    
    	return SetRestDefaults(restConfig), nil
    }
    
    // InClusterConfig returns the rest.Config for in cluster usage.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. docs/pl/docs/tutorial/first-steps.md

                            "content": {
                                "application/json": {
    
    
    
    ...
    ```
    
    #### Do czego służy OpenAPI
    
    Schemat OpenAPI jest tym, co zasila dwa dołączone interaktywne systemy dokumentacji.
    
    Istnieją dziesiątki alternatyw, wszystkie oparte na OpenAPI. Możesz łatwo dodać dowolną z nich do swojej aplikacji zbudowanej za pomocą **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top