Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 90 for info2 (0.13 sec)

  1. pkg/proxy/nftables/proxier.go

    	}
    
    	// Sync rules.
    	proxier.logger.V(2).Info("Reloading service nftables data",
    		"numServices", len(proxier.svcPortMap),
    		"numEndpoints", totalEndpoints,
    	)
    
    	if klogV9 := klog.V(9); klogV9.Enabled() {
    		klogV9.InfoS("Running nftables transaction", "transaction", tx.String())
    	}
    
    	err = proxier.nftables.Run(context.TODO(), tx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                }
                BasicFileInformation info = response.getInfo(BasicFileInformation.class);
                this.isExists = true;
                if ( info instanceof FileBasicInfo ) {
                    this.attributes = info.getAttributes() & ATTR_GET_MASK;
                    this.createTime = info.getCreateTime();
                    this.lastModified = info.getLastWriteTime();
                    this.lastAccess = info.getLastAccessTime();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  3. cmd/xl-storage.go

    func (s *xlStorage) DiskInfo(ctx context.Context, _ DiskInfoOptions) (info DiskInfo, err error) {
    	info, err = s.diskInfoCache.GetWithCtx(ctx)
    	info.NRRequests = s.nrRequests
    	info.Rotational = s.rotational
    	info.MountPath = s.drivePath
    	info.Endpoint = s.endpoint.String()
    	info.Scanning = atomic.LoadInt32(&s.scanning) == 1
    	return info, err
    }
    
    // getVolDir - will convert incoming volume names to
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  4. staging/src/k8s.io/api/apps/v1/types.go

    	// daemon pod and are supposed to run the daemon pod.
    	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
    	CurrentNumberScheduled int32 `json:"currentNumberScheduled" protobuf:"varint,1,opt,name=currentNumberScheduled"`
    
    	// The number of nodes that are running the daemon pod, but are
    	// not supposed to run the daemon pod.
    	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool.go

    			defer mu.Unlock()
    
    			allMerged = dataUsageCache{Info: dataUsageCacheInfo{Name: dataUsageRoot}}
    			for _, info := range results {
    				if info.Info.LastUpdate.IsZero() {
    					// Not filled yet.
    					return
    				}
    				allMerged.merge(info)
    			}
    			if allMerged.root() != nil && allMerged.Info.LastUpdate.After(lastUpdate) {
    				updates <- allMerged.dui(allMerged.Info.Name, allBuckets)
    				lastUpdate = allMerged.Info.LastUpdate
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  6. src/go/build/build.go

    			}
    			continue
    		}
    
    		data, filename := info.header, info.name
    
    		if info.parseErr != nil {
    			badGoFile(name, info.parseErr)
    			// Fall through: we might still have a partial AST in info.parsed,
    			// and we want to list files with parse errors anyway.
    		}
    
    		var pkg string
    		if info.parsed != nil {
    			pkg = info.parsed.Name.Name
    			if pkg == "documentation" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier.go

    	conntrackTCPLiberal := false
    	if val, err := sysctl.GetSysctl(sysctlNFConntrackTCPBeLiberal); err == nil && val != 0 {
    		conntrackTCPLiberal = true
    		logger.Info("nf_conntrack_tcp_be_liberal set, not installing DROP rules for INVALID packets")
    	}
    
    	if initOnly {
    		logger.Info("System initialized and --init-only specified")
    		return nil, nil
    	}
    
    	// Generate the masquerade mark to use for SNAT rules.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
      map<string, string> limits = 1;
    
      // The minimum amount of compute resources required. If Requests is omitted for a container,
      // it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller.go

    	defer jm.broadcaster.Shutdown()
    
    	defer jm.queue.ShutDown()
    	defer jm.orphanQueue.ShutDown()
    
    	logger.Info("Starting job controller")
    	defer logger.Info("Shutting down job controller")
    
    	if !cache.WaitForNamedCacheSync("job", ctx.Done(), jm.podStoreSynced, jm.jobStoreSynced) {
    		return
    	}
    
    	for i := 0; i < workers; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/runtime/framework.go

    	ctx = klog.NewContext(ctx, logger)
    	for i := 0; i < 2; i++ {
    		stateToUse := state
    		nodeInfoToUse := info
    		if i == 0 {
    			var err error
    			podsAdded, stateToUse, nodeInfoToUse, err = addNominatedPods(ctx, f, pod, state, info)
    			if err != nil {
    				return framework.AsStatus(err)
    			}
    		} else if !podsAdded || !status.IsSuccess() {
    			break
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
Back to top