Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for derrs (0.09 sec)

  1. cmd/admin-handlers-users-race_test.go

    				if err != nil {
    					return err
    				}
    				c.mustNotListObjects(ctx, uClient, bucket)
    				return nil
    			}
    		}(i), i)
    	}
    	if errs := g.Wait(); len(errs) > 0 {
    		c.Fatalf("unable to remove users: %v", errs)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/dryrun/dryrun.go

    func PrintDryRunFiles(files []FileToPrint, w io.Writer) error {
    	errs := []error{}
    	for _, file := range files {
    		if len(file.RealPath) == 0 {
    			continue
    		}
    
    		fileBytes, err := os.ReadFile(file.RealPath)
    		if err != nil {
    			errs = append(errs, err)
    			continue
    		}
    
    		// Make it possible to fake the path of the file; i.e. you may want to tell the user
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/feature.go

    			c.MaxRequestsInFlight+c.MaxMutatingRequestsInFlight,
    		)
    	}
    
    	return nil
    }
    
    func (o *FeatureOptions) Validate() []error {
    	if o == nil {
    		return nil
    	}
    
    	errs := []error{}
    	return errs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/persistentvolumebindercontroller.go

    	return nil
    }
    
    // Validate checks validation of PersistentVolumeBinderControllerOptions.
    func (o *PersistentVolumeBinderControllerOptions) Validate() []error {
    	if o == nil {
    		return nil
    	}
    
    	errs := []error{}
    	return errs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/python/flatbuffer_to_mlir.cc

        input = mlir::openInputFile(model_file_or_buffer, &errorMessage);
        if (!input) {
          llvm::errs() << errorMessage << "\n";
          return "";
        }
      } else {
        input = llvm::MemoryBuffer::getMemBuffer(model_file_or_buffer, "flatbuffer",
                                                 false);
        if (!input) {
          llvm::errs() << "Can't get llvm::MemoryBuffer\n";
          return "";
        }
      }
    
      mlir::MLIRContext context;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. pkg/webhooks/validation/server/server.go

    }
    
    // Validate tests if the Options has valid params.
    func (o Options) Validate() error {
    	var errs *multierror.Error
    	if err := validatePort(int(o.Port)); err != nil {
    		errs = multierror.Append(errs, err)
    	}
    	return errs.ErrorOrNil()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 04 06:13:56 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. cmd/erasure-common.go

    		context.DeadlineExceeded,
    		context.Canceled,
    	}
    	ignoredErrs = append(ignoredErrs, objectOpIgnoredErrs...)
    
    	errs := g.Wait()
    	for index, err := range errs {
    		if err == nil {
    			continue
    		}
    		if !IsErr(err, ignoredErrs...) {
    			storageLogOnceIf(ctx, fmt.Errorf("Drive %s, path (%s/%s) returned an error (%w)",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/odml_converter_main.cc

    | (_) | |) | |\/| | |__  | (__/ _ \ ' \ V / -_) '_|  _/ -_) '_|
     \___/|___/|_|  |_|____|  \___\___/_||_\_/\___|_|  \__\___|_|
    )";
    
    int main(int argc, char* argv[]) {
      tensorflow::InitMlir y(&argc, &argv);
      llvm::errs() << art << "\n";
    
      mlir::odml::registerODMLConverterPasses();
      mlir::odml::registerLegalizeStablehloToVhloPass();
    
      mlir::DialectRegistry registry;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/op_stat_pass.cc

    namespace {
    class PrintOpStatsPass : public PassWrapper<PrintOpStatsPass, OperationPass<>> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(PrintOpStatsPass)
    
      explicit PrintOpStatsPass(raw_ostream *os = &llvm::errs(),
                                std::vector<std::string> accepted_dialects = {})
          : accepted_dialects_(accepted_dialects), os_(os), total_ops_(0) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/lite/tfl_quantizer.cc

      llvm::InitLLVM y(argc, argv);
      llvm::cl::ParseCommandLineOptions(argc, argv);
      auto file_or_err = llvm::MemoryBuffer::getFileOrSTDIN(inputFileName.c_str());
      if (std::error_code error = file_or_err.getError()) {
        llvm::errs() << argv[0] << ": could not open input file '" << inputFileName
                     << "': " << error.message() << "\n";
        return 1;
      }
      auto buffer = file_or_err->get();
      std::string output_buffer;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top