Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for printfile (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        }
    
        public MavenProject(MavenProject project) {
            deepCopy(project);
        }
    
        public File getParentFile() {
            return parentFile;
        }
    
        public void setParentFile(File parentFile) {
            this.parentFile = parentFile;
        }
    
        // ----------------------------------------------------------------------
        // Accessors
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional bool force = 2;
    
      // fieldManager is a name associated with the actor or entity
      // that is making these changes. The value must be less than or
      // 128 characters long, and only contain printable characters,
      // as defined by https://golang.org/pkg/unicode/#IsPrint. This
      // field is required.
      optional string fieldManager = 3;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional bool force = 2;
    
      // fieldManager is a name associated with the actor or entity
      // that is making these changes. The value must be less than or
      // 128 characters long, and only contain printable characters,
      // as defined by https://golang.org/pkg/unicode/#IsPrint. This
      // field is required.
      optional string fieldManager = 3;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	}
    	for i, r := range *deprecationWarning {
    		if !unicode.IsPrint(r) {
    			errors = append(errors, fmt.Sprintf("must only contain printable UTF-8 characters; non-printable character found at index %d", i))
    			break
    		}
    		if unicode.IsControl(r) {
    			errors = append(errors, fmt.Sprintf("must only contain printable UTF-8 characters; control character found at index %d", i))
    			break
    		}
    	}
    	if !utf8.ValidString(*deprecationWarning) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  5. src/fmt/fmt_test.go

    	{"%#+-8q", "\b", `"\b"    `},
    	{"%q", "abc\xffdef", `"abc\xffdef"`},
    	{"%+q", "abc\xffdef", `"abc\xffdef"`},
    	{"%#q", "abc\xffdef", `"abc\xffdef"`},
    	{"%#+q", "abc\xffdef", `"abc\xffdef"`},
    	// Runes that are not printable.
    	{"%q", "\U0010ffff", `"\U0010ffff"`},
    	{"%+q", "\U0010ffff", `"\U0010ffff"`},
    	{"%#q", "\U0010ffff", "`􏿿`"},
    	{"%#+q", "\U0010ffff", "`􏿿`"},
    	// Runes that are not valid.
    	{"%q", string(rune(0x110000)), `"�"`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// +k8s:deprecated=includeUninitialized,protobuf=2
    
    	// fieldManager is a name associated with the actor or entity
    	// that is making these changes. The value must be less than or
    	// 128 characters long, and only contain printable characters,
    	// as defined by https://golang.org/pkg/unicode/#IsPrint.
    	// +optional
    	FieldManager string `json:"fieldManager,omitempty" protobuf:"bytes,3,name=fieldManager"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

        @get:OutputFile
        abstract val outputFile: RegularFileProperty
    
        @TaskAction
        fun summarize() {
            outputFile.get().asFile.run {
                parentFile.mkdirs()
                writeText(summaryString())
            }
        }
    
        private
        fun summaryString() = inputSummaries.files.joinToString(separator = "\\n") { it.readText() }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
Back to top