Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for fileExtensions (0.34 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_factory.go

    			ContentType:        runtime.ContentTypeYAML,
    			FileExtensions:     []string{"yaml"},
    			EncodesAsText:      true,
    			Serializer:         yamlSerializer,
    			StrictSerializer:   strictYAMLSerializer,
    		},
    		{
    			AcceptContentTypes: []string{runtime.ContentTypeProtobuf},
    			ContentType:        runtime.ContentTypeProtobuf,
    			FileExtensions:     []string{"pb"},
    			Serializer:         protoSerializer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

            return fileExtensions;
        }
    
        /**
         * Sets the list of acceptable source file extensions. Only takes effect when compiling against
         * Groovy 1.7 or higher. Defaults to {@code ImmutableList.of("java", "groovy")}.
         */
        public void setFileExtensions(List<String> fileExtensions) {
            this.fileExtensions = fileExtensions;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. istioctl/pkg/analyze/analyze.go

    	selectedNamespace string
    	allNamespaces     bool
    	suppress          []string
    	analysisTimeout   time.Duration
    	recursive         bool
    	ignoreUnknown     bool
    	revisionSpecified string
    
    	fileExtensions = []string{".json", ".yaml", ".yml"}
    )
    
    // Analyze command
    func Analyze(ctx cli.Context) *cobra.Command {
    	var verbose bool
    	analysisCmd := &cobra.Command{
    		Use:   "analyze <file>...",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. istioctl/pkg/validate/validate.go

    	validFields = map[string]struct{}{
    		"apiVersion": {},
    		"kind":       {},
    		"metadata":   {},
    		"spec":       {},
    		"status":     {},
    	}
    
    	serviceProtocolUDP = "UDP"
    
    	fileExtensions = []string{".json", ".yaml", ".yml"}
    )
    
    type validator struct{}
    
    func checkFields(un *unstructured.Unstructured) error {
    	var errs error
    	for key := range un.Object {
    		if _, ok := validFields[key]; !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/client-go/discovery"
    	"k8s.io/client-go/rest"
    	"k8s.io/client-go/restmapper"
    	"sigs.k8s.io/kustomize/kyaml/filesys"
    )
    
    var FileExtensions = []string{".json", ".yaml", ".yml"}
    var InputExtensions = append(FileExtensions, "stdin")
    
    const defaultHttpGetAttempts = 3
    const pathNotExistError = "the path %q does not exist"
    
    // Builder provides convenience functions for taking arguments and parameters
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ReproducibleArchivesIntegrationTest.groovy

            then:
            archive(file("build/test.${fileExtension}")).content('test.txt') == "from dir2"
    
            where:
            taskName << ['zip', 'tar']
            taskType = taskName.capitalize()
            fileExtension = taskName
        }
    
        def "#taskName can fail for duplicate entries"() {
            given:
            duplicateEntriesInArchive(taskName, taskType, fileExtension)
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top