Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for Warningf (0.17 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    			}
    			// If the mount path could not be found, don't fail the unmount, but instead log a warning and proceed,
    			// using the value from deviceToDetach.DeviceMountPath, so that the device can be marked as unmounted
    			deviceMountPath = deviceToDetach.DeviceMountPath
    			klog.Warningf(deviceToDetach.GenerateMsgDetailed(fmt.Sprintf(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    				in.Action == security_beta.AuthorizationPolicy_DENY {
    				warning := fmt.Errorf("configured AuthorizationPolicy will deny all traffic " +
    					"to TCP ports under its scope due to the use of only HTTP attributes in a DENY rule; " +
    					"it is recommended to explicitly specify the port")
    				warnings = appendErrors(warnings, warning)
    
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    type warningRecorder struct {
    	mu       sync.Mutex
    	warnings []string
    }
    
    // AddWarning adds a warning to recorder.
    func (r *warningRecorder) AddWarning(agent, text string) {
    	r.mu.Lock()
    	defer r.mu.Unlock()
    	r.warnings = append(r.warnings, text)
    }
    
    func (r *warningRecorder) Warnings() []string {
    	r.mu.Lock()
    	defer r.mu.Unlock()
    
    	warnings := make([]string, len(r.warnings))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. pkg/config/validation/validation_test.go

    				t.Errorf("ValidateServiceEntry got valid=%v but wanted valid=%v: %v",
    					err == nil, c.valid, err)
    			}
    			if (warning != nil) != c.warning {
    				t.Errorf("ValidateServiceEntry got warning=%v but wanted warning=%v: %v",
    					warning != nil, c.warning, warning)
    			}
    		})
    	}
    }
    
    func TestValidateAuthorizationPolicy(t *testing.T) {
    	cases := []struct {
    		name        string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

                  restoreInterruptIfIsInterruptedException(e);
                  logger.get().log(WARNING, "thrown by close()", e);
                }
              });
        } catch (RejectedExecutionException e) {
          if (logger.get().isLoggable(WARNING)) {
            logger
                .get()
                .log(
                    WARNING,
                    String.format("while submitting close to %s; will close inline", executor),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

    // expected-warning @+1 {{Invalid number of arguments to non_max_suppression_padded_v2}}
    func.func private @nms_padded_invalid_num_args(%arg0: tensor<100x4xf32>, %arg1: tensor<100xf32>, %arg2: tensor<i32>, %arg3: tensor<f32>) -> (tensor<1x10xi32>, tensor<i32>) attributes  {tf._implements = "non_max_suppression_padded_v2", tf._reference = "mlir"}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Maps.java

       * backing set. The returned map does not support put operations.
       *
       * <p><b>Warning:</b> If the function rejects {@code null}, caution is required to make sure the
       * set does not contain {@code null}, because the view cannot stop {@code null} from being added
       * to the set.
       *
       * <p><b>Warning:</b> This method assumes that for any instance {@code k} of key type {@code K},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Maps.java

       * backing set. The returned map does not support put operations.
       *
       * <p><b>Warning:</b> If the function rejects {@code null}, caution is required to make sure the
       * set does not contain {@code null}, because the view cannot stop {@code null} from being added
       * to the set.
       *
       * <p><b>Warning:</b> This method assumes that for any instance {@code k} of key type {@code K},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CacheTest.kt

        assertThat(response1.header("Warning")).isEqualTo("199 test danger")
        val response2 = get(server.url("/"))
        assertThat(response2.body.string()).isEqualTo("A")
        assertThat(response2.header("Warning")).isNull()
      }
    
      @Test
      fun getHeadersRetainsCached200LevelWarnings() {
        server.enqueue(
          MockResponse.Builder()
            .addHeader("Warning: 299 test danger")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

            tf_executor.fetch
          }
          func.return
        }
        ```
        produces the following warnings
        ```mlir
          6:45: warning: unexpected control dependency path: path 0, node 0 (source)
          %island1 = tf_executor.island wraps "tf.AssignVariableOp"(%arg0, %arg2) : (tensor<!tf_type.resource<tensor<f32>>>, tensor<f32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top