Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for printfile (0.19 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. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

              }
            },
            {
              "description": "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.",
              "in": "query",
              "name": "fieldManager",
              "schema": {
                "type": "string",
                "uniqueItems": true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"fieldManager": "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.",
    }
    
    func (ApplyOptions) SwaggerDoc() map[string]string {
    	return map_ApplyOptions
    }
    
    var map_Condition = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                        assert inputArtifactDependencies.every { it.exists() }
    
                        def output = outputs.file(input.name + ".txt")
                        def workspace = output.parentFile
                        assert workspace.directory && workspace.list().length == 0
                        println "Transforming \${input.name} to \${output.name}"
                        output.text = String.valueOf(input.length())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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