Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 288 for Violations (0.18 sec)

  1. hack/update-codegen.sh

        local known_filename="${known_violations_file}"
        if ! diff -u "${known_filename}" "${report_file}"; then
            echo -e "ERROR:"
            echo -e "\tAPI rule check failed - reported violations differ from known violations"
            echo -e "\tPlease read api/api-rules/README.md to resolve the failure in ${known_filename}"
        fi
    
        if [[ "${DBG_CODEGEN}" == 1 ]]; then
            kube::log::status "Generated openapi code"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/types_pluginargs.go

    	// preemption is given by the formula:
    	// numCandidates = max(numNodes * minCandidateNodesPercentage, minCandidateNodesAbsolute)
    	// We say "likely" because there are other factors such as PDB violations
    	// that play a role in the number of candidates shortlisted. Must be at least
    	// 0 nodes. Defaults to 100 nodes if unspecified.
    	MinCandidateNodesAbsolute int32
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 23:15:53 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Stopwatch.java

     *        }
     *      });
     * }</pre>
     *
     * @author Kevin Bourrillion
     * @since 10.0
     */
    @GwtCompatible(emulated = true)
    @SuppressWarnings("GoodTime") // lots of violations
    @ElementTypesAreNonnullByDefault
    public final class Stopwatch {
      private final Ticker ticker;
      private boolean isRunning;
      private long elapsedNanos;
      private long startTick;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Nov 15 21:38:09 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Stopwatch.java

     *        }
     *      });
     * }</pre>
     *
     * @author Kevin Bourrillion
     * @since 10.0
     */
    @GwtCompatible(emulated = true)
    @SuppressWarnings("GoodTime") // lots of violations
    @ElementTypesAreNonnullByDefault
    public final class Stopwatch {
      private final Ticker ticker;
      private boolean isRunning;
      private long elapsedNanos;
      private long startTick;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/policy/v1/types.go

    package v1
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/intstr"
    )
    
    // DisruptionBudgetCause is the status cause returned for eviction failures caused by PodDisruptionBudget violations.
    const DisruptionBudgetCause metav1.CauseType = "DisruptionBudget"
    
    // PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.
    type PodDisruptionBudgetSpec struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/Suppliers.java

        return new ExpiringMemoizingSupplier<>(delegate, toNanosSaturated(duration));
      }
    
      @VisibleForTesting
      @SuppressWarnings("GoodTime") // lots of violations
      static class ExpiringMemoizingSupplier<T extends @Nullable Object>
          implements Supplier<T>, Serializable {
        final Supplier<T> delegate;
        final long durationNanos;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. pkg/kube/krt/README.md

    * Add OpenTelemetry tracing to controllers ([prototype](https://github.com/howardjohn/istio/commits/experiment/cv2-tracing)).
    * Automatically generate mermaid diagrams showing system dependencies.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_quantize.cc

        } else {
          return {0.0, 255.0};
        }
      }
    
      // Apply some sanity check and report some warnings for those who don't follow
      // the best quantization practice. This also fixes some simple violations.
      void SanityCheckAndAdjustment(func::FuncOp func);
    
      // Whether the func contains Quantize ops. This is used to determine whether
      // to use the quantization parameters from the fixed output range property.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

        } else {
          return {0.0, 255.0};
        }
      }
    
      // Apply some sanity check and report some warnings for those who don't follow
      // the best quantization practice. This also fixes some simple violations.
      void SanityCheckAndAdjustment(func::FuncOp func);
    
      // Whether the func contains Quantize ops. This is used to determine whether
      // to use the quantization parameters from the fixed output range property.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/BUILD

            "@com_google_absl//absl/types:optional",
            "@local_xla//xla:parse_flags_from_env",
        ],
    )
    
    # Header-only version of "flags" library, for linking from the shared object
    # without ODR violations.
    cc_library(
        name = "flags_headers",
        hdrs = ["flags.h"],
        visibility = [":friends"],
        deps = [
            "//tensorflow/core:framework_internal",
            "//tensorflow/core:framework_types_hdr",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
Back to top