Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,447 for validateII (0.47 sec)

  1. releasenotes/notes/validate-appprotocol.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 09 21:45:41 UTC 2022
    - 144 bytes
    - Viewed (0)
  2. releasenotes/notes/validate-unknown.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
    - 24861
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 168 bytes
    - Viewed (0)
  3. apache-maven/src/assembly/shared/validate

    Michael Osipov <******@****.***> 1640033625 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 21 09:29:19 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  4. internal/bucket/lifecycle/rule.go

    			if buf.Len() > 0 {
    				buf.WriteString("&")
    			}
    			buf.WriteString(t.String())
    		}
    		return buf.String()
    	}
    	return ""
    }
    
    // Validate - validates the rule element
    func (r Rule) Validate() error {
    	if err := r.validateID(); err != nil {
    		return err
    	}
    	if err := r.validateStatus(); err != nil {
    		return err
    	}
    	if err := r.validateExpiration(); err != nil {
    		return err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:11:10 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. pkg/registry/registrytest/validate.go

    SataQiu <******@****.***> 1670860584 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 12 15:56:24 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    		if val != "false" {
    			// Pod subnet was already validated, we need to validate now against the node-mask
    			allErrs = append(allErrs, ValidatePodSubnetNodeMask(c.Networking.PodSubnet, c, fldPath.Child("podSubnet"))...)
    		}
    	}
    	return allErrs
    }
    
    // ValidateAbsolutePath validates whether provided path is absolute or not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. apache-maven/src/assembly/shared/validate.cmd

    Michael Osipov <******@****.***> 1640033625 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 21 09:29:19 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  8. pkg/config/schema/ast/ast.go

    	for i, r := range m.Resources {
    		if r.Validate == "" {
    			validateFn := "Validate" + asResourceVariableName(r.Kind)
    			if !validation.IsValidateFunc(validateFn) {
    				validateFn = "validation.EmptyValidate"
    			} else {
    				if r.Kind == "EnvoyFilter" {
    					validateFn = "envoyfilter." + validateFn
    				} else {
    					validateFn = "validation." + validateFn
    				}
    			}
    			m.Resources[i].Validate = validateFn
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/validate-external-gradle-plugin.gradle.kts

    import org.gradle.api.internal.plugins.PluginRegistry
    import org.gradle.api.internal.project.ProjectInternal
    import java.net.URISyntaxException
    import java.net.URL
    import java.util.stream.Collectors
    
    /**
     * Validates external plugins applied to a build, by checking property annotations
     * on work items like tasks and artifact transforms.
     * This is similar to [ValidatePlugins] but instead of checking the plugins *written in* the current build,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/discovery/token/token.go

    	klog.V(1).Infof("[discovery] Requesting info from %q again to validate TLS against the pinned public key", endpoint)
    	secureClusterInfo, err := getClusterInfo(client, secureBootstrapConfig, token, interval, timeout)
    	if err != nil {
    		return nil, err
    	}
    
    	// Pull the kubeconfig from the securely-obtained ConfigMap and validate that it's the same as what we found the first time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top