content stringlengths 263 5.24M | pred_label stringclasses 1
value | pred_score_pos float64 0.6 1 |
|---|---|---|
package com.saucelabs.appium.page_object.widgets.android.simple;
import com.saucelabs.appium.page_object.widgets.Movie;
import io.appium.java_client.android.AndroidElement;
import io.appium.java_client.pagefactory.AndroidFindBy;
import org.openqa.selenium.WebElement;
public class AndroidMovie extends Movie {
@An... | __label__POS | 0.881549 |
package com.saucelabs.appium.page_object.widgets.android.simple;
import com.saucelabs.appium.page_object.widgets.Review;
import io.appium.java_client.android.AndroidElement;
import io.appium.java_client.pagefactory.AndroidFindBy;
import org.openqa.selenium.WebElement;
public class AndroidReview extends Review {
... | __label__POS | 0.852412 |
import java.net.MalformedURLException;
import java.net.URL;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.testng.Assert;
import org.testng.annotations.AfterTest;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Test;
import io.appium.java_client.android.AndroidDriver;
impor... | __label__POS | 0.696006 |
import java.net.MalformedURLException;
import java.net.URL;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.testng.Assert;
import org.testng.annotations.AfterTest;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Test;
import io.appium.java_client.ios.IOSDriver;
import io.ap... | __label__POS | 0.892411 |
import java.net.MalformedURLException;
import java.net.URL;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.testng.Assert;
import org.testng.annotations.AfterTest;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Test;
import io.appium.java_client.ios.IOSDriver;
import io.ap... | __label__POS | 0.984137 |
import java.net.MalformedURLException;
import java.net.URL;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.testng.Assert;
import org.testng.annotations.AfterTest;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Test;
import io.appium.java_client.android.AndroidDriver;
impo... | __label__POS | 0.983436 |
<?php
/**
* (C) Copyright Apperta Foundation 2021
* This file is part of OpenEyes.
* OpenEyes is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any lat... | __label__POS | 0.615657 |
package io.appium.java_client.flutter.commands;
import lombok.Getter;
import lombok.experimental.Accessors;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.internal.Require;
import java.util.Map;
@Accessors(chain = true)
@Getter
public class DragAndDropParameter extends FlutterCommandParameter {
... | __label__POS | 0.709422 |
package io.appium.java_client.flutter.commands;
import io.appium.java_client.AppiumBy;
import lombok.Getter;
import lombok.Setter;
import lombok.experimental.Accessors;
import org.openqa.selenium.internal.Require;
import java.time.Duration;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;... | __label__POS | 0.689647 |
package io.appium.java_client.flutter.options;
import io.appium.java_client.remote.options.BaseOptions;
import io.appium.java_client.remote.options.CanSetCapability;
import org.openqa.selenium.Capabilities;
import java.util.Optional;
import static io.appium.java_client.internal.CapabilityHelpers.toInteger;
public i... | __label__POS | 0.899671 |
<?php
/*
* DataTables example server-side processing script.
*
* Please note that this script is intentionally extremely simply to show how
* server-side processing can be implemented, and probably shouldn't be used as
* the basis for a large complex system. It is suitable for simple use cases as
* for learning.... | __label__POS | 0.743788 |
package io.appium.java_client.touch.offset;
import io.appium.java_client.touch.ActionOptions;
import org.openqa.selenium.Point;
import java.util.Map;
import static java.util.Optional.ofNullable;
@Deprecated
public class PointOption<T extends PointOption<T>> extends ActionOptions<T> {
protected Point coordinate... | __label__POS | 0.923275 |
package io.appium.java_client.touch.offset;
import org.openqa.selenium.Point;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.remote.RemoteWebElement;
import java.util.HashMap;
import java.util.Map;
import static com.google.common.base.Preconditions.checkArgument;
import static java.util.Objects.re... | __label__POS | 0.991383 |
package io.appium.java_client.android.nativekey;
public enum AndroidKey {
/**
* Key code constant: Unknown key code.
*/
UNKNOWN(0),
/**
* Key code constant: Soft Left key.
* Usually situated below the display on phones and used as a multi-function
* feature key for selecting a soft... | __label__POS | 0.945555 |
package io.appium.java_client.android.nativekey;
public enum KeyEventMetaModifier {
/**
* SHIFT key locked in CAPS mode.
* Reserved for use by MetaKeyKeyListener for a published constant in its API.
*/
CAP_LOCKED(0x100),
/**
* ALT key locked.
* Reserved for use by MetaKeyKeyListene... | __label__POS | 0.778127 |
@file:JvmName("CalendarUtils")
package com.applandeo.materialcalendarview
import android.content.Context
import android.graphics.*
import android.graphics.drawable.BitmapDrawable
import android.graphics.drawable.Drawable
import androidx.core.content.ContextCompat
import java.util.*
import java.util.concurrent.TimeUni... | __label__POS | 0.811413 |
<?php
use OE\factories\models\traits\HasFactory;
/**
* Created by PhpStorm.
* User: PATELH3
* Date: 11/12/2015
* Time: 14:51.
*/
class Eye_Status extends BaseActiveRecord
{
use HasFactory;
/**
* Returns the static model of the specified AR class.
*
* @return Eye the static model class
... | __label__POS | 0.669918 |
package com.applandeo.materialcalendarview.utils
import android.view.View
import java.util.*
/**
* This helper class represent a selected day when calendar is in a picker date mode.
* It is used to remember a selected calendar cell.
*
* @param calendar Calendar instance representing selected cell date
* @param v... | __label__POS | 0.837882 |
@file:JvmName("DateUtils")
package com.applandeo.materialcalendarview.utils
import android.content.Context
import com.applandeo.materialcalendarview.R
import java.util.*
import java.util.concurrent.TimeUnit
/**
* Created by Applandeo Team.
*/
/**
* @return An instance of the Calendar object with hour set to 00:0... | __label__POS | 0.642412 |
package com.applandeo.materialcalendarview.utils
import android.content.Context
import android.graphics.Typeface
import android.graphics.drawable.Drawable
import android.view.View
import com.applandeo.materialcalendarview.CalendarDay
import com.applandeo.materialcalendarview.CalendarView
import com.applandeo.materialc... | __label__POS | 0.964789 |
//
// NMGUtils.h
// NMGeometryFramework
//
// Created by Won-Young Son on 2017. 1. 10..
// Copyright Β© 2017λ
NAVER. All rights reserved.
//
#import "NMGGeometry.h"
@class NMGPoint;
@class NMGLatLng;
@class NMGLineString;
/**
μ§μ€λ©νΈλ¦¬μ κ΄λ ¨λ μ νΈλ¦¬ν° κΈ°λ₯μ μ 곡νλ ν΄λμ€.
*/
NMG_EXPORT
@interface NMGUtils : NSObject
/**
`line... | __label__POS | 0.94521 |
//
// NMGLatLngBounds.h
// NMGeometryFramework
//
// Created by mrtajo on 2017. 2. 6..
// Copyright Β© 2017λ
NAVER. All rights reserved.
//
#import "NMGGeometry.h"
@class NMGLatLng;
/**
λ¨μμͺ½κ³Ό λΆλμͺ½ λ μκ²½λ μ’νλ‘ μ΄λ£¨μ΄μ§
<a href="https://terms.naver.com/entry.nhn?docId=3479529&cid=58439&categoryId=58439">μ΅μ κ²½κ³ μ¬κ°ν... | __label__POS | 0.692267 |
<?php
class m170302_141036_fix_eye_status_in_operationnote_biometry_view extends CDbMigration
{
public function up()
{
$this->execute('CREATE OR REPLACE VIEW et_ophtroperationnote_biometry AS SELECT
eol.id AS id,eol.eye_id AS eye_id,eol.last_modified_date AS last_modified_d... | __label__POS | 0.88181 |
package com.applandeo.materialcalendarsampleapp;
import android.os.Bundle;
import android.widget.Button;
import android.widget.Toast;
import androidx.appcompat.app.AppCompatActivity;
import com.applandeo.materialcalendarview.CalendarView;
import com.applandeo.materialcalendarview.EventDay;
import com.applandeo.mater... | __label__POS | 0.940454 |
package com.applandeo.materialcalendarsampleapp;
import android.graphics.Color;
import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;
import com.applandeo.materialcalendarsampleapp.utils.DrawableUtils;
import com.applandeo.materialcalendarview.CalendarView;
import com.applandeo.materialcalendarv... | __label__POS | 0.880169 |
package com.applandeo.materialcalendarsampleapp;
import android.os.Bundle;
import android.widget.Button;
import android.widget.Toast;
import androidx.appcompat.app.AppCompatActivity;
import com.applandeo.materialcalendarview.CalendarView;
import java.util.Calendar;
/**
* Created by Mateusz Kornakiewicz on 26.05.2... | __label__POS | 0.964206 |
<?php
class m150518_112756_fixOperationNoteView extends CDbMigration
{
public function up()
{
$this->execute('CREATE OR REPLACE VIEW et_ophtroperationnote_biometry AS SELECT
eol.id, eol.event_id, eol.eye_id, eol.last_modified_date, target_refraction_left, target_refraction_right,
(SELECT ... | __label__POS | 0.937953 |
package com.applandeo.materialcalendarsampleapp;
import android.os.Bundle;
import android.widget.Button;
import android.widget.Toast;
import androidx.appcompat.app.AppCompatActivity;
import com.applandeo.materialcalendarsampleapp.utils.DrawableUtils;
import com.applandeo.materialcalendarview.CalendarDay;
import com.... | __label__POS | 0.967553 |
package com.applandeo.materialcalendarsampleapp.utils;
import android.content.Context;
import android.graphics.drawable.Drawable;
import android.graphics.drawable.GradientDrawable;
import android.graphics.drawable.InsetDrawable;
import android.graphics.drawable.LayerDrawable;
import androidx.annotation.ColorRes;
impo... | __label__POS | 0.819744 |
<?php
class m160121_151906_add_constants_iol_ref_surgeon_table extends CDbMigration
{
public function up()
{
$this->createTable('ophinbiometry_surgeon', array(
'id' => 'pk',
'name' => 'varchar(255) NOT NULL', ));
$this->addColumn('et_ophinbiometry_iol_ref_values', 'cons... | __label__POS | 0.85142 |
<?php
class m220526_134300_change_formula_id_to_allow_null_value extends OEMigration
{
public function up()
{
$this->dbConnection->createCommand("alter table et_ophinbiometry_selection modify column `formula_id_left` int(10) unsigned NULL, modify column `formula_id_right` int(10) unsigned NULL;")->quer... | __label__POS | 0.820714 |
<?php
class m151218_144423_update_et_operationnote_biometry_view extends CDbMigration
{
public function up()
{
$this->execute('CREATE OR REPLACE VIEW et_ophtroperationnote_biometry AS SELECT
eol.id, eol.eye_id, eol.last_modified_date, target_refraction_left, target_refraction_right,
(SELE... | __label__POS | 0.99161 |
<?php
class m150731_125728_move_lens_type extends CDbMigration
{
public function up()
{
//Drop key
$this->dropForeignKey('ophinbiometry_lenstype_lens_l_fk', 'et_ophinbiometry_lenstype');
$this->dropForeignKey('ophinbiometry_lenstype_lens_r_fk', 'et_ophinbiometry_lenstype');
//D... | __label__POS | 0.742226 |
<?php
class m191029_182003_add_lvc_lvc_mode_fields extends OEMigration
{
public function up()
{
$this->addColumn('et_ophinbiometry_measurement', 'lvc_left', 'varchar(30)');
$this->addColumn('et_ophinbiometry_measurement', 'lvc_mode_left', 'varchar(30)');
$this->addColumn('et_ophinbiomet... | __label__POS | 0.997473 |
//
// NMGUtils.h
// NMGeometryFramework
//
// Created by Won-Young Son on 2017. 1. 10..
// Copyright Β© 2017λ
NAVER. All rights reserved.
//
#import "NMGGeometry.h"
@class NMGPoint;
@class NMGLatLng;
@class NMGLineString;
/**
μ§μ€λ©νΈλ¦¬μ κ΄λ ¨λ μ νΈλ¦¬ν° κΈ°λ₯μ μ 곡νλ ν΄λμ€.
*/
NMG_EXPORT
@interface NMGUtils : NSObject
/**
`line... | __label__POS | 0.94521 |
<?php
class m191211_124602_set_biometry_target_refraction_default_to_null extends CDbMigration
{
public function up()
{
$this->alterColumn('et_ophinbiometry_calculation', 'target_refraction_left', 'DECIMAL(6,2) NULL DEFAULT NULL');
$this->alterColumn('et_ophinbiometry_calculation', 'target_refr... | __label__POS | 0.999179 |
//
// NMGLatLngBounds.h
// NMGeometryFramework
//
// Created by mrtajo on 2017. 2. 6..
// Copyright Β© 2017λ
NAVER. All rights reserved.
//
#import "NMGGeometry.h"
@class NMGLatLng;
/**
λ¨μμͺ½κ³Ό λΆλμͺ½ λ μκ²½λ μ’νλ‘ μ΄λ£¨μ΄μ§
<a href="https://terms.naver.com/entry.nhn?docId=3479529&cid=58439&categoryId=58439">μ΅μ κ²½κ³ μ¬κ°ν... | __label__POS | 0.692267 |
<?php
class m160224_112505_operationnote_biometry_view_fix extends CDbMigration
{
public function up()
{
$this->execute('CREATE OR REPLACE VIEW et_ophtroperationnote_biometry AS SELECT
eol.id, eol.eye_id, eol.last_modified_date, target_refraction_left, target_refraction_right,
(SELECT nam... | __label__POS | 0.89256 |
<?php
class m170313_104815_change_snr_column_default_in_et_ophinbiometry_measurement extends CDbMigration
{
public function up()
{
$this->alterColumn('et_ophinbiometry_measurement', 'snr_left', 'DECIMAL(6,1) NULL');
$this->alterColumn('et_ophinbiometry_measurement', 'snr_right', 'DECIMAL(6,1) N... | __label__POS | 0.998514 |
<?php
class m160202_132954_change_operationnote_biometry_view_new_a_constant extends CDbMigration
{
public function up()
{
$this->execute('CREATE OR REPLACE VIEW et_ophtroperationnote_biometry AS SELECT
eol.id, eol.eye_id, eol.last_modified_date, target_refraction_left, target_refraction_right,
... | __label__POS | 0.936755 |
<?php
class m220810_145300_update_biometry_view extends OEMigration
{
public function up()
{
$this->dbConnection->createCommand("
CREATE OR REPLACE VIEW et_ophtroperationnote_biometry AS
SELECT
`eol`.`id` AS `id`,
`eol`.`eye_id` AS `eye_id`,
`eol`.`la... | __label__POS | 0.992677 |
<?php
class m170316_093759_display_name_field extends CDbMigration
{
public function up()
{
$this->addColumn('ophinbiometry_lenstype_lens', 'display_name', 'varchar(255) NOT NULL');
$this->addColumn('ophinbiometry_lenstype_lens_version', 'display_name', 'varchar(255) NOT NULL');
$this-... | __label__POS | 0.715186 |
#import "NMFFoundation.h"
@class NMFIndoorRegion;
@class NMFIndoorZone;
@class NMFIndoorLevel;
/**
νλμ μ€λ΄μ§λ μμ λ΄μμ μ νλ ꡬμ λ° μΈ΅μ λνλ΄λ λΆλ³ ν΄λμ€.
*/
NMF_EXPORT
@interface NMFIndoorSelection : NSObject
/**
μ νλ ꡬμμ μμ.
*/
@property(nonatomic, readonly, nonnull) NMFIndoorRegion *region;
/**
μ νλ ꡬμμ μΈλ±μ€.
*/
@property(n... | __label__POS | 0.821388 |
#import <CoreLocation/CoreLocation.h>
#import "NMFFoundation.h"
@class NMGLatLng;
NS_ASSUME_NONNULL_BEGIN
/**
μΉ΄λ©λΌμ μμΉ κ΄λ ¨ μ 보λ₯Ό λνλ΄λ λΆλ³ ν΄λμ€. μΉ΄λ©λΌμ μμΉλ μ’ν, μ€ λ 벨, κΈ°μΈκΈ° κ°λ, ν€λ© κ°λλ‘ κ΅¬μ±λ©λλ€.
*/
NMF_EXPORT
@interface NMFCameraPosition : NSObject <NSSecureCoding, NSCopying>
/**
μΉ΄λ©λΌμ μ’ν.
*/
@property (nonatomic, strong, read... | __label__POS | 0.745819 |
<?php
class m151123_144314_add_update_snr extends OEMigration
{
public function up()
{
$this->alterColumn('et_ophinbiometry_measurement', 'snr_left', 'decimal(6,1) not null DEFAULT 0.0');
$this->alterColumn('et_ophinbiometry_measurement', 'snr_right', 'decimal(6,1) not null DEFAULT 0.0');
... | __label__POS | 0.942224 |
#import <UIKit/UIKit.h>
#import "NMFFoundation.h"
#import "NMFMyPositionMode.h"
@class NMFMapView;
@protocol NMFMapViewDelegate;
/**
μ§λμ 컨νΈλ‘€μ λ΄μ₯ν μ§λ λ·° ν΄λμ€.
*/
NMF_EXPORT
@interface NMFNaverMapView : UIView
/**
μ§λ λ·° κ°μ²΄.
@see `NMFMapView`
*/
@property(nonatomic, readonly, nonnull) NMFMapView *mapView;
/**
μ§... | __label__POS | 0.639562 |
#import <UIKit/UIKit.h>
#import "NMFTypes.h"
NS_ASSUME_NONNULL_BEGIN
@class NMFMapView;
@class NMFSymbol;
@class NMFIndoorRegion;
/**
`NMFMapView`μ κ΄λ ¨λ μ
λ°μ΄νΈ λ° λΉλκΈ° μμ
μ κ²°κ³Όλ₯Ό μλ €μ£Όλ μ½λ°± λ©μλκ° μ μλ νλ‘ν μ½. μ΄ νλ‘ν μ½μ λμ΄μ μ¬μ©μ΄ κΆμ₯λμ§ μμ΅λλ€. `NMFMapViewTouchDelegate`, `NMFMapViewCameraDelegate`, `NMFMapViewOptionDelegate`λ₯Ό μ¬μ©νμΈμ.
*/
... | __label__POS | 0.907387 |
#import <Foundation/Foundation.h>
#import <NMapsGeometry/NMapsGeometry.h>
#import "NMFOverlay.h"
@class NMGLatLng;
/**
κΈ°λ³Έ μ μ€λ²λ μ΄ μ μ Z μΈλ±μ€
*/
const static int NMF_CIRCLE_OVERLAY_GLOBAL_Z_INDEX = -200000;
NS_ASSUME_NONNULL_BEGIN
/**
μ§λμ μμ λνλ΄λ μ€λ²λ μ΄.
*/
NMF_EXPORT
@interface NMFCircleOverlay : NMFOverlay
/**
μ€... | __label__POS | 0.844859 |
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <NMapsGeometry/NMapsGeometry.h>
#import "NMFMapView.h"
NS_INLINE CGFloat ScreenScaleFactor() {
static dispatch_once_t onceToken;
static CGFloat screenFactor;
dispatch_once(&onceToken, ^{
screenFactor = [UIScreen instancesRespon... | __label__POS | 0.927132 |
#import "NMFFoundation.h"
@class NMFIndoorLevel;
NS_ASSUME_NONNULL_BEGIN
/**
νλμ μ€λ΄μ§λ ꡬμμ λνλ΄λ λΆλ³ ν΄λμ€. νλμ μ€λ΄μ§λ ꡬμμλ ν κ° μ΄μμ μΈ΅μ΄ μμ΅λλ€. μ΄ ν΄λμ€μ
μΈμ€ν΄μ€λ μ§μ μμ±ν μ μκ³ `NMFIndoorRegion`μ μ΄μ©ν΄μ κ°μ Έμ¬ μ μμ΅λλ€.
@see `NMFIndoorRegion`
*/
NMF_EXPORT
@interface NMFIndoorZone : NSObject
/**
ꡬμ ID.
*/
@property(nonatomic, reado... | __label__POS | 0.773423 |
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import "NMFGeometry.h"
#import "NMFOverlay.h"
NS_ASSUME_NONNULL_BEGIN
/**
κΈ°λ³Έ μ§μ μ€λ²λ μ΄ μ μ Z μΈλ±μ€
*/
const static int NMF_GROUND_OVERLAY_GLOBAL_Z_INDEX = -300000;
@class NMFOverlayImage;
@class NMGLatLngBounds;
/**
μ§λμμ νΉμ μμμ λνλ΄λ μ€λ²λ μ΄. μ§λμ μΆκ°νκΈ° μ μ λ°λμ `bo... | __label__POS | 0.759908 |
#import <UIKit/UIKit.h>
#import <CoreGraphics/CoreGraphics.h>
#import <NMapsGeometry/NMapsGeometry.h>
#import "NMFFoundation.h"
@class NMFCameraUpdateParams;
@class NMFCameraPosition;
@class NMFMapView;
NS_ASSUME_NONNULL_BEGIN
/**
κ°λ°μκ° APIλ₯Ό νΈμΆν΄ μΉ΄λ©λΌκ° μμ§μμμ λνλ΄λ κ°.
@see `NMFCameraUpdate.reason`
*/
const static NS... | __label__POS | 0.729577 |
#import <UIKit/UIKit.h>
#import "NMFFoundation.h"
@class NMFOverlay;
NS_ASSUME_NONNULL_BEGIN
/**
μ€λ²λ μ΄μμ μ¬μ©νλ λΉνΈλ§΅ μ΄λ―Έμ§λ₯Ό λνλ΄λ λΆλ³ ν΄λμ€. ν©ν 리 λ©μλλ₯Ό μ΄μ©ν΄
asset, `UIImage`, `NSBundle` λ±μΌλ‘λΆν° μΈμ€ν΄μ€λ₯Ό μμ±ν μ μμ΅λλ€.
*/
NMF_EXPORT
@interface NMFOverlayImage : NSObject
/**
μ¬μ¬μ© μλ³μ.
*/
@property(nonatomic, readonly, copy) NSString ... | __label__POS | 0.92943 |
#import <Foundation/Foundation.h>
@class NMFCameraPosition;
@class NMFMapView;
@class NMGLatLng;
NS_ASSUME_NONNULL_BEGIN
/**
μΉ΄λ©λΌλ₯Ό μ΄λν μ§μ μ κ΄ν λ€μν μ 보λ₯Ό λνλ΄λ ν΄λμ€. μ£Όλ‘ `NMFCameraUpdate`λ₯Ό λ§λ€κΈ° μν νλΌλ―Έν°λ‘ μ¬μ©λ©λλ€.
`target`, `zoom`, `tilt`, `heading` λ± μΉ΄λ©λΌ μμΉμ λν λ€ κ°μ§ μμ±μ λνλ΄λ κ²μ `NMFCameraPosition`κ³Ό μ μ¬νμ§λ§,
`NMFCameraPosition... | __label__POS | 0.626984 |
#import "NMFFoundation.h"
// Project version number for NaverMap Framework.
FOUNDATION_EXPORT NMF_EXPORT double NaverMapFrameworkVersionNumber;
// Project version string for NaverMap Framework.
FOUNDATION_EXPORT NMF_EXPORT const unsigned char NaverMapFrameworVersionString[];
#import "NMFUtils.h"
#import "NMFAuthMan... | __label__POS | 0.935112 |
#import "NMFFoundation.h"
@class NMGWebMercatorCoord;
@class NMGLatLng;
@class NMGLatLngBounds;
/**
νμΌ IDλ₯Ό λ€λ£¨λ ν΄λμ€. νμΌ IDλ μ μ λ¨μμ μ€ λ 벨μ μλ―Ένλ `z` μ±λΆ, `x`μΆ μΈλ±μ€λ₯Ό
μλ―Ένλ `x` μ±λΆ, `y`μΆ μΈλ±μ€λ₯Ό μλ―Ένλ `y` μ±λΆμΌλ‘ ꡬμ±λλ©°, κ° μ±λΆμ μ‘°ν©ν
`long` νμ
μΌλ‘ ννλ©λλ€. μ΄ ν΄λμ€μ λ©μλλ₯Ό μ¬μ©ν΄ `long` νμ
μ νμΌ IDλ‘λΆν° κ° μ±λΆμ
μΆμΆνκ±°λ κ° μ±λΆμΌλ‘λΆν° νμΌ IDλ₯Ό μ‘°ν©ν μ μμ΅λλ€.
*/
NMF... | __label__POS | 0.990493 |
#import <UIKit/UIKit.h>
#import "NMFOverlay.h"
NS_ASSUME_NONNULL_BEGIN
/**
κΈ°λ³Έ νμ΄ν κ²½λ‘ μ€λ²λ μ΄ μ μ Z μΈλ±μ€
*/
const static int NMF_ARROWHEAD_PATH_OVERLAY_GLOBAL_Z_INDEX = 100000;
@class NMGLatLng;
/**
νμ΄ν ννλ‘ λ°©ν₯ λλ νμ μ§μ μ λνλ΄λ μ€λ²λ μ΄. κ²½λ‘μ μ€λ²λ μ΄μ λ§μ°¬κ°μ§λ‘ μ’νμ΄μ λνλ΄μ§λ§ μ§μ²λ₯ μ
μ§μ ν μ μκ³ , λ μ§μ μ μΌκ°ν λͺ¨μμ λ¨Έλ¦¬κ° μΆκ°λ©λλ€.
*/
NMF_EXPORT
@int... | __label__POS | 0.63723 |
#import "NMFFoundation.h"
@class NMFMapView;
NS_ASSUME_NONNULL_BEGIN
/**
νμΌ λͺ©λ‘μ λ³κ²½μ΄ μΌμ΄λ¨μ λν μ΄λ²€νΈλ₯Ό λ°μ λΈλ¦¬κ²μ΄νΈ.
*/
@protocol NMFTileCoverHelperDelegate <NSObject>
/**
νμΌ λͺ©λ‘μ λ³κ²½μ΄ μΌμ΄λλ©΄ νΈμΆλλ μ½λ°± λ©μλ.
@param addedTileIds νλ©΄μ μΆκ°λ νμΌ IDμ λͺ©λ‘.
@param removedTileIds νλ©΄μμ μ κ±°λ νμΌ IDμ λͺ©λ‘.
*/
- (void)onTileChanged:(NSArray<N... | __label__POS | 0.638158 |
#import <UIKit/UIKit.h>
/**
μμΉ μΆμ λͺ¨λλ₯Ό λνλ΄λ μ΄κ±°ν.
*/
typedef NS_ENUM(NSUInteger, NMFMyPositionMode) {
/**
μμΉ μΆμ μ μ¬μ©νμ§ μλ λͺ¨λ. `NMFLocationOverlay`λ μμ§μ΄μ§ μμ΅λλ€.
*/
NMFMyPositionDisabled = 0,
/**
μμΉλ μΆμ νμ§λ§ μ§λλ μμ§μ΄μ§ μλ λͺ¨λ. `NMFLocationOverlay`κ° μ¬μ©μμ μμΉλ₯Ό λ°λΌ μμ§μ΄λ μ§λλ
μμ§μ΄μ§ μμ΅λλ€.
*/
... | __label__POS | 0.678838 |
#import "NMFIndoorView.h"
NS_ASSUME_NONNULL_BEGIN
/**
νλμ μ€λ΄μ§λ μΈ΅μ λνλ΄λ λΆλ³ ν΄λμ€. νλμ μ€λ΄μ§λ μΈ΅μ λ€λ₯Έ μΈ΅κ³Ό μ°κ²°λ μ μμ΅λλ€. μ΄ ν΄λμ€μ μΈμ€ν΄μ€λ
μ§μ μμ±ν μ μκ³ `NMFIndoorZone`μ μ΄μ©ν΄μ κ°μ Έμ¬ μ μμ΅λλ€.
@see `NMFIndoorZone`
*/
NMF_EXPORT
@interface NMFIndoorLevel : NSObject
/**
μΈ΅μ ν΄λΉνλ μ€λ΄μ§λ λ·°.
*/
@property(nonatomic, readonly) NMFIndoorView *... | __label__POS | 0.72979 |
<div class="data-group">
<table class="cols-11 large-text borders">
<colgroup>
<col class="cols-3">
<col class="cols-2">
<col class="cols-1">
</colgroup>
<tbody>
<tr>
<td>
AL:
</td>
<td>
... | __label__POS | 0.984526 |
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class NMFMapView;
@class NMFSymbol;
/**
μΉ΄λ©λΌμ μμ§μμ λν μ½λ°± νλ‘ν μ½.
*/
@protocol NMFMapViewCameraDelegate <NSObject>
@optional
/**
μΉ΄λ©λΌμ μμ§μμ΄ μμλ λ νΈμΆλλ μ½λ°± λ©μλ. ν΄λΉ μμ μ μΉ΄λ©λΌ μμΉλ μ½λ°± λ΄μμ `NMFMapView.cameraPosition`μΌλ‘ μ»μ μ μμ΅λλ€.
@param mapView `NMFMapView` κ°μ²΄.
@param reaso... | __label__POS | 0.904167 |
#import <CoreLocation/CoreLocation.h>
#import <UIKit/UIKit.h>
#import "NMFFoundation.h"
@class NMFMapView;
@class NMGLatLng;
@class NMGLatLngBounds;
NS_ASSUME_NONNULL_BEGIN
/**
μ§λ¦¬μ μ’νμ νλ©΄ μ’ν κ°μ λ³νμ λ΄λΉνλ ν΄λμ€. μ΄ ν΄λμ€μ μΈμ€ν΄μ€λ μ§μ μμ±ν μ μκ³
`NMFMapView.projection`μ μ΄μ©ν΄μ κ°μ Έμ¬ μ μμ΅λλ€.
*/
NMF_EXPORT
@interface NMFProjection... | __label__POS | 0.983051 |
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import "NMFGeometry.h"
#import "NMFOverlay.h"
NS_ASSUME_NONNULL_BEGIN
/**
κΈ°λ³Έ ν΄λ¦¬κ³€ μ€λ²λ μ΄ μ μ Z μΈλ±μ€
*/
const static int NMF_POLYGON_OVERLAY_GLOBAL_Z_INDEX = -200000;
@class NMGPolygon;
/**
μ§λμ λνμ λνλ΄λ μ€λ²λ μ΄.
*/
NMF_EXPORT
@interface NMFPolygonOverlay : NMFO... | __label__POS | 0.653391 |
#import "NMFFoundation.h"
NS_ASSUME_NONNULL_BEGIN
@class NMFIndoorZone;
/**
μ€λ΄μ§λκ° μ‘΄μ¬νλ μμμ λνλ΄λ λΆλ³ ν΄λμ€. νλμ μ€λ΄μ§λ μμμ μλ‘ κ²Ήμ³μ§ ν κ° μ΄μμ ꡬμμΌλ‘ μ΄λ£¨μ΄μ§λλ€.
μ΄ ν΄λμ€μ μΈμ€ν΄μ€λ μ§μ μμ±ν μ μμ΅λλ€.
*/
NMF_EXPORT
@interface NMFIndoorRegion : NSObject
/**
μμμ μν΄ μλ ꡬμ λͺ©λ‘
*/
@property(nonatomic, readonly) NSArray<NMFIndoorZone *> *zones;... | __label__POS | 0.803616 |
#import "NMFFoundation.h"
@class NMFIndoorRegion;
@class NMFIndoorZone;
@class NMFIndoorLevel;
/**
νλμ μ€λ΄μ§λ μμ λ΄μμ μ νλ ꡬμ λ° μΈ΅μ λνλ΄λ λΆλ³ ν΄λμ€.
*/
NMF_EXPORT
@interface NMFIndoorSelection : NSObject
/**
μ νλ ꡬμμ μμ.
*/
@property(nonatomic, readonly, nonnull) NMFIndoorRegion *region;
/**
μ νλ ꡬμμ μΈλ±μ€.
*/
@property(n... | __label__POS | 0.821388 |
#import <CoreLocation/CoreLocation.h>
#import "NMFFoundation.h"
@class NMGLatLng;
NS_ASSUME_NONNULL_BEGIN
/**
μΉ΄λ©λΌμ μμΉ κ΄λ ¨ μ 보λ₯Ό λνλ΄λ λΆλ³ ν΄λμ€. μΉ΄λ©λΌμ μμΉλ μ’ν, μ€ λ 벨, κΈ°μΈκΈ° κ°λ, ν€λ© κ°λλ‘ κ΅¬μ±λ©λλ€.
*/
NMF_EXPORT
@interface NMFCameraPosition : NSObject <NSSecureCoding, NSCopying>
/**
μΉ΄λ©λΌμ μ’ν.
*/
@property (nonatomic, strong, read... | __label__POS | 0.745819 |
#import <UIKit/UIKit.h>
#import "NMFFoundation.h"
#import "NMFMyPositionMode.h"
@class NMFMapView;
@protocol NMFMapViewDelegate;
/**
μ§λμ 컨νΈλ‘€μ λ΄μ₯ν μ§λ λ·° ν΄λμ€.
*/
NMF_EXPORT
@interface NMFNaverMapView : UIView
/**
μ§λ λ·° κ°μ²΄.
@see `NMFMapView`
*/
@property(nonatomic, readonly, nonnull) NMFMapView *mapView;
/**
μ§... | __label__POS | 0.639562 |
#import <UIKit/UIKit.h>
#import "NMFTypes.h"
NS_ASSUME_NONNULL_BEGIN
@class NMFMapView;
@class NMFSymbol;
@class NMFIndoorRegion;
/**
`NMFMapView`μ κ΄λ ¨λ μ
λ°μ΄νΈ λ° λΉλκΈ° μμ
μ κ²°κ³Όλ₯Ό μλ €μ£Όλ μ½λ°± λ©μλκ° μ μλ νλ‘ν μ½. μ΄ νλ‘ν μ½μ λμ΄μ μ¬μ©μ΄ κΆμ₯λμ§ μμ΅λλ€. `NMFMapViewTouchDelegate`, `NMFMapViewCameraDelegate`, `NMFMapViewOptionDelegate`λ₯Ό μ¬μ©νμΈμ.
*/
... | __label__POS | 0.907387 |
<?php
if (! function_exists('markdown')) {
/**
* Compile Markdown to HTML.
*
* @param string|null $text
* @return string
*/
function markdown($text = null) {
return app(ParsedownExtra::class)->text($text);
}
}
if (! function_exists('gravatar_profile_url')) {
/**
*... | __label__POS | 0.990308 |
<?php
namespace App;
use File;
class Documentation
{
/**
* Read content of given markdown file.
*
* @param string $file
* @return string
*/
public function get($file = 'documentation.md')
{
$content = File::get($this->path($file));
return $this->replaceLinks($con... | __label__POS | 0.997938 |
#import <Foundation/Foundation.h>
#import <NMapsGeometry/NMapsGeometry.h>
#import "NMFOverlay.h"
@class NMGLatLng;
/**
κΈ°λ³Έ μ μ€λ²λ μ΄ μ μ Z μΈλ±μ€
*/
const static int NMF_CIRCLE_OVERLAY_GLOBAL_Z_INDEX = -200000;
NS_ASSUME_NONNULL_BEGIN
/**
μ§λμ μμ λνλ΄λ μ€λ²λ μ΄.
*/
NMF_EXPORT
@interface NMFCircleOverlay : NMFOverlay
/**
μ€... | __label__POS | 0.844859 |
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <NMapsGeometry/NMapsGeometry.h>
#import "NMFMapView.h"
NS_INLINE CGFloat ScreenScaleFactor() {
static dispatch_once_t onceToken;
static CGFloat screenFactor;
dispatch_once(&onceToken, ^{
screenFactor = [UIScreen instancesRespon... | __label__POS | 0.927132 |
#import "NMFFoundation.h"
@class NMFIndoorLevel;
NS_ASSUME_NONNULL_BEGIN
/**
νλμ μ€λ΄μ§λ ꡬμμ λνλ΄λ λΆλ³ ν΄λμ€. νλμ μ€λ΄μ§λ ꡬμμλ ν κ° μ΄μμ μΈ΅μ΄ μμ΅λλ€. μ΄ ν΄λμ€μ
μΈμ€ν΄μ€λ μ§μ μμ±ν μ μκ³ `NMFIndoorRegion`μ μ΄μ©ν΄μ κ°μ Έμ¬ μ μμ΅λλ€.
@see `NMFIndoorRegion`
*/
NMF_EXPORT
@interface NMFIndoorZone : NSObject
/**
ꡬμ ID.
*/
@property(nonatomic, reado... | __label__POS | 0.773423 |
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import "NMFGeometry.h"
#import "NMFOverlay.h"
NS_ASSUME_NONNULL_BEGIN
/**
κΈ°λ³Έ μ§μ μ€λ²λ μ΄ μ μ Z μΈλ±μ€
*/
const static int NMF_GROUND_OVERLAY_GLOBAL_Z_INDEX = -300000;
@class NMFOverlayImage;
@class NMGLatLngBounds;
/**
μ§λμμ νΉμ μμμ λνλ΄λ μ€λ²λ μ΄. μ§λμ μΆκ°νκΈ° μ μ λ°λμ `bo... | __label__POS | 0.759908 |
#import <UIKit/UIKit.h>
#import <CoreGraphics/CoreGraphics.h>
#import <NMapsGeometry/NMapsGeometry.h>
#import "NMFFoundation.h"
@class NMFCameraUpdateParams;
@class NMFCameraPosition;
@class NMFMapView;
NS_ASSUME_NONNULL_BEGIN
/**
κ°λ°μκ° APIλ₯Ό νΈμΆν΄ μΉ΄λ©λΌκ° μμ§μμμ λνλ΄λ κ°.
@see `NMFCameraUpdate.reason`
*/
const static NS... | __label__POS | 0.729577 |
<?php
class OphInVisualfields_Field_Measurement extends Measurement
{
/**
* @return string the associated database table name
*/
public function tableName()
{
return 'ophinvisualfields_field_measurement';
}
public function relations()
{
return array(
'eye'... | __label__POS | 0.648462 |
#import <UIKit/UIKit.h>
#import "NMFFoundation.h"
@class NMFOverlay;
NS_ASSUME_NONNULL_BEGIN
/**
μ€λ²λ μ΄μμ μ¬μ©νλ λΉνΈλ§΅ μ΄λ―Έμ§λ₯Ό λνλ΄λ λΆλ³ ν΄λμ€. ν©ν 리 λ©μλλ₯Ό μ΄μ©ν΄
asset, `UIImage`, `NSBundle` λ±μΌλ‘λΆν° μΈμ€ν΄μ€λ₯Ό μμ±ν μ μμ΅λλ€.
*/
NMF_EXPORT
@interface NMFOverlayImage : NSObject
/**
μ¬μ¬μ© μλ³μ.
*/
@property(nonatomic, readonly, copy) NSString ... | __label__POS | 0.92943 |
#import <Foundation/Foundation.h>
@class NMFCameraPosition;
@class NMFMapView;
@class NMGLatLng;
NS_ASSUME_NONNULL_BEGIN
/**
μΉ΄λ©λΌλ₯Ό μ΄λν μ§μ μ κ΄ν λ€μν μ 보λ₯Ό λνλ΄λ ν΄λμ€. μ£Όλ‘ `NMFCameraUpdate`λ₯Ό λ§λ€κΈ° μν νλΌλ―Έν°λ‘ μ¬μ©λ©λλ€.
`target`, `zoom`, `tilt`, `heading` λ± μΉ΄λ©λΌ μμΉμ λν λ€ κ°μ§ μμ±μ λνλ΄λ κ²μ `NMFCameraPosition`κ³Ό μ μ¬νμ§λ§,
`NMFCameraPosition... | __label__POS | 0.626984 |
#import "NMFFoundation.h"
// Project version number for NaverMap Framework.
FOUNDATION_EXPORT NMF_EXPORT double NaverMapFrameworkVersionNumber;
// Project version string for NaverMap Framework.
FOUNDATION_EXPORT NMF_EXPORT const unsigned char NaverMapFrameworVersionString[];
#import "NMFUtils.h"
#import "NMFAuthMan... | __label__POS | 0.935112 |
#import "NMFFoundation.h"
@class NMGWebMercatorCoord;
@class NMGLatLng;
@class NMGLatLngBounds;
/**
νμΌ IDλ₯Ό λ€λ£¨λ ν΄λμ€. νμΌ IDλ μ μ λ¨μμ μ€ λ 벨μ μλ―Ένλ `z` μ±λΆ, `x`μΆ μΈλ±μ€λ₯Ό
μλ―Ένλ `x` μ±λΆ, `y`μΆ μΈλ±μ€λ₯Ό μλ―Ένλ `y` μ±λΆμΌλ‘ ꡬμ±λλ©°, κ° μ±λΆμ μ‘°ν©ν
`long` νμ
μΌλ‘ ννλ©λλ€. μ΄ ν΄λμ€μ λ©μλλ₯Ό μ¬μ©ν΄ `long` νμ
μ νμΌ IDλ‘λΆν° κ° μ±λΆμ
μΆμΆνκ±°λ κ° μ±λΆμΌλ‘λΆν° νμΌ IDλ₯Ό μ‘°ν©ν μ μμ΅λλ€.
*/
NMF... | __label__POS | 0.990493 |
#import <UIKit/UIKit.h>
#import "NMFOverlay.h"
NS_ASSUME_NONNULL_BEGIN
/**
κΈ°λ³Έ νμ΄ν κ²½λ‘ μ€λ²λ μ΄ μ μ Z μΈλ±μ€
*/
const static int NMF_ARROWHEAD_PATH_OVERLAY_GLOBAL_Z_INDEX = 100000;
@class NMGLatLng;
/**
νμ΄ν ννλ‘ λ°©ν₯ λλ νμ μ§μ μ λνλ΄λ μ€λ²λ μ΄. κ²½λ‘μ μ€λ²λ μ΄μ λ§μ°¬κ°μ§λ‘ μ’νμ΄μ λνλ΄μ§λ§ μ§μ²λ₯ μ
μ§μ ν μ μκ³ , λ μ§μ μ μΌκ°ν λͺ¨μμ λ¨Έλ¦¬κ° μΆκ°λ©λλ€.
*/
NMF_EXPORT
@int... | __label__POS | 0.63723 |
#import "NMFFoundation.h"
@class NMFMapView;
NS_ASSUME_NONNULL_BEGIN
/**
νμΌ λͺ©λ‘μ λ³κ²½μ΄ μΌμ΄λ¨μ λν μ΄λ²€νΈλ₯Ό λ°μ λΈλ¦¬κ²μ΄νΈ.
*/
@protocol NMFTileCoverHelperDelegate <NSObject>
/**
νμΌ λͺ©λ‘μ λ³κ²½μ΄ μΌμ΄λλ©΄ νΈμΆλλ μ½λ°± λ©μλ.
@param addedTileIds νλ©΄μ μΆκ°λ νμΌ IDμ λͺ©λ‘.
@param removedTileIds νλ©΄μμ μ κ±°λ νμΌ IDμ λͺ©λ‘.
*/
- (void)onTileChanged:(NSArray<N... | __label__POS | 0.638158 |
#import <UIKit/UIKit.h>
/**
μμΉ μΆμ λͺ¨λλ₯Ό λνλ΄λ μ΄κ±°ν.
*/
typedef NS_ENUM(NSUInteger, NMFMyPositionMode) {
/**
μμΉ μΆμ μ μ¬μ©νμ§ μλ λͺ¨λ. `NMFLocationOverlay`λ μμ§μ΄μ§ μμ΅λλ€.
*/
NMFMyPositionDisabled = 0,
/**
μμΉλ μΆμ νμ§λ§ μ§λλ μμ§μ΄μ§ μλ λͺ¨λ. `NMFLocationOverlay`κ° μ¬μ©μμ μμΉλ₯Ό λ°λΌ μμ§μ΄λ μ§λλ
μμ§μ΄μ§ μμ΅λλ€.
*/
... | __label__POS | 0.678838 |
#import "NMFIndoorView.h"
NS_ASSUME_NONNULL_BEGIN
/**
νλμ μ€λ΄μ§λ μΈ΅μ λνλ΄λ λΆλ³ ν΄λμ€. νλμ μ€λ΄μ§λ μΈ΅μ λ€λ₯Έ μΈ΅κ³Ό μ°κ²°λ μ μμ΅λλ€. μ΄ ν΄λμ€μ μΈμ€ν΄μ€λ
μ§μ μμ±ν μ μκ³ `NMFIndoorZone`μ μ΄μ©ν΄μ κ°μ Έμ¬ μ μμ΅λλ€.
@see `NMFIndoorZone`
*/
NMF_EXPORT
@interface NMFIndoorLevel : NSObject
/**
μΈ΅μ ν΄λΉνλ μ€λ΄μ§λ λ·°.
*/
@property(nonatomic, readonly) NMFIndoorView *... | __label__POS | 0.72979 |
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateCommentsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('comments', fun... | __label__POS | 0.65757 |
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateArticleTagTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('article_tag'... | __label__POS | 0.625198 |
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateVotesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('votes', function ... | __label__POS | 0.646679 |
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class NMFMapView;
@class NMFSymbol;
/**
μΉ΄λ©λΌμ μμ§μμ λν μ½λ°± νλ‘ν μ½.
*/
@protocol NMFMapViewCameraDelegate <NSObject>
@optional
/**
μΉ΄λ©λΌμ μμ§μμ΄ μμλ λ νΈμΆλλ μ½λ°± λ©μλ. ν΄λΉ μμ μ μΉ΄λ©λΌ μμΉλ μ½λ°± λ΄μμ `NMFMapView.cameraPosition`μΌλ‘ μ»μ μ μμ΅λλ€.
@param mapView `NMFMapView` κ°μ²΄.
@param reaso... | __label__POS | 0.904167 |
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
if (is_api_domain() and request()->getLanguages()) {
$pr... | __label__POS | 0.690189 |
<?php
namespace App\Transformers;
use App\Article;
use Appkr\Api\TransformerAbstract;
use League\Fractal\ParamBag;
class ArticleTransformer extends TransformerAbstract
{
/**
* List of resources possible to include using url query string.
* e.g. collection case -> ?include=comments:limit(5|1):order(crea... | __label__POS | 0.788085 |
<?php
namespace App\Transformers;
use App\Tag;
use Appkr\Api\TransformerAbstract;
use League\Fractal\ParamBag;
class TagTransformer extends TransformerAbstract
{
/**
* List of resources possible to include using url query string.
* e.g. collection case -> ?include=comments:limit(5|1):order(created_at|d... | __label__POS | 0.836428 |
<?php
class m140610_143247_assessment_result_values extends CDbMigration
{
public function up()
{
$this->insert('ophinvisualfields_result_assessment', array('id' => 1, 'active' => 1, 'name' => 'Nasal step'));
$this->insert('ophinvisualfields_result_assessment', array('id' => 2, 'active' => 1, '... | __label__POS | 0.745054 |
#import <CoreLocation/CoreLocation.h>
#import <UIKit/UIKit.h>
#import "NMFFoundation.h"
@class NMFMapView;
@class NMGLatLng;
@class NMGLatLngBounds;
NS_ASSUME_NONNULL_BEGIN
/**
μ§λ¦¬μ μ’νμ νλ©΄ μ’ν κ°μ λ³νμ λ΄λΉνλ ν΄λμ€. μ΄ ν΄λμ€μ μΈμ€ν΄μ€λ μ§μ μμ±ν μ μκ³
`NMFMapView.projection`μ μ΄μ©ν΄μ κ°μ Έμ¬ μ μμ΅λλ€.
*/
NMF_EXPORT
@interface NMFProjection... | __label__POS | 0.983051 |
<?php
namespace App\Transformers;
use App\Attachment;
use Appkr\Api\TransformerAbstract;
class AttachmentTransformer extends TransformerAbstract
{
/**
* Transform single resource.
*
* @param \App\Attachment $attachment
* @return array
*/
public function transform(Attachment $attach... | __label__POS | 0.692859 |
<?php
namespace App\Transformers;
use App\User;
use Appkr\Api\TransformerAbstract;
use League\Fractal\ParamBag;
class UserTransformer extends TransformerAbstract
{
/**
* List of resources possible to include using url query string.
* e.g. collection case -> ?include=comments:limit(5|1):order(created_at... | __label__POS | 0.899404 |
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import "NMFGeometry.h"
#import "NMFOverlay.h"
NS_ASSUME_NONNULL_BEGIN
/**
κΈ°λ³Έ ν΄λ¦¬κ³€ μ€λ²λ μ΄ μ μ Z μΈλ±μ€
*/
const static int NMF_POLYGON_OVERLAY_GLOBAL_Z_INDEX = -200000;
@class NMGPolygon;
/**
μ§λμ λνμ λνλ΄λ μ€λ²λ μ΄.
*/
NMF_EXPORT
@interface NMFPolygonOverlay : NMFO... | __label__POS | 0.653391 |
<?php
namespace App\Listeners;
use App\Events\CommentsEvent;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
class CommentsEventListener
{
/**
* Handle the event.
*
* @param CommentsEvent $event
* @return void
*/
public function handle(CommentsE... | __label__POS | 0.961107 |
<?php
class DefaultController extends BaseEventTypeController
{
protected function setComplexAttributes_Element_OphInVisualfields_Condition($element, $data, $index)
{
$abilities = array();
if (!empty($data['MultiSelect_ability'])) {
foreach ($data['MultiSelect_ability'] as $abilit... | __label__POS | 0.937687 |
#import "NMFFoundation.h"
NS_ASSUME_NONNULL_BEGIN
@class NMFIndoorZone;
/**
μ€λ΄μ§λκ° μ‘΄μ¬νλ μμμ λνλ΄λ λΆλ³ ν΄λμ€. νλμ μ€λ΄μ§λ μμμ μλ‘ κ²Ήμ³μ§ ν κ° μ΄μμ ꡬμμΌλ‘ μ΄λ£¨μ΄μ§λλ€.
μ΄ ν΄λμ€μ μΈμ€ν΄μ€λ μ§μ μμ±ν μ μμ΅λλ€.
*/
NMF_EXPORT
@interface NMFIndoorRegion : NSObject
/**
μμμ μν΄ μλ ꡬμ λͺ©λ‘
*/
@property(nonatomic, readonly) NSArray<NMFIndoorZone *> *zones;... | __label__POS | 0.803616 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.