Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 697 for bghelper (0.16 sec)

  1. pkg/apis/core/v1/validation/validation.go

    	allErrs := validateResourceName(value, fldPath)
    	if len(strings.Split(string(value), "/")) == 1 {
    		if !helper.IsStandardContainerResourceName(value) {
    			return append(allErrs, field.Invalid(fldPath, value, "must be a standard resource for containers"))
    		}
    	} else if !v1helper.IsNativeResource(v1.ResourceName(value)) {
    		if !v1helper.IsExtendedResourceName(v1.ResourceName(value)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    	}
    
    	wasUntolerated := true
    	if originalNode != nil {
    		_, wasUntolerated = v1helper.FindMatchingUntoleratedTaint(originalNode.Spec.Taints, pod.Spec.Tolerations, helper.DoNotScheduleTaintsFilterFunc())
    	}
    
    	_, isUntolerated := v1helper.FindMatchingUntoleratedTaint(modifiedNode.Spec.Taints, pod.Spec.Tolerations, helper.DoNotScheduleTaintsFilterFunc())
    
    	if wasUntolerated && !isUntolerated {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. src/main/resources/crawler/log.xml

    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components namespace="fessCrawler">
    	<include path="crawler/container.xml" />
    
    	<component name="logHelper"
    		class="org.codelibs.fess.helper.CrawlerLogHelper">
    	</component>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Oct 11 06:51:14 UTC 2015
    - 333 bytes
    - Viewed (0)
  4. fess-crawler-lasta/src/main/resources/crawler/log.xml

    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components namespace="fessCrawler">
    	<include path="crawler/container.xml" />
    
    	<component name="logHelper"
    		class="org.codelibs.fess.crawler.helper.impl.LogHelperImpl">
    	</component>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 343 bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/podtopologyspread/common.go

    import (
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    	v1helper "k8s.io/component-helpers/scheduling/corev1"
    	"k8s.io/component-helpers/scheduling/corev1/nodeaffinity"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/helper"
    	"k8s.io/utils/ptr"
    )
    
    type topologyPair struct {
    	key   string
    	value string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. pkg/volume/util/attach_limit_test.go

    limitations under the License.
    */
    
    package util
    
    import (
    	"crypto/sha1"
    	"encoding/hex"
    	"testing"
    
    	"k8s.io/api/core/v1"
    	v1helper "k8s.io/kubernetes/pkg/apis/core/v1/helper"
    )
    
    func TestGetCSIAttachLimitKey(t *testing.T) {
    	// When driverName is less than 39 characters
    	csiLimitKey := GetCSIAttachLimitKey("com.amazon.ebs")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 05 16:29:00 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  7. pkg/kubelet/cadvisor/util.go

    import (
    	"strings"
    
    	cadvisorapi "github.com/google/cadvisor/info/v1"
    	cadvisorapi2 "github.com/google/cadvisor/info/v2"
    	"k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	v1helper "k8s.io/kubernetes/pkg/apis/core/v1/helper"
    )
    
    const (
    	// CrioSocketSuffix is the path to the CRI-O socket.
    	// Please keep this in sync with the one in:
    	// github.com/google/cadvisor/tree/master/container/crio/client.go
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 04 05:08:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/nodevolumelimits/utils.go

    	v1 "k8s.io/api/core/v1"
    	storagev1 "k8s.io/api/storage/v1"
    	"k8s.io/apimachinery/pkg/util/sets"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	csilibplugins "k8s.io/csi-translation-lib/plugins"
    	v1helper "k8s.io/kubernetes/pkg/apis/core/v1/helper"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    // isCSIMigrationOn returns a boolean value indicating whether
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. pkg/scheduler/util/utils.go

    func IsScalarResourceName(name v1.ResourceName) bool {
    	return v1helper.IsExtendedResourceName(name) || v1helper.IsHugePageResourceName(name) ||
    		v1helper.IsPrefixedNativeResource(name) || v1helper.IsAttachableVolumeResourceName(name)
    }
    
    // As converts two objects to the given type.
    // Both objects must be of the same type. If not, an error is returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 21 01:40:44 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. pkg/kubelet/envvars/envvars.go

    limitations under the License.
    */
    
    package envvars
    
    import (
    	"fmt"
    	"net"
    	"strconv"
    	"strings"
    
    	"k8s.io/api/core/v1"
    	v1helper "k8s.io/kubernetes/pkg/apis/core/v1/helper"
    )
    
    // FromServices builds environment variables that a container is started with,
    // which tell the container where to find the services it may need, which are
    // provided as an argument.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 09 11:14:08 UTC 2017
    - 3.3K bytes
    - Viewed (0)
Back to top