Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 899 for convlit (0.27 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/conflict.go

    	if len(conflicts) == 1 {
    		return fmt.Sprintf("Apply failed with 1 conflict: conflict with %v: %v", printManager(conflicts[0].Manager), conflicts[0].Path)
    	}
    
    	m := map[string][]fieldpath.Path{}
    	for _, conflict := range conflicts {
    		m[conflict.Manager] = append(m[conflict.Manager], conflict.Path)
    	}
    
    	uniqueManagers := []string{}
    	for manager := range m {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. pkg/kubectl/cmd/convert/convert.go

    		# Convert 'pod.yaml' to latest version and print to stdout.
    		kubectl convert -f pod.yaml
    
    		# Convert the live state of the resource specified by 'pod.yaml' to the latest version
    		# and print to stdout in JSON format.
    		kubectl convert -f pod.yaml --local -o json
    
    		# Convert all files under current directory to latest version and create them all.
    		kubectl convert -f . | kubectl create -f -`))
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:21:17 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/Conflict.java

    import org.gradle.api.artifacts.ModuleVersionIdentifier;
    
    import java.util.List;
    
    public class Conflict {
        private final List<? extends ModuleVersionIdentifier> versions;
        private final String message;
    
        public <E> Conflict(List<? extends ModuleVersionIdentifier> versions, String message) {
            this.versions = versions;
            this.message = message;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/conversion/queryparams/convert.go

    	for i := 0; i < list.Len(); i++ {
    		addParam(values, tag, omitempty, list.Index(i))
    	}
    }
    
    // Convert takes an object and converts it to a url.Values object using JSON tags as
    // parameter names. Only top-level simple values, arrays, and slices are serialized.
    // Embedded structs, maps, etc. will not be serialized.
    func Convert(obj interface{}) (url.Values, error) {
    	result := url.Values{}
    	if obj == nil {
    		return result, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  5. cmd/kubectl-convert/kubectl-convert.go

    	"k8s.io/cli-runtime/pkg/genericclioptions"
    	"k8s.io/cli-runtime/pkg/genericiooptions"
    	"k8s.io/component-base/cli"
    	cmdutil "k8s.io/kubectl/pkg/cmd/util"
    	"k8s.io/kubernetes/pkg/kubectl/cmd/convert"
    )
    
    func main() {
    	flags := pflag.NewFlagSet("kubectl-convert", pflag.ExitOnError)
    	pflag.CommandLine = flags
    
    	kubeConfigFlags := genericclioptions.NewConfigFlags(true).WithDeprecatedPasswordFlag()
    	kubeConfigFlags.AddFlags(flags)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. cni/test/testdata/pre/noname_calico.conflist

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 499 bytes
    - Viewed (0)
  7. cni/test/testdata/pre/calico.conflist

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 528 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/convert.go

    Alexander Zielenski <******@****.***> 1713452333 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. cni/test/testdata/pre/noplugins_calico.conflist

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 527 bytes
    - Viewed (0)
  10. cni/test/testdata/pre/nover_calico.conflist

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 503 bytes
    - Viewed (0)
Back to top