Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 316 for statusbar (0.21 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/BuildStatusRendererTest.groovy

            renderer.onOutput(event1)
            renderer.onOutput(updateNow())
    
            then:
            statusBar.display == "<-------------> 0% INITIALIZING [0ms]"
    
            when:
            currentTimeMs += 1000
            renderer.onOutput(event2)
            renderer.onOutput(updateNow())
    
            then:
            statusBar.display == "<-------------> 0% INITIALIZING [1s]"
        }
    
        def "hides timer between build phases"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultColorMap.java

    import static org.gradle.internal.logging.text.StyledTextOutput.Style.UserInput;
    
    public class DefaultColorMap implements ColorMap {
        private static final String STATUS_BAR = "statusbar";
        private static final String BOLD = "bold";
        private static final String COLOR_DIVIDER = "-";
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/node/graph_populator.go

    }
    
    func resourceClaimStatusesEqual(statusA, statusB []corev1.PodResourceClaimStatus) bool {
    	if len(statusA) != len(statusB) {
    		return false
    	}
    	// In most cases, status entries only get added once and not modified.
    	// But this cannot be guaranteed, so for the sake of correctness in all
    	// cases this code here has to check.
    	for i := range statusA {
    		if statusA[i].Name != statusB[i].Name {
    			return false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. plugin/pkg/admission/noderestriction/admission.go

    	}
    }
    
    func resourceClaimStatusesEqual(statusA, statusB []api.PodResourceClaimStatus) bool {
    	if len(statusA) != len(statusB) {
    		return false
    	}
    	// In most cases, status entries only get added once and not modified.
    	// But this cannot be guaranteed, so for the sake of correctness in all
    	// cases this code here has to check.
    	for i := range statusA {
    		if statusA[i].Name != statusB[i].Name {
    			return false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/io.cc

    #include <string>
    #include <vector>
    
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_format.h"
    #include "absl/strings/string_view.h"
    #include "tsl/platform/env.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/statusor.h"
    
    namespace stablehlo::quantization::io {
    
    absl::StatusOr<std::string> GetLocalTmpFileName(tsl::Env* const env) {
      std::string tmp_fname{};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util_test.cc

      std::string topology_attr;
      std::vector<int64_t> device_assignment_attr;
    
      auto status_or = GetTPUCompilationAndExecutionDevices(
          devices, /*num_replicas=*/1, /*num_cores_per_replica=*/1, topology_attr,
          device_assignment_attr);
      ASSERT_FALSE(status_or.ok());
      EXPECT_EQ(status_or.status().message(), std::get<1>(GetParam()));
    }
    
    INSTANTIATE_TEST_SUITE_P(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.h

    namespace mlir {
    namespace TFL {
    
    bool IsQuantized(const tflite::TensorT& tensor);
    
    absl::StatusOr<mlir::quant::QuantizedType> GetQuantizedType(
        const tflite::TensorT& tensor, mlir::Builder builder,
        bool is_constant = false, mlir::Type storage_type = {});
    
    // Imports float tensor with calibration value into calibrated quantized type.
    absl::StatusOr<mlir::quant::QuantizedType> GetCalibratedQuantizedType(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. tensorflow/c/tf_status_helper.h

    #define _TF_STATUS_ASSIGN_OR_RETURN_IMPL(statusor, lhs, rexpr, c_status) \
      auto statusor = (rexpr);                                               \
      if (!statusor.ok()) {                                                  \
        tensorflow::Set_TF_Status_from_Status(c_status, statusor.status());  \
        return;                                                              \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.h

    #include "tensorflow/core/protobuf/struct.pb.h"
    
    namespace tensorflow {
    
    using tsl::StatusOr;
    
    // Converts an TensorFlow tensor proto into an MLIR elements attribute.
    absl::StatusOr<mlir::ElementsAttr> ConvertTensorProto(
        const TensorProto& input_tensor, mlir::Builder* builder);
    
    // Converts an TensorFlow tensor into an MLIR elements attribute.
    absl::StatusOr<mlir::ElementsAttr> ConvertTensor(const Tensor& input_tensor,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/io_test.cc

    };
    
    TEST(IoTest, GetLocalTmpFileNameGivesValidFileName) {
      absl::StatusOr<std::string> tmp_file_name = GetLocalTmpFileName();
    
      ASSERT_THAT(tmp_file_name, IsOk());
      EXPECT_THAT(*tmp_file_name, Not(IsEmpty()));
    }
    
    TEST(IoTest, GetLocalTmpFileNameWhenNoTempDirsReturnsInternalError) {
      TestEnvBrokenFileSystemAndNoLocalTempDirs broken_env;
      absl::StatusOr<std::string> tmp_file_name = GetLocalTmpFileName(&broken_env);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top