Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 125 for InfoS (0.66 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_serving_content.go

    func (c *DynamicCertKeyPairContent) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    	defer c.queue.ShutDown()
    
    	klog.InfoS("Starting controller", "name", c.name)
    	defer klog.InfoS("Shutting down controller", "name", c.name)
    
    	// doesn't matter what workers say, only start one.
    	go wait.Until(c.runWorker, time.Second, ctx.Done())
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    					// once https://github.com/kubernetes/kubernetes/issues/63336 is resolved
    					klog.InfoS("Error getting ContainerStatus for containerID", "containerID", containerID, "err", err)
    				} else {
    					status := resp.GetStatus()
    					if status == nil {
    						klog.V(4).InfoS("Container status is nil")
    						continue
    					}
    					if status.State != runtimeapi.ContainerState_CONTAINER_EXITED {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. src/io/ioutil/ioutil.go

    // If you must continue obtaining a list of [fs.FileInfo], you still can:
    //
    //	entries, err := os.ReadDir(dirname)
    //	if err != nil { ... }
    //	infos := make([]fs.FileInfo, 0, len(entries))
    //	for _, entry := range entries {
    //		info, err := entry.Info()
    //		if err != nil { ... }
    //		infos = append(infos, info)
    //	}
    func ReadDir(dirname string) ([]fs.FileInfo, error) {
    	f, err := os.Open(dirname)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    	klog.InfoS("Desired state populator starts to run")
    	wait.PollUntil(dswp.loopSleepDuration, func() (bool, error) {
    		done := sourcesReady.AllReady()
    		dswp.populatorLoop()
    		return done, nil
    	}, stopCh)
    	dswp.hasAddedPodsLock.Lock()
    	if !dswp.hasAddedPods {
    		klog.InfoS("Finished populating initial desired state of world")
    		dswp.hasAddedPods = true
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. src/os/dir_windows.go

    				f.vol = d.vol
    				if mode == readdirDirEntry {
    					dirents = append(dirents, dirEntry{f})
    				} else {
    					infos = append(infos, f)
    				}
    			}
    			n--
    		}
    	}
    	if !wantAll && len(names)+len(dirents)+len(infos) == 0 {
    		return nil, nil, nil, io.EOF
    	}
    	return names, dirents, infos, nil
    }
    
    type dirEntry struct {
    	fs *fileStat
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. cmd/kubelet/app/plugins_providers.go

    	_, err := csimigration.CheckMigrationFeatureFlags(featureGate, pluginInfo.pluginMigrationFeature, pluginInfo.pluginUnregisterFeature)
    	if err != nil {
    		klog.InfoS("Unexpected CSI Migration Feature Flags combination detected, CSI Migration may not take effect", "err", err)
    		// TODO: fail and return here once alpha only tests can set the feature flags for a plugin correctly
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/fixture/CrossVersionToolingApiSpecificationRetryTest.groovy

            then:
            true
        }
    
        @TargetGradleVersion(">=3.0")
        def "does not retry for 3.0 or later"() {
            given:
            iteration++
    
            when:
            throwWhen(new IOException("Some action failed", new GradleException("Timeout waiting to connect to the Gradle daemon.\n more infos")), iteration == 1)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/codegen.cc

        const xla::ShapeProto& shape = ps.parameters(i);
        *infos +=
            absl::Substitute("{ kArg$0Shapes, $1 },\n", i, shape.dimensions_size());
      }
      *infos += R"(    };
        return kArgShapeInfoTable;
      })";
      return absl::OkStatus();
    }
    
    // Generate shape infos for results.
    Status GenResultShapeInfos(const xla::ProgramShapeProto& ps, string* infos) {
      if (ps.result().element_type() != xla::TUPLE) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  9. src/os/dir.go

    	if f == nil {
    		return nil, ErrInvalid
    	}
    	_, _, infos, err := f.readdir(n, readdirFileInfo)
    	if infos == nil {
    		// Readdir has historically always returned a non-nil empty slice, never nil,
    		// even on error (except misuse with nil receiver above).
    		// Keep it that way to avoid breaking overly sensitive callers.
    		infos = []FileInfo{}
    	}
    	return infos, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. pkg/kubeapiserver/authorizer/reload.go

    		// no change
    		return
    	}
    	klog.InfoS("found new authorization config")
    	r.lastLoadedConfig = config
    
    	authorizer, ruleResolver, err := r.newForConfig(config)
    	if err != nil {
    		klog.ErrorS(err, "reloading authorization config")
    		metrics.RecordAuthorizationConfigAutomaticReloadFailure(r.apiServerID)
    		return
    	}
    	klog.InfoS("constructed new authorizer")
    
    	r.current.Store(&authorizerResolver{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top