content
stringlengths
263
5.24M
pred_label
stringclasses
1 value
pred_score_pos
float64
0.6
1
// // OnboardingView.swift // MyMemory // // Created by 김소혜 on 1/16/24. // import SwiftUI struct OnboardingView : View { @State var currentIndex: Int = 0 @StateObject var viewModel: OnboardingViewModel = .init() @Binding var isFirstLaunching: Bool var body: some View { TabView...
__label__POS
0.70111
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_sort_params.c :+: :+: :+: ...
__label__POS
0.638694
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* rshmtx.c :+: :+: :+: ...
__label__POS
0.86704
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_atoi_base.c :+: :+: :+: ...
__label__POS
0.994236
<?php /* * This file is part of SwiftMailer. * (c) 2009 Fabien Potencier <fabien.potencier@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Base class for Spools (implements time and message limits). * * @packag...
__label__POS
0.708868
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Changes some global preference settings in Swift Mailer. * * @package Swift * @author Chris Corby...
__label__POS
0.604985
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Provides a mechanism for storing data using two keys. * * @package Swift * @subpackage KeyCache...
__label__POS
0.778298
<?php /* * This file is part of SwiftMailer. * (c) 2009 Fabien Potencier <fabien.potencier@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Stores Messages on the filesystem. * * @package Swift * @author Fabie...
__label__POS
0.653263
// // Memo.swift // MyMemory // // Created by 김소혜 on 1/23/24. // import Foundation import FirebaseFirestore import Firebase import CoreLocation struct Memo: Hashable, Codable, Identifiable, Equatable { @DocumentID var id: String? // 메모 id: 도큐먼트 이름을 memo의 아이디로 설정 // var userId: String // 작성한 유저Id = UUI...
__label__POS
0.650346
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * An abstract means of reading and writing data in terms of characters as opposed * to bytes. * * Cl...
__label__POS
0.760948
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Analyzes characters for a specific character set. * * @package Swift * @subpackage Encoder * @...
__label__POS
0.851053
<?php /* * This file is part of SwiftMailer. * (c) 2011 Fabien Potencier <fabien.potencier@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Stores Messages in memory. * * @package Swift * @author Fabien Potenc...
__label__POS
0.793435
// // QuadTree.swift // MyMemory // // Created by 김태훈 on 1/21/24. // import Foundation import CoreLocation // Quad Tree의 노드를 나타내는 클래스 final class QuadTreeNode{ var coordinate: CLLocationCoordinate2D // 노드의 좌표 var value: Memo // 노드의 값 var topLeft: QuadTreeNode? // 좌상단 자식 노드 var topRight: QuadTreeNod...
__label__POS
0.870616
import { graphvizRender } from "./render/graphvizRender"; import { highlightRender } from "./render/highlightRender"; import { mathRender } from "./render/mathRender"; import { mermaidRender } from "./render/mermaidRender"; import { flowchartRender } from "./render/flowchartRender"; import { chartRender } from "./rende...
__label__POS
0.995389
<?php /* * This file is part of SwiftMailer. * (c) 2009 Fabien Potencier <fabien.potencier@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Interface for spools. * * @package Swift * @author Fabien Potencier ...
__label__POS
0.752061
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Provides quick access to each encoding type. * * @package Swift * @subpackage Encoder * @autho...
__label__POS
0.603591
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Interface for the EventDispatcher which handles the event dispatching layer. * * @package Swift ...
__label__POS
0.96239
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * The EventDispatcher which handles the event dispatching layer. * * @package Swift * @subpackage...
__label__POS
0.676335
<?php /* * This file is part of SwiftMailer. * (c) 2009 Fabien Potencier <fabien.potencier@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Stores Messages in a queue. * * @package Swift * @author Fabien Poten...
__label__POS
0.697817
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Contains a list of redundant Transports so when one fails, the next is used. * * @package Swift ...
__label__POS
0.643562
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * An ESMTP handler. * * @package Swift * @subpackage Transport * @author Chris Corbyn */ in...
__label__POS
0.744596
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * A basic KeyCache backed by an array. * * @package Swift * @subpackage KeyCache * @author C...
__label__POS
0.613233
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * A null KeyCache that does not cache at all. * * @package Swift * @subpackage KeyCache * @autho...
__label__POS
0.767433
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * A collection of MIME headers. * * @package Swift * @subpackage Mime * @author Chris Corbyn...
__label__POS
0.656744
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Creates MIME headers. * * @package Swift * @subpackage Mime * @author Chris Corbyn */ int...
__label__POS
0.829723
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * A Message (RFC 2822) object. * * @package Swift * @subpackage Mime * @author Chris Corbyn ...
__label__POS
0.756449
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * A CharacterStream implementation which stores characters in an internal array. * * @package Swif...
__label__POS
0.784367
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * A CharacterStream implementation which stores characters in an internal array. * * @package Swif...
__label__POS
0.716583
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Reduces network flooding when sending large amounts of mail. * * @package Swift * @subpackage P...
__label__POS
0.723137
<?php /* * This file is part of SwiftMailer. * (c) 2009 Fabien Potencier * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Redirects all email to a single recipient. * * @package Swift * @subpackage Plugins * @author ...
__label__POS
0.799135
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * MIME Message Signer used to apply S/MIME Signature/Encryption to a message. * * @package Swift ...
__label__POS
0.657794
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Header Signer Interface used to apply Header-Based Signature to a message * * @package Swift * ...
__label__POS
0.957511
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Provides fixed-width byte sizes for reading fixed-width character sets. * * @package Swift * @s...
__label__POS
0.701698
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Analyzes UTF-8 characters. * * @package Swift * @subpackage Encoder * @author Chris Corbyn...
__label__POS
0.651292
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Analyzes US-ASCII characters. * * @package Swift * @subpackage Encoder * @author Chris Cor...
__label__POS
0.966382
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * An ESMTP handler for AUTH support. * * @package Swift * @subpackage Transport * @author Ch...
__label__POS
0.733517
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Proxy for quoted-printable content encoders. * * Switches on the best QP encoder implementation for...
__label__POS
0.651233
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Handles binary/7/8-bit Transfer Encoding in Swift Mailer. * * @package Swift * @subpackage Mime...
__label__POS
0.65748
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Handles raw Transfer Encoding in Swift Mailer. * * @package Swift * @subpackage Mime * * @aut...
__label__POS
0.83435
<?php /** * Zend Framework * * LICENSE * * This source file is subject to the new BSD license that is bundled * with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://framework.zend.com/license/new-bsd * If you did not receive a copy of the license a...
__label__POS
0.924416
<?php /** * Zend Framework * * LICENSE * * This source file is subject to the new BSD license that is bundled * with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://framework.zend.com/license/new-bsd * If you did not receive a copy of the license an...
__label__POS
0.946067
<?php /** * Zend Framework * * LICENSE * * This source file is subject to the new BSD license that is bundled * with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://framework.zend.com/license/new-bsd * If you did not receive a copy of the license an...
__label__POS
0.744264
<?php /** * Zend Framework * * LICENSE * * This source file is subject to the new BSD license that is bundled * with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://framework.zend.com/license/new-bsd * If you did not receive a copy of the license an...
__label__POS
0.979251
<?php /** * Zend Framework * * LICENSE * * This source file is subject to the new BSD license that is bundled * with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://framework.zend.com/license/new-bsd * If you did not receive a copy of the license an...
__label__POS
0.782642
<?php /** * Zend Framework * * LICENSE * * This source file is subject to the new BSD license that is bundled * with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://framework.zend.com/license/new-bsd * If you did not receive a copy of the license an...
__label__POS
0.847676
import {hasClosestBlock, hasClosestByAttribute, isInEmbedBlock} from "../util/hasClosest"; import {Constants} from "../../constants"; export const getPreviousBlock = (element: Element) => { let parentElement = element; while (parentElement) { if (parentElement.previousElementSibling && parentElement.pr...
__label__POS
0.838297
using System; using System.IO; using System.Security.Cryptography; using System.Text; namespace AppDynamics.Dexter { /// <summary> /// Helper functions for encrypting password in the job file /// https://docs.microsoft.com/en-us/dotnet/api/system.security.cryptography.aes?view=netframework-4.7 /// </s...
__label__POS
0.704399
<?php /** * Zend Framework * * LICENSE * * This source file is subject to the new BSD license that is bundled * with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://framework.zend.com/license/new-bsd * If you did not receive a copy of the license a...
__label__POS
0.762759
// // ApphudError.swift // Apphud, Inc // // Created by ren6 on 31.05.2020. // Copyright © 2020 Apphud Inc. All rights reserved. // import Foundation /** Custom Apphud wrapper around NSError. */ public let APPHUD_ERROR_NO_INTERNET = -999 public let APPHUD_NO_PRODUCTS = -998 public let APPHUD_INVALID_IDENTIFIER ...
__label__POS
0.815748
export const setLute = (options: ILuteOptions) => { const lute: Lute = Lute.New(); lute.SetSpellcheck(window.siyuan.config.editor.spellcheck); lute.SetProtyleMarkNetImg(window.siyuan.config.editor.displayNetImgMark); lute.SetFileAnnotationRef(true); lute.SetHTMLTag2TextMark(true); lute.SetTextMa...
__label__POS
0.735631
<?php /** * Zend Framework * * LICENSE * * This source file is subject to the new BSD license that is bundled * with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://framework.zend.com/license/new-bsd * If you did not receive a copy of the license an...
__label__POS
0.813524
<?php /** * Zend Framework * * LICENSE * * This source file is subject to the new BSD license that is bundled * with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://framework.zend.com/license/new-bsd * If you did not receive a copy of the license an...
__label__POS
0.779307
using AppDynamics.Dexter.ReportObjectMaps; using AppDynamics.Dexter.ReportObjects; using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; namespace AppDynamics.Dexter.ProcessingSteps { public class ExtractWEBConfiguration : JobStepBase { public override bool Execu...
__label__POS
0.686767
using AppDynamics.Dexter.Extensions; using AppDynamics.Dexter.ReportObjectMaps; using AppDynamics.Dexter.ReportObjects; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; namesp...
__label__POS
0.612468
using AppDynamics.Dexter.ReportObjectMaps; using AppDynamics.Dexter.ReportObjects; using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Threading.Tasks; namespace AppDynamics.Dexter.ProcessingSteps { public class ExtractAPMMetrics : JobStepExtr...
__label__POS
0.63062
using AppDynamics.Dexter.ReportObjectMaps; using AppDynamics.Dexter.ReportObjects; using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; namespace AppDynamics.Dexter.ProcessingSteps { public class ExtractBIQConfiguration : JobStepBase { public override bool Execu...
__label__POS
0.784646
using AppDynamics.Dexter.ReportObjectMaps; using AppDynamics.Dexter.ReportObjects; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; namespace AppDynamics.Dexter.ProcessingSteps { public class ExtractControllerAuditEventsAndNotifications : Job...
__label__POS
0.718226
using AppDynamics.Dexter.ReportObjectMaps; using AppDynamics.Dexter.ReportObjects; using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Threading.Tasks; namespace AppDynamics.Dexter.ProcessingSteps { public class ExtractBIQMetrics : JobStepExtr...
__label__POS
0.729995
using AppDynamics.Dexter.ReportObjectMaps; using AppDynamics.Dexter.ReportObjects; using System; using System.Collections.Generic; using System.Diagnostics; namespace AppDynamics.Dexter.ProcessingSteps { public class ExtractApplicationHealthRulesAlertsPolicies : JobStepBase { public override bool Exec...
__label__POS
0.722893
using AppDynamics.Dexter.ReportObjectMaps; using AppDynamics.Dexter.ReportObjects; using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; namespace AppDynamics.Dexter.ProcessingSteps { public class ExtractControllerConfiguration : JobStepBase { public override boo...
__label__POS
0.75452
using AppDynamics.Dexter.ReportObjectMaps; using AppDynamics.Dexter.ReportObjects; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; namespace AppDynamics.Dexter.ProcessingSteps { public class ExtractBIQEntities : JobStepBase { pub...
__label__POS
0.763026
using AppDynamics.Dexter.ReportObjectMaps; using AppDynamics.Dexter.ReportObjects; using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; namespace AppDynamics.Dexter.ProcessingSteps { public class ExtractMOBILEConfiguration : JobStepBase { public override bool Ex...
__label__POS
0.796576
using AppDynamics.Dexter.Extensions; using AppDynamics.Dexter.ReportObjectMaps; using AppDynamics.Dexter.ReportObjects; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; namesp...
__label__POS
0.606068
/** * The HTTPMessage class is a simple Objective-C wrapper around Apple's CFHTTPMessage class. **/ #import <Foundation/Foundation.h> #if TARGET_OS_IPHONE // Note: You may need to add the CFNetwork Framework to your project #import <CFNetwork/CFNetwork.h> #endif #define HTTPVersion1_0 ((NSString *)kCFHTTPVersion1...
__label__POS
0.952764
using AppDynamics.Dexter.ReportObjectMaps; using AppDynamics.Dexter.ReportObjects; using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; namespace AppDynamics.Dexter.ProcessingSteps { public class ExtractDBConfiguration : JobStepBase { public override bool Execut...
__label__POS
0.743356
using AppDynamics.Dexter.ReportObjectMaps; using AppDynamics.Dexter.ReportObjects; using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Threading.Tasks; namespace AppDynamics.Dexter.ProcessingSteps { public class ExtractSIMMetrics : JobStepExtr...
__label__POS
0.721135
package io.appium.espressoserver.test.helpers; import org.junit.Before; import org.junit.Test; import java.util.concurrent.Executor; import androidx.annotation.NonNull; import io.appium.espressoserver.lib.handlers.exceptions.AppiumException; import io.appium.espressoserver.lib.helpers.InvocationOperation; import s...
__label__POS
0.910315
package io.appium.uiautomator2.utils; import android.graphics.Rect; import org.junit.Test; import org.mockito.Mockito; import io.appium.uiautomator2.model.Point; import static org.hamcrest.CoreMatchers.equalTo; import static org.junit.Assert.assertThat; public class PositionHelperTests { @Test public void...
__label__POS
0.879793
package io.appium.uiautomator2.utils; import org.junit.Test; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; public class GlobMatcherTests { @Test public void emptyPattern() { assertTrue(GlobMatcher.matches("", "")); assertFalse(GlobMatcher.matches("", "...
__label__POS
0.979942
<html lang="en" class="wf-opensans-n4-active wf-ptsans-n4-active wf-active"><head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="shortcut icon" href="/img/favicon.ico"> <title>Introducti...
__label__POS
0.846128
<html lang="en" class="wf-opensans-n4-active wf-ptsans-n4-active wf-active"> <body style="margin-top: 1em"> <div class="navbar navbar-default navbar-fixed-top" role="navigation" width="1081" height="157" x="0" y="66"> <div class="container" width="1081" height="154" x="0" y="66"> <!-- Collapsed navigatio...
__label__POS
0.71412
using AppDynamics.Dexter.ReportObjectMaps; using AppDynamics.Dexter.ReportObjects; using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; namespace AppDynamics.Dexter.ProcessingSteps { public class IndexBIQConfiguration : JobStepIndexBase { public override bool Ex...
__label__POS
0.812674
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * You may obtain a copy of the License at * * http://www.apache....
__label__POS
0.697719
package io.appium.uiautomator2.handler; import android.graphics.Rect; import androidx.test.uiautomator.UiObjectNotFoundException; import io.appium.uiautomator2.handler.request.SafeRequestHandler; import io.appium.uiautomator2.http.AppiumResponse; import io.appium.uiautomator2.http.IHttpRequest; import io.appium.uiau...
__label__POS
0.959391
package io.appium.uiautomator2.handler; import androidx.test.uiautomator.UiObjectNotFoundException; import io.appium.uiautomator2.handler.request.SafeRequestHandler; import io.appium.uiautomator2.http.AppiumResponse; import io.appium.uiautomator2.http.IHttpRequest; import io.appium.uiautomator2.model.AndroidElement; ...
__label__POS
0.855771
package io.appium.uiautomator2.handler; import androidx.annotation.VisibleForTesting; import java.util.HashMap; import java.util.Map; import io.appium.uiautomator2.handler.request.SafeRequestHandler; import io.appium.uiautomator2.http.AppiumResponse; import io.appium.uiautomator2.http.IHttpRequest; import io.appium....
__label__POS
0.957507
package io.appium.espressoserver.lib.helpers; public class BackdoorUtils { public static Object parseValue(Object o, Class<?> c) { if (o == null) return null; String value = o.toString(); if (c.equals(boolean.class) || c.equals(Boolean.class)) return Boolean.parseBoolean(value); if...
__label__POS
0.925625
package io.appium.uiautomator2.utils; import static io.appium.uiautomator2.utils.ReflectionUtils.*; import android.annotation.SuppressLint; import android.view.Display; import androidx.annotation.Nullable; import java.lang.reflect.Method; import io.appium.uiautomator2.common.exceptions.UiAutomator2Exception; publ...
__label__POS
0.915333
using System; namespace AppDynamics.Dexter { public class CompareTarget { public string ReferenceConroller { get; set; } public string ReferenceApplication { get; set; } public long ReferenceApplicationID { get; set; } public string DifferenceController { get; set; } pu...
__label__POS
0.845683
package io.appium.espressoserver.lib.helpers; import java.lang.reflect.Method; import java.util.Arrays; import java.util.concurrent.Executor; import java.util.concurrent.atomic.AtomicReference; import androidx.annotation.NonNull; import androidx.annotation.VisibleForTesting; import androidx.test.platform.app.Instrume...
__label__POS
0.611017
package io.appium.uiautomator2.utils; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import org.json.JSONArray; import org.json.JSONObject; import java.lang.reflect.Type; import io.appium.uiautomator2.http.IHttpRequest; import io.appium.uiautomator2.model.api.BaseModel; public class ModelUtils { ...
__label__POS
0.991606
// SiYuan - Refactor your thinking // Copyright (c) 2020-present, b3log.org // // This program 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) a...
__label__POS
0.750368
package io.appium.uiautomator2.utils; import java.util.regex.Pattern; /** * Turns a glob expression into a regular expression * '*' and '?' are supported as placeholders */ public class GlobMatcher { // Converts glob pattern to regex pattern public static String globToRegex(String glob) { StringBu...
__label__POS
0.682178
// SiYuan - Refactor your thinking // Copyright (c) 2020-present, b3log.org // // This program 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) a...
__label__POS
0.821377
package io.appium.uiautomator2.model; public enum NetworkConnectionEnum { AIRPLANE(1), WIFI(2), DATA(4), ALL(6), NONE(0), IN_VALID(null); private final Integer value; NetworkConnectionEnum(final Integer value) { this.value = value; } public static NetworkConnectionEnum getNetwork(int type...
__label__POS
0.756905
package io.appium.uiautomator2.model; import android.view.accessibility.AccessibilityEvent; import java.util.HashMap; public class AccessibilityScrollData { private final int scrollX; private final int maxScrollX; private final int scrollY; private final int maxScrollY; private final int fromInd...
__label__POS
0.993095
package io.appium.espressoserver.lib.model import com.google.gson.annotations.SerializedName import io.appium.espressoserver.lib.handlers.exceptions.InvalidArgumentException import android.view.MotionEvent.BUTTON_PRIMARY import android.view.MotionEvent.BUTTON_SECONDARY import android.view.MotionEvent.BUTTON_TERTIARY...
__label__POS
0.763613
package io.appium.uiautomator2.http.impl; import java.nio.charset.Charset; import io.appium.uiautomator2.http.IHttpResponse; import io.netty.handler.codec.http.FullHttpResponse; import io.netty.handler.codec.http.HttpResponseStatus; import io.netty.util.CharsetUtil; public class NettyHttpResponse implements IHttpRes...
__label__POS
0.673165
// SiYuan - Refactor your thinking // Copyright (c) 2020-present, b3log.org // // This program 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) a...
__label__POS
0.849812
// SiYuan - Refactor your thinking // Copyright (c) 2020-present, b3log.org // // This program 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) a...
__label__POS
0.974411
package io.appium.espressoserver.lib.helpers.w3c.dispatcher import io.appium.espressoserver.lib.handlers.exceptions.AppiumException import io.appium.espressoserver.lib.helpers.w3c.adapter.W3CActionAdapter import io.appium.espressoserver.lib.helpers.w3c.models.InputSource import io.appium.espressoserver.lib.helpers.w3c...
__label__POS
0.770881
package io.appium.espressoserver.lib.helpers.w3c.adapter import android.graphics.Point import io.appium.espressoserver.lib.handlers.exceptions.AppiumException import io.appium.espressoserver.lib.helpers.Logger import io.appium.espressoserver.lib.helpers.w3c.dispatcher.W3CKeyEvent import io.appium.espressoserver.lib.h...
__label__POS
0.733931
package io.appium.espressoserver.lib.helpers.w3c.dispatcher.constants /** * Implement table found in 17.4.2 that maps characters to 'location' * * Not using constants or enums because I don't think we'll actually need these in any * specific implementation * @param key Raw key * @return The location of the key o...
__label__POS
0.995571
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * You may obtain a copy of the License at * * http://www.apache....
__label__POS
0.969511
import _ from 'lodash'; import { errors } from 'appium/driver'; import { util } from 'appium/support'; /** * Flash the element with given id. * durationMillis and repeatCount are optional * @this {import('../driver').EspressoDriver} * @see https://github.com/appium/appium-espresso-driver?tab=readme-ov-file#mobile-...
__label__POS
0.712092
using System; namespace AppDynamics.Dexter.ReportObjects { public class DBApplicationConfiguration : ConfigurationEntityBase { [FieldComparison(FieldComparisonType.ValueComparison)] public int NumCollectorDefinitions { get; set; } [FieldComparison(FieldComparisonType.ValueComparison)] ...
__label__POS
0.785903
using System; namespace AppDynamics.Dexter.ReportObjects { public class WEBPageToBusinessTransaction : WEBEntityBase { public string PageType { get; set; } public string PageName { get; set; } public long PageID { get; set; } public long TierID { get; set; } public str...
__label__POS
0.792023
using System; namespace AppDynamics.Dexter.ReportObjects { public class WEBGeoLocation : WEBEntityBase { public string GeoCode { get; set; } public double Latitude { get; set; } public double Longitude { get; set; } public string LocationType { get; set; } public strin...
__label__POS
0.655751
// SiYuan - Refactor your thinking // Copyright (c) 2020-present, b3log.org // // This program 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) a...
__label__POS
0.63914
using System; namespace AppDynamics.Dexter.ReportObjects { public class BSGSyntheticsResult { public string Controller { get; set; } public string ApplicationName { get; set; } public long ApplicationID { get; set; } public int NumSyntheticJobs { get; set; } public in...
__label__POS
0.939163