Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 196 for inf2 (0.14 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	logger.Info("Starting node controller")
    	defer logger.Info("Shutting down node controller")
    
    	if !cache.WaitForNamedCacheSync("taint", ctx.Done(), nc.leaseInformerSynced, nc.nodeInformerSynced, nc.podInformerSynced, nc.daemonSetInformerSynced) {
    		return
    	}
    
    	if !utilfeature.DefaultFeatureGate.Enabled(features.SeparateTaintEvictionController) {
    		logger.Info("Starting", "controller", taintEvictionController)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. cmd/batch-handlers.go

    // object which matches the given filters.
    func (ri *batchJobInfo) trackMultipleObjectVersions(bucket string, info ObjectInfo, success bool) {
    	if success {
    		ri.Objects += int64(info.NumVersions)
    	} else {
    		ri.ObjectsFailed += int64(info.NumVersions)
    	}
    }
    
    func (ri *batchJobInfo) trackCurrentBucketObject(bucket string, info ObjectInfo, success bool, attempt int) {
    	if ri == nil {
    		return
    	}
    
    	ri.mu.Lock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                "type": "string"
              },
              "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  4. 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)
  5. 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 (0)
  6. staging/src/k8s.io/api/apps/v1beta2/types.go

    type Scale struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/extensions/v1beta1/types.go

    type Scale struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  8. 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)
  9. pkg/proxy/ipvs/proxier.go

    	if err != nil {
    		logger.Error(err, "ipvs.GetVirtualServers")
    		return err
    	}
    	logger.V(5).Info("Virtual Servers after adding dummy", "count", len(vservers))
    	if len(vservers) == 0 {
    		logger.Info("Dummy VS not created", "scheduler", scheduler)
    		return fmt.Errorf("Ipvs not supported") // This is a BUG work-around
    	}
    	logger.V(5).Info("Dummy VS created", "vs", vs)
    
    	if err := ipvs.DeleteVirtualServer(&vs); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/cache/cache_test.go

    				t.Errorf("Failed to find node %v in schedulertypes after UpdateNode.", node.Name)
    			}
    			if got.info.Generation <= expected.Generation {
    				t.Errorf("Generation is not incremented. got: %v, expected: %v", got.info.Generation, expected.Generation)
    			}
    			expected.Generation = got.info.Generation
    
    			if diff := cmp.Diff(expected, got.info, cmp.AllowUnexported(framework.NodeInfo{})); diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
Back to top