Home
last modified time | relevance | path

Searched refs:latestVersion (Results 1 – 25 of 404) sorted by relevance

12345678910>>...17

/dports/www/matomo/piwik/core/
H A DUpdateCheck.php48 $latestVersion = self::getLatestAvailableVersionNumber();
49 $latestVersion = trim((string) $latestVersion);
50 if (!preg_match('~^[0-9][0-9a-zA-Z_.-]*$~D', $latestVersion)) {
51 $latestVersion = '';
54 Option::set(self::LATEST_VERSION, $latestVersion);
74 $latestVersion = '';
77 return $latestVersion;
98 $latestVersion = self::getLatestVersion();
99 if (!empty($latestVersion)
100 && version_compare(Version::VERSION, $latestVersion) == -1
[all …]
/dports/www/matomo/piwik/plugins/CoreUpdater/
H A DUpdateCommunication.php65 $latestVersion = $this->getLatestVersion();
72 $view->latestVersion = $latestVersion;
76 $view->isStableVersion = $version->isStableVersion($latestVersion);
77 $view->linkToChangeLog = $this->getLinkToChangeLog($latestVersion);
121 $latestVersion = self::getLatestVersion();
123 if (!$version->isVersionNumber($latestVersion)) {
132 $latestVersion = $this->getLatestVersion();
136 && ($latestVersion == $lastVersionSent
137 || version_compare($latestVersion, $lastVersionSent) == -1)) {
162 $latestVersion = $this->getLatestVersion();
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/
H A DPolicyIntersector.java101 NamespaceVersion latestVersion = null; in intersect() local
111 if (latestVersion == null) { in intersect()
112 latestVersion = tested.getNamespaceVersion(); in intersect()
113 } else if (latestVersion.compareTo(tested.getNamespaceVersion()) < 0) { in intersect()
114 latestVersion = tested.getNamespaceVersion(); in intersect()
118 return Policy.createNullPolicy(latestVersion, null, null); in intersect()
121latestVersion = (latestVersion != null) ? latestVersion : NamespaceVersion.getLatestVersion(); in intersect()
123 return Policy.createEmptyPolicy(latestVersion, null, null); in intersect()
150 return Policy.createPolicy(latestVersion, null, null, finalAlternatives); in intersect()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/
H A DPolicyIntersector.java101 NamespaceVersion latestVersion = null; in intersect() local
111 if (latestVersion == null) { in intersect()
112 latestVersion = tested.getNamespaceVersion(); in intersect()
113 } else if (latestVersion.compareTo(tested.getNamespaceVersion()) < 0) { in intersect()
114 latestVersion = tested.getNamespaceVersion(); in intersect()
118 return Policy.createNullPolicy(latestVersion, null, null); in intersect()
121latestVersion = (latestVersion != null) ? latestVersion : NamespaceVersion.getLatestVersion(); in intersect()
123 return Policy.createEmptyPolicy(latestVersion, null, null); in intersect()
150 return Policy.createPolicy(latestVersion, null, null, finalAlternatives); in intersect()
/dports/devel/hs-git-annex/git-annex-8.20210903/Annex/
H A DVersion.hs24 latestVersion :: RepoVersion
25 latestVersion = RepoVersion 8 function
39 [ (RepoVersion 3, latestVersion)
40 , (RepoVersion 4, latestVersion)
41 , (RepoVersion 5, latestVersion)
42 , (RepoVersion 6, latestVersion)
43 , (RepoVersion 7, latestVersion)
/dports/www/writefreely/writefreely-0.13.1/
H A Dupdates.go32 latestVersion string member
53 if CompareSemver(latestRemote, uc.latestVersion) == 1 {
54 uc.latestVersion = latestRemote
65 return CompareSemver(uc.latestVersion, uc.currentVersion) == 1
71 return CompareSemver(uc.latestVersion, uc.currentVersion) == 1
76 return uc.latestVersion
80 return "https://writefreely.org/releases/" + uc.latestVersion
86 return wfReleaseNotesURL(uc.latestVersion)
/dports/sysutils/docker/docker-ce-18.09.5/components/cli/vendor/github.com/docker/licensing/
H A Dstorage.go54 latestVersion, err := getLatestNamedConfig(clnt, licenseNamePrefix)
60 Name: fmt.Sprintf("%s-%d", licenseNamePrefix, latestVersion+1),
90 var latestVersion int
91 latestVersion, err = getLatestNamedConfig(clnt, licenseNamePrefix)
98 if latestVersion >= 0 {
99 …g, _, err := clnt.ConfigInspectWithRaw(ctx, fmt.Sprintf("%s-%d", licenseNamePrefix, latestVersion))
183 latestVersion := -1
190 return latestVersion, fmt.Errorf("unable to list existing configs: %s", err)
205 if existingVersion > latestVersion {
206 latestVersion = existingVersion
[all …]
/dports/net-p2p/vuze/vuze-5.7.4.0_2/org/gudy/azureus2/ui/swt/updater2/
H A DSWTVersionGetter.java49 private int latestVersion; field in SWTVersionGetter
67 this.latestVersion = 0; in SWTVersionGetter()
75 … String msg = "SWT: current version = " + currentVersion + ", latest version = " + latestVersion; in needsUpdate()
82 return latestVersion > currentVersion; in needsUpdate()
112 latestVersion = Integer.parseInt( new String( version_bytes ) ); in downloadLatestVersion()
114 msg += " version=" + latestVersion; in downloadLatestVersion()
139 latestVersion = Integer.MAX_VALUE; in downloadLatestVersion()
150 latestVersion = Integer.parseInt( new String( version_bytes ) ); in downloadLatestVersion()
151 msg += " version=" + latestVersion; in downloadLatestVersion()
203 return latestVersion; in getLatestVersion()
/dports/textproc/jdictionary/jdictionary/src-1_8/info/jdictionary/
H A DNewJDictionaryVersionChecker.java35 private float latestVersion; field in NewJDictionaryVersionChecker
49 latestVersion = getLatestVersion(); in run()
50 if(latestVersion > JDictionary.getJDictionaryVersion()) { in run()
52 notifyNewJDictionaryVersionListeners(latestVersion); in run()
59 return latestVersion; in getLatestVersion()
75 void notifyNewJDictionaryVersionListeners(float latestVersion) { in notifyNewJDictionaryVersionListeners() argument
77 NewJDictionaryVersionEvent event = new NewJDictionaryVersionEvent(this, latestVersion); in notifyNewJDictionaryVersionListeners()
H A DNewsChecker.java36 private int latestVersion; field in NewsChecker
49 latestVersion = getLatestVersion(); in run()
50 if(latestVersion > jDictionary.getPrefs().lastCheckedNewsVersion) in run()
51 notifyNewsListeners(latestVersion); in run()
71 return latestVersion; in getLatest()
75 void notifyNewsListeners(int latestVersion) { in notifyNewsListeners() argument
78 NewsEvent event = new NewsEvent(this, latestVersion, newsURL); in notifyNewsListeners()
/dports/misc/netron/node_modules/latest-version/
H A Dindex.d.ts1 declare namespace latestVersion { namespace
10 declare const latestVersion: { constant
31 (packageName: string, options?: latestVersion.Options): Promise<string>;
39 default: typeof latestVersion;
42 export = latestVersion;
/dports/textproc/jdictionary/jdictionary/src-1_8/info/jdictionary/events/
H A DNewJDictionaryVersionEvent.java31 float latestVersion; field in NewJDictionaryVersionEvent
33 public NewJDictionaryVersionEvent(NewJDictionaryVersionChecker source, float latestVersion) { in NewJDictionaryVersionEvent() argument
35 this.latestVersion = latestVersion; in NewJDictionaryVersionEvent()
39 return latestVersion; in getLatestVersion()
/dports/sysutils/bareos-client/bareos-Release-20.0.3/webui/vendor/zendframework/zend-version/src/
H A DVersion.php40 protected static $latestVersion; variable in Zend\\Version\\Version
81 if (null !== self::$latestVersion) {
82 return self::$latestVersion;
85 self::$latestVersion = 'not available';
99 return self::$latestVersion;
118 self::$latestVersion = $response;
121 return self::$latestVersion;
/dports/sysutils/bareos-traymonitor/bareos-Release-20.0.3/webui/vendor/zendframework/zend-version/src/
H A DVersion.php40 protected static $latestVersion; variable in Zend\\Version\\Version
81 if (null !== self::$latestVersion) {
82 return self::$latestVersion;
85 self::$latestVersion = 'not available';
99 return self::$latestVersion;
118 self::$latestVersion = $response;
121 return self::$latestVersion;
/dports/sysutils/bareos18-server/bareos-Release-18.2.12/webui/vendor/zendframework/zend-version/src/
H A DVersion.php40 protected static $latestVersion; variable in Zend\\Version\\Version
81 if (null !== self::$latestVersion) {
82 return self::$latestVersion;
85 self::$latestVersion = 'not available';
99 return self::$latestVersion;
118 self::$latestVersion = $response;
121 return self::$latestVersion;
/dports/sysutils/bareos19-client/bareos-Release-19.2.11/webui/vendor/zendframework/zend-version/src/
H A DVersion.php40 protected static $latestVersion; variable in Zend\\Version\\Version
81 if (null !== self::$latestVersion) {
82 return self::$latestVersion;
85 self::$latestVersion = 'not available';
99 return self::$latestVersion;
118 self::$latestVersion = $response;
121 return self::$latestVersion;
/dports/sysutils/bareos18-traymonitor/bareos-Release-18.2.12/webui/vendor/zendframework/zend-version/src/
H A DVersion.php40 protected static $latestVersion; variable in Zend\\Version\\Version
81 if (null !== self::$latestVersion) {
82 return self::$latestVersion;
85 self::$latestVersion = 'not available';
99 return self::$latestVersion;
118 self::$latestVersion = $response;
121 return self::$latestVersion;
/dports/sysutils/bareos19-traymonitor/bareos-Release-19.2.11/webui/vendor/zendframework/zend-version/src/
H A DVersion.php40 protected static $latestVersion; variable in Zend\\Version\\Version
81 if (null !== self::$latestVersion) {
82 return self::$latestVersion;
85 self::$latestVersion = 'not available';
99 return self::$latestVersion;
118 self::$latestVersion = $response;
121 return self::$latestVersion;
/dports/sysutils/bareos19-server/bareos-Release-19.2.11/webui/vendor/zendframework/zend-version/src/
H A DVersion.php40 protected static $latestVersion; variable in Zend\\Version\\Version
81 if (null !== self::$latestVersion) {
82 return self::$latestVersion;
85 self::$latestVersion = 'not available';
99 return self::$latestVersion;
118 self::$latestVersion = $response;
121 return self::$latestVersion;
/dports/sysutils/bareos18-client/bareos-Release-18.2.12/webui/vendor/zendframework/zend-version/src/
H A DVersion.php40 protected static $latestVersion; variable in Zend\\Version\\Version
81 if (null !== self::$latestVersion) {
82 return self::$latestVersion;
85 self::$latestVersion = 'not available';
99 return self::$latestVersion;
118 self::$latestVersion = $response;
121 return self::$latestVersion;
/dports/sysutils/bareos-server/bareos-Release-20.0.3/webui/vendor/zendframework/zend-version/src/
H A DVersion.php40 protected static $latestVersion; variable in Zend\\Version\\Version
81 if (null !== self::$latestVersion) {
82 return self::$latestVersion;
85 self::$latestVersion = 'not available';
99 return self::$latestVersion;
118 self::$latestVersion = $response;
121 return self::$latestVersion;
/dports/www/bareos-webui/bareos-Release-20.0.3/webui/vendor/zendframework/zend-version/src/
H A DVersion.php40 protected static $latestVersion; variable in Zend\\Version\\Version
81 if (null !== self::$latestVersion) {
82 return self::$latestVersion;
85 self::$latestVersion = 'not available';
99 return self::$latestVersion;
118 self::$latestVersion = $response;
121 return self::$latestVersion;
/dports/www/bareos18-webui/bareos-Release-18.2.12/webui/vendor/zendframework/zend-version/src/
H A DVersion.php40 protected static $latestVersion; variable in Zend\\Version\\Version
81 if (null !== self::$latestVersion) {
82 return self::$latestVersion;
85 self::$latestVersion = 'not available';
99 return self::$latestVersion;
118 self::$latestVersion = $response;
121 return self::$latestVersion;
/dports/www/bareos19-webui/bareos-Release-19.2.11/webui/vendor/zendframework/zend-version/src/
H A DVersion.php40 protected static $latestVersion; variable in Zend\\Version\\Version
81 if (null !== self::$latestVersion) {
82 return self::$latestVersion;
85 self::$latestVersion = 'not available';
99 return self::$latestVersion;
118 self::$latestVersion = $response;
121 return self::$latestVersion;
/dports/www/zend-framework/ZendFramework-2.4.13/library/Zend/Version/
H A DVersion.php40 protected static $latestVersion; variable in Zend\\Version\\Version
81 if (null !== self::$latestVersion) {
82 return self::$latestVersion;
85 self::$latestVersion = 'not available';
99 return self::$latestVersion;
118 self::$latestVersion = $response;
121 return self::$latestVersion;

12345678910>>...17