Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 171 for Validation (0.2 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    A successful build indicates that the same dependencies are used as stored in the lock state, regardless if new versions matching the dynamic selector have been produced.
    
    The complete validation is as follows:
    
    * Existing entries in the lock state must be matched in the build
    ** A version mismatch or missing resolved module causes a build failure
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/server.go

    }
    
    func (s *Server) NotReady() {
    	s.isReady.Store(false)
    }
    
    // buildKubeClient creates the kube client
    func buildKubeClient(kubeConfig string) (kube.Client, error) {
    	// Used by validation
    	kubeRestConfig, err := kube.DefaultRestConfig(kubeConfig, "", func(config *rest.Config) {
    		config.QPS = 80
    		config.Burst = 160
    	})
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. pilot/pkg/simulation/traffic.go

    		// If there is no tls inspector, then
    		result.Error = ErrMTLSError
    		return
    	}
    
    	if len(input.CustomListenerValidations) > 0 {
    		for _, validation := range input.CustomListenerValidations {
    			if err := validation(fc); err != nil {
    				result.Error = err
    			}
    		}
    	}
    
    	if hcm := xdstest.ExtractHTTPConnectionManager(sim.t, fc); hcm != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. pkg/kubelet/config/config.go

    	names := sets.Set[string]{}
    	for i, pod := range pods {
    		// Pods from each source are assumed to have passed validation individually.
    		// This function only checks if there is any naming conflict.
    		name := kubecontainer.GetPodFullName(pod)
    		if names.Has(name) {
    			klog.InfoS("Pod failed validation due to duplicate pod name, ignoring", "index", i, "pod", klog.KObj(pod), "source", source)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. cmd/batch-job-common-types.go

    	"github.com/dustin/go-humanize"
    	"github.com/minio/pkg/v3/wildcard"
    	"gopkg.in/yaml.v3"
    )
    
    //go:generate msgp -file $GOFILE
    //msgp:ignore BatchJobYamlErr
    
    // BatchJobYamlErr can be used to return yaml validation errors with line,
    // column information guiding user to fix syntax errors
    type BatchJobYamlErr struct {
    	line, col int
    	msg       string
    }
    
    // message returns the error message excluding line, col information.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/helpers_test.go

    limitations under the License.
    */
    
    package config
    
    import (
    	"reflect"
    	"strings"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    )
    
    func TestKubeletConfigurationPathFields(t *testing.T) {
    	// ensure the intersection of kubeletConfigurationPathFieldPaths and KubeletConfigurationNonPathFields is empty
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. staging/publishing/import-restrictions.yaml

      # Main goal: pkg/apis should be as self-contained as possible.
      - k8s.io/kubernetes/pkg/apis/apps
      - k8s.io/kubernetes/pkg/api/legacyscheme
      - k8s.io/api/apps/v1
      ignoredSubTrees:
      - "./pkg/apis/core/validation"
    
    - baseImportPath: "./staging/src/k8s.io/cli-runtime/pkg/genericclioptions"
      allowedImports:
      - k8s.io/apimachinery
      - k8s.io/client-go
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

            internalReporter.create {
                id(
                    "configuration-cache-" + DeprecationMessageBuilder.createDefaultDeprecationId(message),
                    message,
                    GradleCoreProblemGroup.validation()
                )
                contextualLabel(message)
                documentOfProblem(problem)
                locationOfProblem(problem)
                severity(severity.toProblemSeverity())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    		return framework.Queue, err
    	}
    
    	if pod.UID == modifiedPod.UID &&
    		len(originalPod.Spec.Tolerations) != len(modifiedPod.Spec.Tolerations) {
    		// An unscheduled Pod got a new toleration.
    		// Due to API validation, the user can add, but cannot modify or remove tolerations.
    		// So, it's enough to just check the length of tolerations to notice the update.
    		// And, any updates in tolerations could make Pod schedulable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. pkg/kubelet/network/dns/dns_test.go

    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/client-go/tools/record"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/kubernetes/pkg/apis/core/validation"
    	netutils "k8s.io/utils/net"
    
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    )
    
    var (
    	// testHostNameserver and testHostDomain are also being used in dns_windows_test.go.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top