Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 1,092 for vers (0.04 sec)

  1. docs/tr/docs/alternatives.md

    * Python'daki tip belirteçlerini baz alıyordu.
    * Bunlara bağlı olarak veri doğrulaması ve dökümantasyon sağlıyordu.
    * Bir <abbr title="Bağımlılık enjeksiyonu: Dependency Injection">bağımlılık enjeksiyonu</abbr> sistemi vardı.
    
    Veri doğrulama, veri dönüştürme ve dökümantasyon için Pydantic gibi bir üçüncü parti kütüphane kullanmıyor, kendi içerisinde bunlara sahip. Yani bu veri tipi tanımlarını tekrar kullanmak pek de kolay değil.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  2. src/go/doc/filter.go

    		if matchDecl(td.Decl, f) {
    			n = 1
    		} else {
    			// type name doesn't match, but we may have matching consts, vars, factories or methods
    			td.Consts = filterValues(td.Consts, f)
    			td.Vars = filterValues(td.Vars, f)
    			td.Funcs = filterFuncs(td.Funcs, f)
    			td.Methods = filterFuncs(td.Methods, f)
    			n += len(td.Consts) + len(td.Vars) + len(td.Funcs) + len(td.Methods)
    		}
    		if n > 0 {
    			a[w] = td
    			w++
    		}
    	}
    	return a[0:w]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. cluster/common.sh

      echo "Cleared config for ${CONTEXT} from ${KUBECONFIG}"
    }
    
    # Gets username, password for the current-context in kubeconfig, if they exist.
    # Assumed vars:
    #   KUBECONFIG  # if unset, defaults to global
    #   KUBE_CONTEXT  # if unset, defaults to current-context
    #
    # Vars set:
    #   KUBE_USER
    #   KUBE_PASSWORD
    #
    # KUBE_USER,KUBE_PASSWORD will be empty if no current-context is set, or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authn_audit_test.go

    	}
    	if !strings.Contains(ev.ResponseStatus.Message, "basic") {
    		t.Errorf("Expected response status message to contain basic auth method, got %s", ev.ResponseStatus.Message)
    	}
    	if ev.Verb != "list" {
    		t.Errorf("Unexpected verb, expected list, got %s", ev.Verb)
    	}
    	if ev.RequestURI != "/api/v1/namespaces/default/pods" {
    		t.Errorf("Unexpected user, expected /api/v1/namespaces/default/pods, got %s", ev.RequestURI)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 12 21:42:41 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  5. api/discovery/apis__networking.k8s.io__v1alpha1.json

          "storageVersionHash": "3cDF5hqTkLY=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "ServiceCIDR",
          "name": "servicecidrs/status",
          "namespaced": false,
          "singularName": "",
          "verbs": [
            "get",
            "patch",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. src/expvar/expvar.go

    }
    
    // All published variables.
    var vars Map
    
    // Publish declares a named exported variable. This should be called from a
    // package's init function when it creates its Vars. If the name is already
    // registered then this will log.Panic.
    func Publish(name string, v Var) {
    	if _, dup := vars.m.LoadOrStore(name, v); dup {
    		log.Panicln("Reuse of exported var name:", name)
    	}
    	vars.keysMu.Lock()
    	defer vars.keysMu.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 21:32:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. cmd/bucket-replication-handlers.go

    	ctx := newContext(r, w, "PutBucketReplicationConfig")
    	defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r))
    
    	vars := mux.Vars(r)
    	bucket := vars["bucket"]
    	objectAPI := api.ObjectAPI()
    	if objectAPI == nil {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrServerNotInitialized), r.URL)
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/tuple.go

    // assignments; they are not first class types of Go.
    type Tuple struct {
    	vars []*Var
    }
    
    // NewTuple returns a new tuple for the given variables.
    func NewTuple(x ...*Var) *Tuple {
    	if len(x) > 0 {
    		return &Tuple{vars: x}
    	}
    	return nil
    }
    
    // Len returns the number variables of tuple t.
    func (t *Tuple) Len() int {
    	if t != nil {
    		return len(t.vars)
    	}
    	return 0
    }
    
    // At returns the i'th variable of tuple t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 26 17:18:58 UTC 2021
    - 929 bytes
    - Viewed (0)
  9. api/discovery/apis__admissionregistration.k8s.io__v1beta1.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. api/discovery/apis__certificates.k8s.io__v1.json

          "namespaced": false,
          "singularName": "",
          "verbs": [
            "get",
            "patch",
            "update"
          ]
        },
        {
          "kind": "CertificateSigningRequest",
          "name": "certificatesigningrequests/status",
          "namespaced": false,
          "singularName": "",
          "verbs": [
            "get",
            "patch",
            "update"
          ]
        }
      ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top