Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 20 for Patents (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateKotlinVersions.kt

                            }
                        }
                    }
                    add(minimumSupported)
                }.filterNotNull().distinct().sorted()
                return latests.subList(latests.indexOf(minimumSupported), latests.size)
            }
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Oct 29 08:29:55 GMT 2025
    - 4.3K bytes
    - Click Count (0)
  2. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateAgpVersions.kt

                updateCompatibilityDoc(fetchedVersions.latests)
            }
    
        private
        data class FetchedVersions(
            val latests: List<String>,
            val nightlyBuildId: String,
            val nightlyVersion: String,
            val aapt2Versions: List<String>,
            val buildToolsVersion: String
        )
    
        private
        fun fetchLatestAgpVersions(): FetchedVersions {
            val latests = fetchLatests(
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Oct 24 09:10:29 GMT 2025
    - 7.6K bytes
    - Click Count (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java

            depth = 0;
            parents = Collections.emptyList();
            parent = null;
        }
    
        public ResolutionNode(Artifact artifact, List<ArtifactRepository> remoteRepositories, ResolutionNode parent) {
            this.artifact = artifact;
            this.remoteRepositories = remoteRepositories;
            depth = parent.depth + 1;
            parents = new ArrayList<>();
            parents.addAll(parent.parents);
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 6.6K bytes
    - Click Count (0)
  4. LICENSES/third_party/forked/shell2junit/LICENSE

    Object form. 
    
    3. Grant of Patent License. Subject to the terms and conditions of this 
    License, each Contributor hereby grants to You a perpetual, worldwide, 
    non-exclusive, no-charge, royalty-free, irrevocable (except as stated in 
    this section) patent license to make, have made, use, offer to sell, sell, 
    import, and otherwise transfer the Work, where such license applies only to 
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Jul 08 11:48:19 GMT 2021
    - 9.2K bytes
    - Click Count (0)
  5. docs/ru/docs/advanced/strict-content-type.md

    ## Пример атаки { #example-attack }
    
    Представьте, что вы сделали способ запускать локального ИИ-агента.
    
    Он предоставляет API по адресу
    
    ```
    http://localhost:8000/v1/agents/multivac
    ```
    
    Есть также фронтенд по адресу
    
    ```
    http://localhost:8000
    ```
    
    /// tip | Совет
    
    Обратите внимание, что у обоих один и тот же хост.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 5.6K bytes
    - Click Count (0)
  6. docs/es/docs/advanced/strict-content-type.md

    ## Ejemplo de ataque { #example-attack }
    
    Imagina que construyes una forma de ejecutar un agente de IA local.
    
    Provee un API en
    
    ```
    http://localhost:8000/v1/agents/multivac
    ```
    
    También hay un frontend en
    
    ```
    http://localhost:8000
    ```
    
    /// tip | Consejo
    
    Ten en cuenta que ambos tienen el mismo host.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:12:26 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  7. .teamcity/scripts/CheckBadMerge.java

            List<String> parentCommits = parentCommitsOf(commit);
            if (parentCommits.size() != 2) {
                System.out.println(commit + " is not a merge commit we're looking for. Parents: " + parentCommits);
                return;
            }
    
            List<String> commitBranches = branchesOf(commit);
            if (commitBranches.stream().anyMatch(b -> b.startsWith("origin/release"))) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 16:25:09 GMT 2026
    - 9K bytes
    - Click Count (0)
  8. docs/tr/docs/advanced/strict-content-type.md

    ## Örnek Saldırı { #example-attack }
    
    Yerelde çalışan bir AI agent’ı (yapay zeka ajanı) çalıştırmanın bir yolunu geliştirdiğinizi düşünün.
    
    Bir API sunuyor:
    
    ```
    http://localhost:8000/v1/agents/multivac
    ```
    
    Ayrıca bir frontend var:
    
    ```
    http://localhost:8000
    ```
    
    /// tip | İpucu
    
    İkisinin de host’u aynıdır.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:51:35 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  9. docs/uk/docs/advanced/strict-content-type.md

    ## Приклад атаки { #example-attack }
    
    Уявіть, що ви створюєте спосіб запускати локального AI-агента.
    
    Він надає API за адресою
    
    ```
    http://localhost:8000/v1/agents/multivac
    ```
    
    Є також фронтенд за адресою
    
    ```
    http://localhost:8000
    ```
    
    /// tip | Порада
    
    Зауважте, що обидва мають один і той самий хост.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:25:54 GMT 2026
    - 5.5K bytes
    - Click Count (0)
  10. cmd/os-reliable.go

    	if err = checkPathLength(dirPath); err != nil {
    		return err
    	}
    
    	if err = reliableRemoveAll(dirPath); err != nil {
    		switch {
    		case isSysErrNotDir(err):
    			// File path cannot be verified since one of
    			// the parents is a file.
    			return errFileAccessDenied
    		case isSysErrPathNotFound(err):
    			// This is a special case should be handled only for
    			// windows, because windows API does not return "not a
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 5.8K bytes
    - Click Count (0)
Back to Top