Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 807 for info2 (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/plugin/software/internal/package-info.java

    Sergey Igushkin <******@****.***> 1716638192 +0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 709 bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/testfixtures/internal/package-info.java

    Adam Murdoch <******@****.***> 1715297124 +1000
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 686 bytes
    - Viewed (0)
  3. pilot/pkg/xds/delta.go

    	configSizeBytes.With(typeTag.Value(w.TypeUrl)).Record(float64(configSize))
    
    	ptype := "PUSH"
    	info := ""
    	if logdata.Incremental {
    		ptype = "PUSH INC"
    	}
    	if len(logdata.AdditionalInfo) > 0 {
    		info = " " + logdata.AdditionalInfo
    	}
    	if len(logFiltered) > 0 {
    		info += logFiltered
    	}
    
    	if err := con.sendDelta(resp, newResourceNames); err != nil {
    		logger := deltaLog.Debugf
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/runtime/runtime.go

    	var errs []error
    	errChan := make(chan error, len(images))
    
    	klog.V(1).Info("pulling all images in parallel")
    	for _, img := range images {
    		image := img
    		go func() {
    			if ifNotPresent {
    				exists := imageExistsFunc(image)
    				if exists {
    					klog.V(1).Infof("image exists: %s", image)
    					errChan <- nil
    					return
    				}
    			}
    			err := pullImageFunc(image)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/server.go

    	return nil
    }
    
    // initDiscoveryService initializes discovery server on plain text port.
    func (s *Server) initDiscoveryService() {
    	log.Infof("starting discovery service")
    	// Implement EnvoyXdsServer grace shutdown
    	s.addStartFunc("xds server", func(stop <-chan struct{}) error {
    		log.Infof("Starting ADS server")
    		s.XDSServer.Start(stop)
    		return nil
    	})
    }
    
    // Wait for the stop, and do cleanups
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  6. cni/pkg/cmd/root.go

    		_, _ = ctrlz.Run(ctrlzOptions, nil)
    
    		var cfg *config.Config
    		if cfg, err = constructConfig(); err != nil {
    			return
    		}
    		log.Infof("CNI logging level: \n%+v", istiolog.LevelToString(log.GetOutputLevel()))
    		log.Infof("CNI install configuration: \n%+v", cfg.InstallConfig)
    		log.Infof("CNI race repair configuration: \n%+v", cfg.RepairConfig)
    
    		// Start metrics server
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. cmd/peer-rest-server.go

    	errs := make([]error, len(localDrives))
    	infos := make([]DiskInfo, len(localDrives))
    	for i, drive := range localDrives {
    		infos[i], errs[i] = drive.DiskInfo(GlobalContext, DiskInfoOptions{})
    	}
    	infoMaps := make(map[string]madmin.DiskMetrics)
    	for i := range infos {
    		if infos[i].Metrics.TotalWaiting >= 1 && errors.Is(errs[i], errFaultyDisk) {
    			infoMaps[infos[i].Endpoint] = madmin.DiskMetrics{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-agent/options/security.go

    	jwtPath := constants.ThirdPartyJwtPath
    	switch jwtPolicy {
    	case jwt.PolicyThirdParty:
    		log.Info("JWT policy is third-party-jwt")
    		jwtPath = constants.ThirdPartyJwtPath
    	case jwt.PolicyFirstParty:
    		log.Warnf("Using deprecated JWT policy 'first-party-jwt'; treating as 'third-party-jwt'")
    		jwtPath = constants.ThirdPartyJwtPath
    	default:
    		log.Info("Using existing certs")
    	}
    
    	o := secOpt
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. cmd/kubelet/app/server.go

    	}
    	// Walk through the drop-in directory and update the configuration for each file
    	if err := filepath.WalkDir(kubeletDropInConfigDir, func(path string, info fs.DirEntry, err error) error {
    		if err != nil {
    			return err
    		}
    		if !info.IsDir() && filepath.Ext(info.Name()) == dropinFileExtension {
    			dropinConfigJSON, err := loadDropinConfigFileIntoJSON(path)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. pkg/volume/util/operationexecutor/operation_generator.go

    					nodeName,
    					areAttachedErr)
    				continue
    			}
    
    			for spec, check := range attached {
    				if !check {
    					actualStateOfWorld.MarkVolumeAsDetached(volumeSpecMap[spec], nodeName)
    					klog.V(1).Infof("VerifyVolumesAreAttached determined volume %q (spec.Name: %q) is no longer attached to node %q, therefore it was marked as detached.",
    						volumeSpecMap[spec], spec.Name(), nodeName)
    				}
    			}
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
Back to top