Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 145 for Implementation (0.19 sec)

  1. pkg/kubelet/kubelet_server_journal.go

    	// Support for this is implementation specific and only available for service logs.
    	TailLines *int
    	// Boot show messages from a specific boot. Allowed values are less than 1. Passing an invalid boot offset will fail
    	// retrieving logs and return an error. Support for this is implementation specific
    	Boot *int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 18:56:28 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  2. pkg/credentialprovider/plugin/plugin.go

    			pluginBinDir: pluginBinDir,
    			args:         provider.Args,
    			envVars:      provider.Env,
    			environ:      os.Environ,
    		},
    	}, nil
    }
    
    // pluginProvider is the plugin-based implementation of the DockerConfigProvider interface.
    type pluginProvider struct {
    	clock clock.Clock
    
    	sync.Mutex
    
    	group singleflight.Group
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/pod_container_manager_linux.go

    	kubefeatures "k8s.io/kubernetes/pkg/features"
    )
    
    const (
    	podCgroupNamePrefix = "pod"
    )
    
    // podContainerManagerImpl implements podContainerManager interface.
    // It is the general implementation which allows pod level container
    // management if qos Cgroup is enabled.
    type podContainerManagerImpl struct {
    	// qosContainersInfo hold absolute paths of the top level qos containers
    	qosContainersInfo QOSContainersInfo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:38:36 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/value.go

    	exprValue   ref.Val
    	declType    *DeclType
    }
    
    // DeclType returns the policy model type of the dyn value.
    func (dv *DynValue) DeclType() *DeclType {
    	return dv.declType
    }
    
    // ConvertToNative is an implementation of the CEL ref.Val method used to adapt between CEL types
    // and Go-native types.
    //
    // The default behavior of this method is to first convert to a CEL type which has a well-defined
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 20.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/quota/v1/generic/evaluator.go

    			usage, err := usageFunc(item)
    			if err != nil {
    				return result, err
    			}
    			result.Used = quota.Add(result.Used, usage)
    		}
    	}
    	return result, nil
    }
    
    // objectCountEvaluator provides an implementation for quota.Evaluator
    // that associates usage of the specified resource based on the number of items
    // returned by the specified listing function.
    type objectCountEvaluator struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/wait/backoff.go

    		// jitter is applied per step and is not cumulative over multiple steps
    		nextDuration, duration, steps = delay(steps, duration, cap, factor, jitter)
    		return nextDuration
    	}
    }
    
    // Timer returns a timer implementation appropriate to this backoff's parameters
    // for use with wait functions.
    func (b Backoff) Timer() Timer {
    	if b.Steps > 1 || b.Jitter != 0 {
    		return &variableTimer{new: internalClock.NewTimer, fn: b.DelayFunc()}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/certs.go

    			Use:   handler.Name,
    			Short: fmt.Sprintf("Renew the %s", handler.LongName),
    			Long:  fmt.Sprintf(genericCertRenewLongDesc, handler.LongName),
    		}
    		addRenewFlags(cmd, flags)
    		// get the implementation of renewing this certificate
    		renewalFunc := func(handler *renewal.CertificateRenewHandler) func() error {
    			return func() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_block.go

    	}
    	klog.V(4).Info(log("blockMapper.stageVolumeForBlock created stagingPath directory successfully [%s]", stagingPath))
    
    	// Request to stage a block volume to stagingPath.
    	// Expected implementation for driver is creating driver specific resource on stagingPath and
    	// attaching the block volume to the node.
    	err = csi.NodeStageVolume(ctx,
    		csiSource.VolumeHandle,
    		publishVolumeInfo,
    		stagingPath,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	return nil, fmt.Errorf("NewWrapperMounter not supported by Attach/Detach controller's VolumeHost implementation")
    }
    
    func (adc *attachDetachController) NewWrapperUnmounter(volName string, spec volume.Spec, podUID types.UID) (volume.Unmounter, error) {
    	return nil, fmt.Errorf("NewWrapperUnmounter not supported by Attach/Detach controller's VolumeHost implementation")
    }
    
    func (adc *attachDetachController) GetMounter(pluginName string) mount.Interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/certificates/v1/types_swagger_doc_generated.go

    */
    
    package v1
    
    // This file contains a collection of methods that can be used from go-restful to
    // generate Swagger API documentation for its models. Please read this PR for more
    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 10.9K bytes
    - Viewed (0)
Back to top