Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for msvc (0.17 sec)

  1. RELEASE.md

            version is LLVM/clang 17. The official Wheels-published on PyPI will be
            based on Clang; however, users retain the option to build wheels using
            the MSVC compiler following the steps mentioned in
            https://www.tensorflow.org/install/source_windows as has been the case
            before
    
    ### Breaking Changes
    
    *   <DOCUMENT BREAKING CHANGES HERE>
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  2. cmd/admin-handlers-users.go

    	for _, svc := range serviceAccounts {
    		expiryTime := svc.Expiration
    		serviceAccountList = append(serviceAccountList, madmin.ServiceAccountInfo{
    			Description:   svc.Description,
    			ParentUser:    svc.ParentUser,
    			Name:          svc.Name,
    			AccountStatus: svc.Status,
    			AccessKey:     svc.AccessKey,
    			ImpliedPolicy: svc.IsImpliedPolicy(),
    			Expiration:    &expiryTime,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 12:41:13 GMT 2024
    - 77.5K bytes
    - Viewed (0)
  3. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

      # Retrieve full certificate dump of workloads for a given Ztunnel instance.
      istioctl x ztunnel-config services <ztunnel-name[.namespace]> -o json
    `,
    		Aliases: []string{"services", "s", "svc"},
    		Args:    common.validateArgs,
    		RunE: runConfigDump(ctx, common, func(cw *ztunnelDump.ConfigWriter) error {
    			filter := ztunnelDump.ServiceFilter{
    				Namespace: serviceNamespace,
    			}
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed May 01 13:11:40 GMT 2024
    - 22.2K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    	"github.com/minio/pkg/v2/policy"
    	"github.com/secure-io/sio-go"
    	"github.com/zeebo/xxh3"
    )
    
    const (
    	maxEConfigJSONSize        = 262272
    	kubernetesVersionEndpoint = "https://kubernetes.default.svc/version"
    	anonymizeParam            = "anonymize"
    	anonymizeStrict           = "strict"
    )
    
    // Only valid query params for mgmt admin APIs.
    const (
    	mgmtBucket      = "bucket"
    	mgmtPrefix      = "prefix"
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
  5. cmd/site-replication.go

    		if err != nil {
    			return errSRBackendIssue(err)
    		}
    
    		for user, acc := range serviceAccounts {
    			if user == siteReplicatorSvcAcc {
    				// skip the site replicate svc account as it is
    				// already replicated.
    				continue
    			}
    
    			claims, err := globalIAMSys.GetClaimsForSvcAcc(ctx, acc.Credentials.AccessKey)
    			if err != nil {
    				return errSRBackendIssue(err)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
Back to top