27 Mart 2025'ten itibaren AOSP'yi derlemek ve AOSP'ye katkıda bulunmak için aosp-main
yerine android-latest-release
kullanmanızı öneririz. Daha fazla bilgi için AOSP'de yapılan değişiklikler başlıklı makaleyi inceleyin.
Trade Federation Global Configuration
Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
Trade Federation (TF) Global Configuration, TF başlatıldıktan sonra bir kez yüklenen bir dosyadır. Bu yapılandırma dosyası, söz konusu TF örneğinin ortamını tanımlamak için kullanılır.
Genel yapılandırma dosyasını yükleme
TF Global Configuration dosyası bir XML dosyasıdır ve yerel ortam değişkeni TF_GLOBAL_CONFIG
ayarlanarak belirtilebilir. TF_GLOBAL_CONFIG
belirtilmezse TF, mevcut çalışma yolunda tf_global_config.xml
adlı bir dosya bulmaya çalışır. Bu işlem başarısız olursa TF, varsayılan GlobalConfiguration dosyasını yükler. Örneğin, TF'yi aşağıdaki komutu kullanarak özel genel yapılandırmanızla başlatabilirsiniz:
TF_GLOBAL_CONFIG=/path/to/my/custom/good_tf_global_conf.xml tradefed.sh
Örnek Global Yapılandırma dosyası
<configuration description="Example Global Config">
<device_manager class="com.android.tradefed.device.DeviceManager">
<option name="max-null-devices" value="10" />
</device_manager>
</configuration>
Yukarıdaki örnekte, "null-device" yer tutucularının sayısı DeviceManager
içinde tanımlanan varsayılan değer yerine 10 olarak ayarlanmıştır.
Bu sayfadaki içerik ve kod örnekleri, İçerik Lisansı sayfasında açıklanan lisanslara tabidir. Java ve OpenJDK, Oracle ve/veya satış ortaklarının tescilli ticari markasıdır.
Son güncelleme tarihi: 2025-07-27 UTC.
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 2025-07-27 UTC."],[],[],null,["# Trade Federation Global Configuration\n\nThe Trade Federation (TF) Global Configuration is a file that is loaded once\nupon TF initialization. This configuration file is used to define the\nenvironment for that instance of TF.\n\nLoad the Global Configuration file\n----------------------------------\n\nThe TF Global Configuration file is an XML file and can be specified by setting\nthe local environment variable `TF_GLOBAL_CONFIG`. If `TF_GLOBAL_CONFIG` is\nnot specified, TF will try to locate a file named `tf_global_config.xml` in its\ncurrent working path. If that fails, TF will load the default Global\nConfiguration file. For example, you can launch TF with your custom global\nconfiguration via the following command: \n\n TF_GLOBAL_CONFIG=/path/to/my/custom/good_tf_global_conf.xml tradefed.sh\n\nExample Global Configuration file\n---------------------------------\n\n \u003cconfiguration description=\"Example Global Config\"\u003e\n \u003cdevice_manager class=\"com.android.tradefed.device.DeviceManager\"\u003e\n \u003coption name=\"max-null-devices\" value=\"10\" /\u003e\n \u003c/device_manager\u003e\n \u003c/configuration\u003e\n\nThe example above sets the number of \"null-device\" placeholders to 10 instead of\nthe default value define in the `DeviceManager`."]]