Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,424 for pubdate (0.24 sec)

  1. cluster/addons/cloud-controller-manager/cloud-node-controller-role.yaml

      - get
      - update
    - apiGroups:
      - ""
      resources:
      - nodes
      verbs:
      - get
      - update
      - patch
    - apiGroups:
      - ""
      resources:
      - namespaces
      verbs:
      - get
    - apiGroups:
      - ""
      resources:
      - nodes/status
      verbs:
      - patch
      - update
    - apiGroups:
      - ""
      resources:
      - secrets
      verbs:
      - create
      - delete
      - get
      - update
    - apiGroups:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 08 14:40:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. api/discovery/apis__apps__v1.json

            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "DaemonSet",
          "name": "daemonsets/status",
          "namespaced": true,
          "singularName": "",
          "verbs": [
            "get",
            "patch",
            "update"
          ]
        },
        {
          "categories": [
            "all"
          ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. pkg/controller/endpointslicemirroring/metrics/cache.go

    // Must be called holding lock.
    func (c *Cache) desiredAndActualSlices() metricsUpdate {
    	mUpdate := metricsUpdate{}
    	for _, spCache := range c.cache {
    		for _, eInfo := range spCache.items {
    			mUpdate.actual += eInfo.Slices
    			mUpdate.desired += numDesiredSlices(eInfo.Endpoints, int(c.maxEndpointsPerSlice))
    		}
    	}
    	return mUpdate
    }
    
    // updateMetrics updates metrics with the values from this Cache.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. pkg/ledger/smt_test.go

    	ch = make(chan result, 1)
    	smt2.update(smt2.root, keys[1:], values[1:], nil, 0, smt.trieHeight, false, true, ch)
    	res = <-ch
    	cleanRoot := res.update
    	if !bytes.Equal(newRoot, cleanRoot) {
    		t.Fatal("roots mismatch")
    	}
    
    	// Empty the trie
    	var newValues [][]byte
    	for i := 0; i < 10; i++ {
    		newValues = append(newValues, defaultLeaf)
    	}
    	ch = make(chan result, 1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. cluster/addons/addon-manager/CHANGELOG.md

    ### Version 9.0.1  (Wed April 10 2019 Zihong Zheng <******@****.***>)
     - Update to use debian-base:v1.0.0.
    
    ### Version 9.0  (Wed January 16 2019 Jordan Liggitt <******@****.***>)
     - Prune workload resources via apps/v1 APIs
     - Update kubectl to v1.13.2.
    
    ### Version 8.9  (Fri October 19 2018 Jeff Grafton <******@****.***>)
     - Update to use debian-base:0.4.0.
     - Update kubectl to v1.11.3.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 01:39:45 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/artifacts/kitten-rc.yaml

    apiVersion: v1
    kind: ReplicationController
    metadata:
      name: update-demo-kitten
    spec:
      selector:
        name: update-demo
        version: kitten
      template:
        metadata:
          labels:
            name: update-demo
            version: kitten
        spec:
          containers:
          - image: registry.k8s.io/update-demo:kitten
            name: update-demo
            ports:
            - containerPort: 80
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 401 bytes
    - Viewed (0)
  7. pkg/scheduler/util/assumecache/assume_cache_test.go

    	key := oldObj.GetName()
    
    	// Add old object to cache.
    	informer.add(oldObj)
    	verify(ktesting.WithStep(tCtx, "after initial update"), cache, key, oldObj, oldObj)
    
    	// Update object.
    	informer.update(newObj)
    	verify(ktesting.WithStep(tCtx, "after initial update"), cache, key, newObj, newObj)
    
    	// Some error cases (don't occur in practice).
    	informer.add(1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SigningDigest.java

            }
        }
    
        public void update( byte[] input, int offset, int len ) {
            if( log.level >= 5 ) {
                log.println( "update: " + updates + " " + offset + ":" + len );
                Hexdump.hexdump( log, input, offset, Math.min( len, 256 ));
                log.flush();
            }
            if( len == 0 ) {
                return; /* CRITICAL */
            }
            digest.update( input, offset, len );
            updates++;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7K bytes
    - Viewed (0)
  9. plugin/pkg/admission/noderestriction/admission_test.go

    			podsGetter: existingPods,
    			attributes: admission.NewAttributesRecord(mynodeObjConfigB, mynodeObjConfigA, nodeKind, mynodeObj.Namespace, mynodeObj.Name, nodeResource, "", admission.Update, &metav1.UpdateOptions{}, false, mynode),
    			err:        "update configSource to a new non-nil configSource",
    		},
    		{
    			name:       "allow update of my node: non-nil configSource unchanged",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  10. clause/update_test.go

    		Result  string
    		Vars    []interface{}
    	}{
    		{
    			[]clause.Interface{clause.Update{}},
    			"UPDATE `users`", nil,
    		},
    		{
    			[]clause.Interface{clause.Update{Modifier: "LOW_PRIORITY"}},
    			"UPDATE LOW_PRIORITY `users`", nil,
    		},
    		{
    			[]clause.Interface{clause.Update{Table: clause.Table{Name: "products"}, Modifier: "LOW_PRIORITY"}},
    			"UPDATE LOW_PRIORITY `products`", nil,
    		},
    	}
    
    	for idx, result := range results {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Jun 02 01:18:01 UTC 2020
    - 722 bytes
    - Viewed (0)
Back to top