repo_name
stringlengths
6
97
path
stringlengths
3
341
text
stringlengths
8
1.02M
socaljoker/SITableViewForm
SITableViewForm/TextFieldFormFieldCell.h
// // TextFieldFormFieldCell.h // SITableViewForm // // Created by <NAME> on 9/14/16. // Copyright © 2016 <NAME>. All rights reserved. // #import "FormFieldTableViewCell.h" #define TextFieldFormFieldIdentifier @"TEXTFIELDFORMFIELD" @interface TextFieldFormFieldCell : FormFieldTableViewCell @property (strong, no...
socaljoker/SITableViewForm
SITableViewForm/FormBuilder.h
<reponame>socaljoker/SITableViewForm // // FormBuilder.h // SITableViewForm // // Created by <NAME> on 9/15/16. // Copyright © 2016 <NAME>. All rights reserved. // #import <UIKit/UIKit.h> #import "FormFieldSection.h" #import "FormBuilderElement.h" @interface FormBuilder : NSObject @property (strong, nonatomic, n...
socaljoker/SITableViewForm
SITableViewForm/StringValidator.h
// // StringValidator.h // SITableViewForm // // Created by <NAME> on 9/14/16. // Copyright © 2016 <NAME>. All rights reserved. // #import <UIKit/UIKit.h> #import "Validator.h" @interface StringValidator : Validator @property (nonatomic) int minLength; @property (nonatomic) int maxLength; @property (nonatomic) N...
socaljoker/SITableViewForm
SITableViewForm/Validator.h
<gh_stars>0 // // Validator.h // SITableViewForm // // Created by <NAME> on 9/14/16. // Copyright © 2016 <NAME>. All rights reserved. // #import <Foundation/Foundation.h> #define NSValidatorErrorDomain @"NSValidatorErrorDomain" typedef enum : NSUInteger { NSValidationErrorBeyondMaxValue, NSValidationErro...
socaljoker/SITableViewForm
SITableViewForm/ArrayValidator.h
// // ArrayValidator.h // SITableViewForm // // Created by <NAME> on 9/14/16. // Copyright © 2016 <NAME>. All rights reserved. // #import "Validator.h" @interface ArrayValidator : Validator @property (nonatomic) int minCount; @property (nonatomic) int maxCount; @end
socaljoker/SITableViewForm
SITableViewForm/BooleanFormField.h
<reponame>socaljoker/SITableViewForm // // BooleanFormField.h // SITableViewForm // // Created by <NAME> on 9/14/16. // Copyright © 2016 <NAME>. All rights reserved. // #import "FormField.h" @interface BooleanFormField : FormField @property (nonatomic) BOOL currentValue; @property (nonatomic, copy, nullable) voi...
socaljoker/SITableViewForm
SITableViewForm/RegexValidator.h
<filename>SITableViewForm/RegexValidator.h // // RegexValidator.h // SITableViewForm // // Created by <NAME> on 9/14/16. // Copyright © 2016 <NAME>. All rights reserved. // #import "Validator.h" typedef enum : NSUInteger { RegexMatchCountTypeEquals, RegexMatchCountTypeLessThan, RegexMatchCountTypeGrea...
socaljoker/SITableViewForm
SITableViewForm/NumberFormField.h
<gh_stars>0 // // NumberFormField.h // SITableViewForm // // Created by <NAME> on 9/14/16. // Copyright © 2016 <NAME>. All rights reserved. // #import "FormField.h" @interface NumberFormField : FormField @property (strong, nonatomic, nullable) NSNumber *currentValue; @property (strong, nonatomic, nonnull) NSNumb...
socaljoker/SITableViewForm
SITableViewForm/FormTableViewController.h
<reponame>socaljoker/SITableViewForm // // FormTableViewController.h // SITableViewForm // // Created by <NAME> on 9/14/16. // Copyright © 2016 <NAME>. All rights reserved. // #import <UIKit/UIKit.h> #import "Form.h" #import "FormField.h" #import "FormFieldTableViewCell.h" #import "StringFormField.h" #import "Num...
socaljoker/SITableViewForm
SITableViewForm/DateFormField.h
// // DateFormField.h // SITableViewForm // // Created by <NAME> on 9/14/16. // Copyright © 2016 <NAME>. All rights reserved. // #import "FormField.h" @interface DateFormField : FormField @property (strong, nonatomic, nullable) NSDate *currentValue; @property (strong, nonatomic, nonnull) NSDateFormatter *formatt...
socaljoker/SITableViewForm
SITableViewForm/StringFormField.h
<gh_stars>0 // // StringFormField.h // SITableViewForm // // Created by <NAME> on 9/14/16. // Copyright © 2016 <NAME>. All rights reserved. // #import "FormField.h" @interface StringFormField : FormField @property (strong, nonatomic, nullable) NSString *currentValue; @property (nonatomic, copy, nullable) void (^...
socaljoker/SITableViewForm
SITableViewForm/FormFieldTableViewCell.h
<reponame>socaljoker/SITableViewForm // // FormFieldTableViewCell.h // SITableViewForm // // Created by <NAME> on 9/14/16. // Copyright © 2016 <NAME>. All rights reserved. // #import <UIKit/UIKit.h> #import "FormField.h" @interface FormFieldTableViewCell : UITableViewCell @property (strong, nonatomic, nonnull) F...
socaljoker/SITableViewForm
SITableViewForm/ObjectSelectionFormField.h
<reponame>socaljoker/SITableViewForm // // ObjectSelectionFormField.h // SITableViewForm // // Created by <NAME> on 9/14/16. // Copyright © 2016 <NAME>. All rights reserved. // #import "FormField.h" @interface ObjectSelectionFormField : FormField @property (strong, nonatomic, nullable) NSObject *currentValue; @p...
socaljoker/SITableViewForm
SITableViewForm/IntegerValidator.h
<filename>SITableViewForm/IntegerValidator.h // // IntegerValidator.h // SITableViewForm // // Created by <NAME> on 9/14/16. // Copyright © 2016 <NAME>. All rights reserved. // #import "Validator.h" @interface IntegerValidator : Validator @property (nonatomic) int maxValue; @property (nonatomic) int minValue; @...
socaljoker/SITableViewForm
SITableViewForm/BlockValidator.h
<filename>SITableViewForm/BlockValidator.h<gh_stars>0 // // BlockValidator.h // SITableViewForm // // Created by <NAME> on 9/14/16. // Copyright © 2016 <NAME>. All rights reserved. // #import "Validator.h" #import "FormField.h" @interface BlockValidator : Validator @property (nonatomic, copy, nonnull) NSError* _...
socaljoker/SITableViewForm
SITableViewForm/AttributedStringFormField.h
// // AttributedStringFormField.h // SITableViewForm // // Created by <NAME> on 9/14/16. // Copyright © 2016 <NAME>. All rights reserved. // #import "FormField.h" @interface AttributedStringFormField : FormField @property (strong, nonatomic, nullable) NSAttributedString *currentValue; @property (nonatomic, copy,...
socaljoker/SITableViewForm
SITableViewForm/FormBuilderElement.h
// // FormBuilderElement.h // SITableViewForm // // Created by <NAME> on 9/15/16. // Copyright © 2016 <NAME>. All rights reserved. // #import <UIKit/UIKit.h> #import "FormField.h" #import "FormFieldTableViewCell.h" typedef void (^CellInfoBlock)(FormFieldTableViewCell * _Nonnull cell); @interface FormBuilderEleme...
socaljoker/SITableViewForm
SITableViewForm/DecimalValidator.h
<reponame>socaljoker/SITableViewForm // // DecimalValidator.h // SITableViewForm // // Created by <NAME> on 9/14/16. // Copyright © 2016 <NAME>. All rights reserved. // #import "Validator.h" @interface DecimalValidator : Validator @property (nonatomic) float minValue; @property (nonatomic) float maxValue; @end
socaljoker/SITableViewForm
SITableViewForm/FormField.h
<filename>SITableViewForm/FormField.h // // FormField.h // SITableViewForm // // Created by <NAME> on 9/14/16. // Copyright © 2016 <NAME>. All rights reserved. // #import <Foundation/Foundation.h> #import "Validator.h" @interface FormField : NSObject @property (strong, nonatomic, nullable) NSString *identifier; ...
socaljoker/SITableViewForm
SITableViewForm/NilValueValidator.h
<reponame>socaljoker/SITableViewForm // // NilValueValidator.h // SITableViewForm // // Created by <NAME> on 9/14/16. // Copyright © 2016 <NAME>. All rights reserved. // #import "Validator.h" @interface NilValueValidator : Validator @end
socaljoker/SITableViewForm
SITableViewForm/FormFieldSection.h
// // FormFieldSection.h // SITableViewForm // // Created by <NAME> on 9/14/16. // Copyright © 2016 <NAME>. All rights reserved. // #import <Foundation/Foundation.h> @interface FormFieldSection : NSObject @property (strong, nonatomic, nullable) NSString *headerText; @property (strong, nonatomic, nullable) NSStri...
supercj92/tomcat6
native/connector/src/jnilib.c
/* Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not...
supercj92/tomcat6
native/connector/src/ssl.c
<reponame>supercj92/tomcat6 /* Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * ...
supercj92/tomcat6
native/connector/src/poll.c
/* Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not...
supercj92/tomcat6
native/connector/src/sslcontext.c
<filename>native/connector/src/sslcontext.c<gh_stars>0 /* Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apac...
supercj92/tomcat6
native/connector/include/tcn_api.h
<filename>native/connector/include/tcn_api.h<gh_stars>0 /* Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apa...
supercj92/tomcat6
native/connector/os/unix/uxpipe.c
/* Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not...
davepallot/OSKAR
oskar/sky/src/oskar_sky_copy_source_data.c
<reponame>davepallot/OSKAR /* * Copyright (c) 2014-2018, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above co...
davepallot/OSKAR
oskar/convert/src/oskar_convert_brightness_to_jy.c
<reponame>davepallot/OSKAR /* * Copyright (c) 2016, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyrig...
davepallot/OSKAR
oskar/sky/src/oskar_sky_scale_flux_with_frequency.c
/* * Copyright (c) 2011-2018, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/mem/src/oskar_mem_multiply.c
<gh_stars>1-10 /* * Copyright (c) 2012-2017, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright noti...
davepallot/OSKAR
oskar/vis/src/oskar_vis_block_copy.c
/* * Copyright (c) 2015-2016, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/utility/src/oskar_scan_binary_file.c
/* * Copyright (c) 2012-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/imager/src/private_imager_update_plane_wproj.c
/* * Copyright (c) 2016-2017, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/sky/oskar_sky_filter_by_flux_cuda.h
<reponame>davepallot/OSKAR<gh_stars>1-10 /* * Copyright (c) 2013-2014, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retai...
davepallot/OSKAR
oskar/settings/oskar_SettingsNode.h
/* * Copyright (c) 2015-2017, The University of Oxford * All rights reserved. * * This file is part of the OSKAR package. * Contact: oskar at oerc.ox.ac.uk * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. R...
davepallot/OSKAR
oskar/telescope/station/oskar_vla_pbcor_inline.h
<reponame>davepallot/OSKAR /* * Copyright (c) 2013-2014, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above co...
davepallot/OSKAR
oskar/interferometer/oskar_evaluate_jones_E.h
/* * Copyright (c) 2011-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/telescope/station/src/oskar_station_work.c
<reponame>davepallot/OSKAR /* * Copyright (c) 2012-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above co...
davepallot/OSKAR
oskar/utility/src/oskar_string_to_array.c
/* * Copyright (c) 2011-2016, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/log/src/oskar_log_write.c
/* * Copyright (c) 2012-2016, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/convert/oskar_convert_apparent_ra_dec_to_az_el.h
<gh_stars>1-10 /* * Copyright (c) 2013, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, ...
davepallot/OSKAR
oskar/beam_pattern/oskar_beam_pattern_accessors.h
<filename>oskar/beam_pattern/oskar_beam_pattern_accessors.h /* * Copyright (c) 2016, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source c...
davepallot/OSKAR
oskar/vis/src/oskar_vis_read.c
/* * Copyright (c) 2011-2016, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/utility/src/oskar_binary_write_metadata.c
<gh_stars>1-10 /* * Copyright (c) 2012-2017, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright noti...
davepallot/OSKAR
oskar/interferometer/src/oskar_evaluate_jones_E.c
/* * Copyright (c) 2011-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
python/oskar/src/oskar_vis_block_lib.c
<gh_stars>1-10 /* * Copyright (c) 2016, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, ...
davepallot/OSKAR
oskar/telescope/station/element/src/oskar_element_evaluate.c
/* * Copyright (c) 2012-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/convert/oskar_convert_enu_directions_to_theta_phi_cuda.h
<filename>oskar/convert/oskar_convert_enu_directions_to_theta_phi_cuda.h /* * Copyright (c) 2014, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistribution...
davepallot/OSKAR
oskar/beam_pattern/src/oskar_beam_pattern_run.c
/* * Copyright (c) 2012-2017, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/telescope/station/src/oskar_evaluate_vla_beam_pbcor.c
/* * Copyright (c) 2013-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/math/src/oskar_dftw_c2c_3d_omp.c
<reponame>davepallot/OSKAR /* * Copyright (c) 2013, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyrig...
davepallot/OSKAR
oskar/vis/src/oskar_vis_accessors.c
/* * Copyright (c) 2013-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/vis/oskar_vis.h
<filename>oskar/vis/oskar_vis.h /* * Copyright (c) 2012-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the abo...
davepallot/OSKAR
oskar/imager/src/oskar_imager_reset_cache.c
/* * Copyright (c) 2016-2017, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/vis/private_vis_block.h
<filename>oskar/vis/private_vis_block.h /* * Copyright (c) 2015-2016, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain...
davepallot/OSKAR
oskar/sky/src/oskar_sky_load.c
/* * Copyright (c) 2011-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/math/oskar_kahan_sum.h
<gh_stars>1-10 /* * Copyright (c) 2013-2018, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright noti...
davepallot/OSKAR
oskar/convert/src/oskar_convert_lon_lat_to_relative_directions.c
<filename>oskar/convert/src/oskar_convert_lon_lat_to_relative_directions.c /* * Copyright (c) 2013-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistr...
davepallot/OSKAR
oskar/convert/oskar_convert_apparent_ha_dec_to_enu_directions.h
/* * Copyright (c) 2013, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this list ...
davepallot/OSKAR
oskar/correlate/src/oskar_auto_correlate_scalar_omp.c
<reponame>davepallot/OSKAR<gh_stars>1-10 /* * Copyright (c) 2015-2018, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retai...
davepallot/OSKAR
oskar/vis/oskar_vis_accessors.h
/* * Copyright (c) 2013-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/telescope/station/element/src/oskar_element_load_cst.c
/* * Copyright (c) 2012-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/telescope/station/src/oskar_evaluate_station_beam_aperture_array.c
<filename>oskar/telescope/station/src/oskar_evaluate_station_beam_aperture_array.c /* * Copyright (c) 2012-2017, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1....
davepallot/OSKAR
oskar/telescope/station/src/oskar_station_set_element_coords.c
/* * Copyright (c) 2011-2016, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/convert/oskar_convert_ecef_to_geodetic_spherical.h
<filename>oskar/convert/oskar_convert_ecef_to_geodetic_spherical.h /* * Copyright (c) 2013-2014, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions...
davepallot/OSKAR
oskar/telescope/station/src/oskar_evaluate_element_weights_errors.c
/* * Copyright (c) 2012-2018, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/settings/types/oskar_DateTime.h
/* * Copyright (c) 2015-2017, The University of Oxford * All rights reserved. * * This file is part of the OSKAR package. * Contact: oskar at oerc.ox.ac.uk * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. R...
davepallot/OSKAR
oskar/mem/src/oskar_mem_create.c
<reponame>davepallot/OSKAR /* * Copyright (c) 2013-2017, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above co...
davepallot/OSKAR
oskar/telescope/station/element/oskar_evaluate_dipole_pattern_cuda.h
<gh_stars>1-10 /* * Copyright (c) 2014, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, ...
davepallot/OSKAR
oskar/mem/oskar_mem_multiply.h
<reponame>davepallot/OSKAR /* * Copyright (c) 2012-2017, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above co...
davepallot/OSKAR
oskar/beam_pattern/private_beam_pattern.h
<gh_stars>1-10 /* * Copyright (c) 2016-2017, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright noti...
davepallot/OSKAR
oskar/vis/src/oskar_vis_header_write_ms.c
/* * Copyright (c) 2015-2017, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/telescope/station/element/src/oskar_element_free.c
/* * Copyright (c) 2012-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/telescope/station/element/src/oskar_apply_element_taper_gaussian.c
/* * Copyright (c) 2012-2018, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/telescope/station/src/oskar_station_resize.c
<reponame>davepallot/OSKAR<gh_stars>1-10 /* * Copyright (c) 2011-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retai...
davepallot/OSKAR
oskar/settings/old/oskar_Settings_old.h
<reponame>davepallot/OSKAR /* * Copyright (c) 2011-2014, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above co...
davepallot/OSKAR
oskar/telescope/station/src/oskar_evaluate_beam_horizon_direction.c
<reponame>davepallot/OSKAR /* * Copyright (c) 2011-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above co...
davepallot/OSKAR
oskar/telescope/station/src/oskar_station_different.c
<reponame>davepallot/OSKAR<gh_stars>1-10 /* * Copyright (c) 2013-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retai...
davepallot/OSKAR
oskar/vis/oskar_vis_block_accessors.h
/* * Copyright (c) 2015-2016, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/correlate/src/oskar_cross_correlate.c
<filename>oskar/correlate/src/oskar_cross_correlate.c /* * Copyright (c) 2011-2018, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source co...
davepallot/OSKAR
oskar/convert/oskar_convert_ecef_to_station_uvw.h
/* * Copyright (c) 2013-2014, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/beam_pattern/src/private_beam_pattern_generate_coordinates.c
<gh_stars>1-10 /* * Copyright (c) 2013-2016, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright noti...
davepallot/OSKAR
oskar/imager/src/private_imager_update_plane_fft.c
<filename>oskar/imager/src/private_imager_update_plane_fft.c /* * Copyright (c) 2016-2017, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of so...
davepallot/OSKAR
oskar/mem/src/oskar_mem_read_healpix_fits.c
/* * Copyright (c) 2016, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this list ...
davepallot/OSKAR
oskar/vis/src/oskar_vis_block_write_ms.c
<gh_stars>1-10 /* * Copyright (c) 2015-2017, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright noti...
davepallot/OSKAR
oskar/correlate/src/oskar_evaluate_cross_power.c
<filename>oskar/correlate/src/oskar_evaluate_cross_power.c<gh_stars>1-10 /* * Copyright (c) 2014-2018, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistrib...
davepallot/OSKAR
oskar/interferometer/src/oskar_evaluate_jones_K.c
/* * Copyright (c) 2011-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
apps/oskar_option_parser.h
/* * Copyright (c) 2012-2017, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/sky/oskar_update_horizon_mask.h
/* * Copyright (c) 2013-2017, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/interferometer/src/oskar_evaluate_jones_R.c
/* * Copyright (c) 2011-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/telescope/station/element/oskar_evaluate_geometric_dipole_pattern_cuda.h
/* * Copyright (c) 2012-2014, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/sky/oskar_parallactic_angle.h
<gh_stars>1-10 /* * Copyright (c) 2013, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, ...
davepallot/OSKAR
oskar/telescope/station/element/src/oskar_element_copy.c
/* * Copyright (c) 2012-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/telescope/station/src/oskar_station_analyse.c
/* * Copyright (c) 2012-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/telescope/oskar_telescope.h
<reponame>davepallot/OSKAR /* * Copyright (c) 2013-2016, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above co...
davepallot/OSKAR
gui/oskar_DoubleSpinBox.h
<gh_stars>1-10 /* * Copyright (c) 2012-2017, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright noti...
davepallot/OSKAR
oskar/telescope/src/oskar_telescope_set_station_coords.c
/* * Copyright (c) 2011-2015, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...
davepallot/OSKAR
oskar/utility/oskar_dir.h
/* * Copyright (c) 2016, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this list ...
davepallot/OSKAR
oskar/log/private_log.h
/* * Copyright (c) 2012-2016, The University of Oxford * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this ...