Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,035 for updateIPs (0.22 sec)

  1. test/fixedbugs/issue17631.go

    		about      string
    		before     map[string]uint
    		update     map[string]int
    		updateTime time.Time
    		expect     map[string]int
    	}{
    		about:   "this one",
    		updates: map[string]int{"gopher": 10}, // ERROR "unknown field updates in struct literal of type|unknown field .*updates.* in .*unnamed struct.*"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:59:09 UTC 2022
    - 540 bytes
    - Viewed (0)
  2. pkg/kubelet/config/file.go

    	config := newSourceFile(path, nodeName, period, updates)
    	klog.V(1).InfoS("Watching path", "path", path)
    	config.run()
    }
    
    func newSourceFile(path string, nodeName types.NodeName, period time.Duration, updates chan<- interface{}) *sourceFile {
    	send := func(objs []interface{}) {
    		var pods []*v1.Pod
    		for _, o := range objs {
    			pods = append(pods, o.(*v1.Pod))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 01 07:19:44 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/endpointcontroller.go

    	fs.DurationVar(&o.EndpointUpdatesBatchPeriod.Duration, "endpoint-updates-batch-period", o.EndpointUpdatesBatchPeriod.Duration, "The length of endpoint updates batching period. Processing of pod changes will be delayed by this duration to join them with potential upcoming updates and reduce the overall number of endpoints updates. Larger number = higher endpoint programming latency, but lower number of endpoints revision generated")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 24 09:36:53 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  4. pkg/kubelet/config/apiserver.go

    		newSourceApiserverFromLW(lw, updates)
    	}()
    }
    
    // newSourceApiserverFromLW holds creates a config source that watches and pulls from the apiserver.
    func newSourceApiserverFromLW(lw cache.ListerWatcher, updates chan<- interface{}) {
    	send := func(objs []interface{}) {
    		var pods []*v1.Pod
    		for _, o := range objs {
    			pods = append(pods, o.(*v1.Pod))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 21 19:46:27 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/status/ready/probe_test.go

    			"only lds",
    			"listener_manager.lds.update_success: 1",
    			"config not fully received from XDS server: cds updates: 0 successful, 0 rejected; lds updates: 1 successful, 0 rejected",
    		},
    		{
    			"only cds",
    			"cluster_manager.cds.update_success: 1",
    			"config not fully received from XDS server: cds updates: 1 successful, 0 rejected; lds updates: 0 successful, 0 rejected",
    		},
    		{
    			"reject CDS",
    			`cluster_manager.cds.update_rejected: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SigningDigest.java

    import java.io.IOException;
    
    /**
     * To filter 0 len updates and for debugging
     */
    
    public class SigningDigest implements SmbConstants {
    
        static LogStream log = LogStream.getInstance();
    
        private MessageDigest digest;
        private byte[] macSigningKey;
        private boolean bypass = false;
        private int updates;
        private int signSequence;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7K bytes
    - Viewed (0)
  7. pkg/kubelet/config/http.go

    	header      http.Header
    	nodeName    types.NodeName
    	updates     chan<- interface{}
    	data        []byte
    	failureLogs int
    	client      *http.Client
    }
    
    // NewSourceURL specifies the URL where to read the Pod configuration from, then watches it for changes.
    func NewSourceURL(url string, header http.Header, nodeName types.NodeName, period time.Duration, updates chan<- interface{}) {
    	config := &sourceURL{
    		url:      url,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 01 07:19:44 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/Console.java

        // TODO(ew): Consider whether this belongs in BuildProgressArea or here
        StyledLabel getStatusBar();
    
        /**
         * Flushes any pending updates. Updates may or may not be buffered, and this method should be called to finish rendering and pending updates, such as updating the status bar.
         */
        void flush();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherRegistry.java

        /**
         * Updates the watchers after changes to the root.
         *
         * @throws WatchingNotSupportedException when the native watchers can't be updated.
         */
        void virtualFileSystemContentsChanged(Collection<FileSystemLocationSnapshot> removedSnapshots, Collection<FileSystemLocationSnapshot> addedSnapshots, SnapshotHierarchy root);
    
        /**
         * Updates the VFS and the watchers when the build started.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/hash/AbstractByteHasher.java

      private final ByteBuffer scratch = ByteBuffer.allocate(8).order(ByteOrder.LITTLE_ENDIAN);
    
      /** 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. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 3.5K bytes
    - Viewed (0)
Back to top