Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 979 for syncs (0.06 sec)

  1. cmd/kubelet/kubelet.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // The kubelet binary is responsible for maintaining a set of containers on a particular host VM.
    // It syncs data from both configuration file(s) as well as from a quorum of etcd servers.
    // It then communicates with the container runtime (or a CRI shim for the runtime) to see what is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 20:06:05 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/ttlafterfinishedcontroller.go

    func (o *TTLAfterFinishedControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    	fs.Int32Var(&o.ConcurrentTTLSyncs, "concurrent-ttl-after-finished-syncs", o.ConcurrentTTLSyncs, fmt.Sprintf("The number of %s workers that are allowed to sync concurrently.", names.TTLAfterFinishedController))
    }
    
    // ApplyTo fills up TTLAfterFinishedController config with options.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 19 13:01:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. pkg/proxy/util/linebuffer.go

    	lines int
    }
    
    // NewDiscardLineBuffer returns a dummy LineBuffer that counts the number of writes but
    // throws away the data. (This is used for iptables proxy partial syncs, to keep track of
    // how many rules we managed to avoid having to sync.)
    func NewDiscardLineBuffer() LineBuffer {
    	return &discardLineBuffer{}
    }
    
    // Write is part of LineBuffer
    func (buf *discardLineBuffer) Write(args ...interface{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. cmd/storage-interface.go

    	ReadMultiple(ctx context.Context, req ReadMultipleReq, resp chan<- ReadMultipleResp) error
    	CleanAbandonedData(ctx context.Context, volume string, path string) error
    
    	// Write all data, syncs the data to disk.
    	// Should be used for smaller payloads.
    	WriteAll(ctx context.Context, volume string, path string, b []byte) (err error)
    
    	// Read all.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/dra/claiminfo.go

    	for _, claimInfo := range cache.claimInfo {
    		if claimInfo.hasPodReference(UID) {
    			return true
    		}
    	}
    	return false
    }
    
    // syncToCheckpoint syncs the full claim info cache state to a checkpoint.
    func (cache *claimInfoCache) syncToCheckpoint() error {
    	claimInfoStateList := make(state.ClaimInfoStateList, 0, len(cache.claimInfo))
    	for _, infoClaim := range cache.claimInfo {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. pkg/proxy/healthcheck/proxier_health.go

    			// there's an unprocessed update queued for this proxier, but it's not late yet.
    			continue
    		}
    		return false, proxierLastUpdated
    	}
    	return true, lastUpdated
    }
    
    // SyncNode syncs the node and determines if it is eligible or not. Eligible is
    // defined as being: not tainted by ToBeDeletedTaint and not deleted.
    func (hs *ProxierHealthServer) SyncNode(node *v1.Node) {
    	hs.lock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 10:41:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/tasks/Sync.java

     * // filter will not be deleted.
     * task sync(type: Sync) {
     *     from 'source'
     *     into 'dest'
     *     preserve {
     *         include 'extraDir/**'
     *         include 'dir1/**'
     *         exclude 'dir1/extra.txt'
     *     }
     * }
     * </pre>
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class Sync extends AbstractCopyTask {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  8. pkg/kube/krt/sync.go

    John Howard <******@****.***> 1712154307 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 14:25:07 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/android-studio-build-sync-popup.png

    android-studio-build-sync-popup.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. istioctl/pkg/internaldebug/internal-debug.go

    `,
    		Example: `  # Retrieve sync status for all Envoys in a mesh
      istioctl x internal-debug syncz
    
      # Retrieve sync diff for a single Envoy and Istiod
      istioctl x internal-debug syncz istio-egressgateway-59585c5b9c-ndc59.istio-system
    
      # SECURITY OPTIONS
    
      # Retrieve syncz debug information directly from the control plane, using token security
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top