Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 2,290 for Warningf (0.22 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

        /**
         * Expects the given deprecation warning, allowing to pass documentation url with /current/ version and asserting against the actual current version instead.
         */
        default GradleExecuter expectDocumentedDeprecationWarning(String warning) {
            return expectDeprecationWarning(normalizeDocumentationLink(warning));
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_symlink_issue35941.txt

    env GO111MODULE=on
    [!symlink] skip
    
    cd m
    symlink symlink -> ../outside
    
    cp go.mod go.mod.orig
    
    # Issue 35941: suppress symlink warnings when running 'go mod tidy'.
    # 'go mod tidy' should not scan packages in symlinked subdirectories.
    go mod tidy
    ! stderr 'warning: ignoring symlink'
    cmp go.mod go.mod.orig
    
    ! go build ./symlink
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 27 18:17:01 UTC 2021
    - 898 bytes
    - Viewed (0)
  3. pkg/kube/adapter.go

    	// warnings is a list of warning messages to return to the requesting API client.
    	// Warning messages describe a problem the client making the API request should correct or be aware of.
    	// Limit warnings to 120 characters if possible.
    	// Warnings over 256 characters and large numbers of warnings may be truncated.
    	Warnings []string `json:"warnings,omitempty"`
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 10 16:40:00 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admission/v1/types.go

    	// warnings is a list of warning messages to return to the requesting API client.
    	// Warning messages describe a problem the client making the API request should correct or be aware of.
    	// Limit warnings to 120 characters if possible.
    	// Warnings over 256 characters and large numbers of warnings may be truncated.
    	// +optional
    	Warnings []string `json:"warnings,omitempty" protobuf:"bytes,7,rep,name=warnings"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/WorkValidationWarningReporter.java

     * limitations under the License.
     */
    
    package org.gradle.execution;
    
    public interface WorkValidationWarningReporter {
        /**
         * Reports any validation warnings at the end of the build.
         *
         * Resets the warning state for the next build.
         */
        void reportWorkValidationWarningsAtEndOfBuild();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 08 10:17:53 UTC 2020
    - 891 bytes
    - Viewed (0)
  6. build-logic/jvm/src/main/kotlin/gradlebuild.strict-compile.gradle.kts

    tasks.withType<JavaCompile>().configureEach {
        // Generated classes may not adhere to the strict no-warning policy that we apply to handwritten code
        // For example, external JMH plugin generates code that produces compiler warnings
        if (!name.contains("CompileGeneratedClasses")) {
            options.compilerArgs.addAll(strictCompilerArgs)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:31 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/rest/update.go

    	// WarningsOnUpdate returns warnings to the client performing the update.
    	// WarningsOnUpdate is invoked after default fields in the object have been filled in
    	// and after ValidateUpdate has passed, before Canonicalize is called, and before the object is persisted.
    	// This method must not mutate either object.
    	//
    	// Be brief; limit warnings to 120 characters if possible.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  8. pkg/apis/admission/types.go

    	// +optional
    	AuditAnnotations map[string]string
    	// warnings is a list of warning messages to return to the requesting API client.
    	// Warning messages describe a problem the client making the API request should correct or be aware of.
    	// Limit warnings to 120 characters if possible.
    	// Warnings over 256 characters and large numbers of warnings may be truncated.
    	// +optional
    	Warnings []string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 7.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admission/v1/types_swagger_doc_generated.go

    	"warnings":         "warnings is a list of warning messages to return to the requesting API client. Warning messages describe a problem the client making the API request should correct or be aware of. Limit warnings to 120 characters if possible. Warnings over 256 characters and large numbers of warnings may be truncated.",
    }
    
    func (AdmissionResponse) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admission/v1beta1/types.go

    	// warnings is a list of warning messages to return to the requesting API client.
    	// Warning messages describe a problem the client making the API request should correct or be aware of.
    	// Limit warnings to 120 characters if possible.
    	// Warnings over 256 characters and large numbers of warnings may be truncated.
    	// +optional
    	Warnings []string `json:"warnings,omitempty" protobuf:"bytes,7,rep,name=warnings"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 9.6K bytes
    - Viewed (0)
Back to top