Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for Warningf (0.16 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

      /**
       * Returns a new target iterator each time it's called. This is the iterator you are trying to
       * test. This must return an Iterator that returns the expected elements passed to the constructor
       * in the given order. Warning: it is not enough to simply pull multiple iterators from the same
       * source Iterable, unless that Iterator is unmodifiable.
       */
      protected abstract I newTargetIterator();
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.28.md

    - Graduated the `LegacyServiceAccountTokenTracking` feature gate to GA. The usage of auto-generated secret-based service account token now produces warnings, and relevant Secrets are labeled with a last-used timestamp (label key `kubernetes.io/legacy-token-last-used`). ([#117591](https://github.com/kubernetes/kubernetes/pull/117591), [@zshihang](https://github.com/zshihang)) [SIG API Machinery, Auth...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

      /**
       * Returns a new target iterator each time it's called. This is the iterator you are trying to
       * test. This must return an Iterator that returns the expected elements passed to the constructor
       * in the given order. Warning: it is not enough to simply pull multiple iterators from the same
       * source Iterable, unless that Iterator is unmodifiable.
       */
      protected abstract I newTargetIterator();
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. pkg/security/security.go

    }
    
    // GetOSRootFilePath returns the first file path detected from a list of known CA certificate file paths.
    // If none of the known CA certificate files are found, a warning in printed and an empty string is returned.
    func GetOSRootFilePath() string {
    	// Get and store the OS CA certificate path for Linux systems
    	// Source of CA File Paths: https://golang.org/src/crypto/x509/root_linux.go
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    	for _, secretRef := range pod.Spec.ImagePullSecrets {
    		if len(secretRef.Name) == 0 {
    			// API validation permitted entries with empty names (https://issue.k8s.io/99454#issuecomment-787838112).
    			// Ignore to avoid unnecessary warnings.
    			continue
    		}
    		secret, err := kl.secretManager.GetSecret(pod.Namespace, secretRef.Name)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                        KaSimpleVariableAccess.Write(rhs)
                    )
                }
                is FirPropertyAccessExpression, is FirCallableReferenceAccess -> {
                    @Suppress("USELESS_IS_CHECK") // K2 warning suppression, TODO: KT-62472
                    require(fir is FirQualifiedAccessExpression)
                    when (unsubstitutedKtSignature.symbol) {
                        is KaVariableLikeSymbol -> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    			},
    			options: printers.GenerateOptions{Wide: true},
    			// Columns: Last Seen, Type, Reason, Object, Subobject, Message, First Seen, Count, Name
    			expected: []metav1.TableRow{{Cells: []interface{}{"2d", "Warning", "Event Reason", "deployment/Deployment Name", "spec.containers{foo}", "kubelet, Node1", "Message Data", "3d", int64(6), "event2"}}},
    		},
    		// Basic event, w/o FirstTimestamp set
    		{
    			event: api.Event{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      std::map<std::string, std::set<std::string>> failed_custom_ops_;
    
      // Ops to provide warning messages.
      std::map<std::string, std::set<std::string>> custom_ops_;
      std::map<std::string, std::set<std::string>> flex_ops_;
    
      // Resource ops to provide warning messages.
      std::map<std::string, std::set<std::string>> resource_ops_;
    
      // Set of saved model tags, if any.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. pilot/pkg/model/gateway.go

    // Services on port 80 referring to different target ports. Long term, this will be replaced by
    // Gateways directly referencing a Service, rather than label selectors. Warning: this label is
    // intended solely for as a workaround for Knative's Istio integration, and not intended for any
    // other usage. It can, and will, be removed immediately after the new direct reference is ready for
    // use.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.30.md

    ### Other (Cleanup or Flake)
    
    - Add warning for PV on relaim policy when it is Recycle ([#122339](https://github.com/kubernetes/kubernetes/pull/122339), [@carlory](https://github.com/carlory)) [SIG Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top