Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 130 for Warningf (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	}
    	return annotations
    }
    
    type warningRecorder struct {
    	sync.Mutex
    	warnings sets.Set[string]
    }
    
    func newWarningRecorder() *warningRecorder {
    	return &warningRecorder{warnings: sets.New[string]()}
    }
    
    func (r *warningRecorder) AddWarning(_, text string) {
    	r.Lock()
    	defer r.Unlock()
    	r.warnings.Insert(text)
    	return
    }
    
    func (r *warningRecorder) hasWarning(text string) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// The content of type checking information in a human-readable form.
    	// Each line of the warning contains the type that the expression is checked
    	// against, followed by the type check error from the compiler.
    	Warning string `json:"warning" protobuf:"bytes,3,opt,name=warning"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.30
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                }
    
                validateStringNoExpression("groupId", problems, Severity.WARNING, Version.V20, m.getGroupId(), m);
                if (parent == null) {
                    validateStringNotEmpty("groupId", problems, Severity.FATAL, Version.V20, m.getGroupId(), m);
                }
    
                validateStringNoExpression("artifactId", problems, Severity.WARNING, Version.V20, m.getArtifactId(), m);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  4. .bazelrc

    build:ios --noenable_platform_specific_config
    
    # Suppress all C++ compiler warnings, otherwise build logs become 10s of MBs.
    build:android --copt=-w
    build:ios --copt=-w
    build:linux --host_copt=-w
    build:macos --copt=-w
    build:windows --copt=/W0
    build:windows --host_copt=/W0
    
    # Suppress most C++ compiler warnings to reduce log size but allow
    # for specific warnings to still be present.
    build:linux --copt="-Wno-all"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                }
    
                validateStringNoExpression("groupId", problems, Severity.WARNING, Version.V20, m.getGroupId(), m);
                if (parent == null) {
                    validateStringNotEmpty("groupId", problems, Severity.FATAL, Version.V20, m.getGroupId(), m);
                }
    
                validateStringNoExpression("artifactId", problems, Severity.WARNING, Version.V20, m.getArtifactId(), m);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  6. cmd/storage-datatypes_gen_test.go

    			b.Fatal(err)
    		}
    	}
    }
    
    func TestEncodeDecodeBaseOptions(t *testing.T) {
    	v := BaseOptions{}
    	var buf bytes.Buffer
    	msgp.Encode(&buf, &v)
    
    	m := v.Msgsize()
    	if buf.Len() > m {
    		t.Log("WARNING: TestEncodeDecodeBaseOptions Msgsize() is inaccurate")
    	}
    
    	vn := BaseOptions{}
    	err := msgp.Decode(&buf, &vn)
    	if err != nil {
    		t.Error(err)
    	}
    
    	buf.Reset()
    	msgp.Encode(&buf, &v)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 62.6K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif  // GTEST_OS_WINDOWS
    
    // Functions deprecated by MSVC 8.0.
    
    #ifdef _MSC_VER
    // Temporarily disable warning 4996 (deprecated function).
    # pragma warning(push)
    # pragma warning(disable:4996)
    #endif
    
    inline const char* StrNCpy(char* dest, const char* src, size_t n) {
      return strncpy(dest, src, n);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif  // GTEST_OS_WINDOWS
    
    // Functions deprecated by MSVC 8.0.
    
    #ifdef _MSC_VER
    // Temporarily disable warning 4996 (deprecated function).
    # pragma warning(push)
    # pragma warning(disable:4996)
    #endif
    
    inline const char* StrNCpy(char* dest, const char* src, size_t n) {
      return strncpy(dest, src, n);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

         *
         * <p>In the below two cases, for non-legacy configurations, this method does not warn. This is
         * to avoid spamming users with these warnings, as popular third-party plugins continue to
         * violate these conditions.
         * </p>
         * <ul>
         *     <li>The configuration is detached and the new value is false.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/binder_test.go

    			expectedEvents:  []string{"Warning VolumeMismatch"},
    			errors:          noerrors,
    			test:            testSyncVolume,
    		},
    		{
    			// syncVolume output warning when pv is prebound to pvc with mismatching volumeMode
    			name:            "14-13-1 - output warning when pv is prebound to pvc with different volumeModes",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
Back to top