Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 4,438 for Updatef (0.26 sec)

  1. guava/src/com/google/common/hash/AbstractByteHasher.java

      /** Updates this hasher with the given byte. */
      protected abstract void update(byte b);
    
      /** Updates this hasher with the given bytes. */
      protected void update(byte[] b) {
        update(b, 0, b.length);
      }
    
      /** Updates this hasher with {@code len} bytes starting at {@code off} in the given buffer. */
      protected void update(byte[] b, int off, int len) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  2. 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)
  3. releasenotes/notes/push-cds-and-eds-on-virtualservice-update.yaml

    ---
    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
      - 27650
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 02 00:07:10 UTC 2020
    - 176 bytes
    - Viewed (0)
  4. pkg/proxy/config/config_test.go

    	state   map[types.NamespacedName]*v1.Service
    	synced  bool
    	updated chan []*v1.Service
    	process func([]*v1.Service)
    }
    
    func NewServiceHandlerMock() *ServiceHandlerMock {
    	shm := &ServiceHandlerMock{
    		state:   make(map[types.NamespacedName]*v1.Service),
    		updated: make(chan []*v1.Service, 5),
    	}
    	shm.process = func(services []*v1.Service) {
    		shm.updated <- services
    	}
    	return shm
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. pilot/pkg/xds/workload_test.go

    		// Add service: we should not get any new resources, but updates to existing ones
    		// Note: we are not subscribed to svc1 explicitly, but it impacts pods we are subscribed to
    		createService(s, "svc1", "default", map[string]string{"app": "sa"})
    		expect(ads.ExpectResponse(), "Kubernetes//Pod/default/pod2")
    		// Creating a pod in the service should send an update as usual
    		createPod(s, "pod", "sa", "127.0.0.1", "node")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/AbstractByteHasher.java

      /** Updates this hasher with the given byte. */
      protected abstract void update(byte b);
    
      /** Updates this hasher with the given bytes. */
      protected void update(byte[] b) {
        update(b, 0, b.length);
      }
    
      /** Updates this hasher with {@code len} bytes starting at {@code off} in the given buffer. */
      protected void update(byte[] b, int off, int len) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/cache/cache.go

    		return fmt.Errorf("pod %v(%v) is not added to scheduler cache, so cannot be updated", key, klog.KObj(oldPod))
    	}
    
    	// An assumed pod won't have Update/Remove event. It needs to have Add event
    	// before Update event, in which case the state would change from Assumed to Added.
    	if cache.assumedPods.Has(key) {
    		return fmt.Errorf("assumed pod %v(%v) should not be updated", key, klog.KObj(oldPod))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  8. .github/workflows/update-nightly.yml

    Joyce <******@****.***> 1694537156 -0300
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 16:45:56 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

      // Note: We can't modify the graph while navigating through it, as erasing
      // invalidate pointers.
      // So instead we capture all the updates in the below map, and then
      // process them after.
    
      // Container to hold all update actions on ops.
      // Key: Operation to update.
      // Value: optional list of argument indices to delete from this op.
      // Note that we use MapVector because we want to iterate on the same order
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. pkg/registry/apps/deployment/storage/storage_test.go

    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		// continuously submits a patch that updates a label and verifies the label update was effective
    		labelName := "timestamp"
    		for i := 0; ; i++ {
    			select {
    			case <-stopCh:
    				return
    			default:
    				expectedLabelValue := fmt.Sprint(i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:45 UTC 2023
    - 19.7K bytes
    - Viewed (0)
Back to top