Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 146 for Kull (0.16 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

                if (server.getConfiguration() != null) {
                    XmlNode dom = server.getDelegate().getConfiguration();
                    List<XmlNode> children = dom.getChildren().stream()
                            .filter(c -> !"wagonProvider".equals(c.getName()))
                            .collect(Collectors.toList());
                    dom = new XmlNodeImpl(dom.getName(), null, null, children, null);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

         */
        public String getId() {
            return new StringBuilder(128)
                .append((getGroupId() == null) ? "[unknown-group-id]" : getGroupId())
                .append(":")
                .append((getArtifactId() == null) ? "[unknown-artifact-id]" : getArtifactId())
                .append(":")
                .append((getVersion() == null) ? "[unknown-version]" : getVersion())
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Ordering.java

       *
       * <p>Example:
       *
       * <pre>{@code
       * Ordering.allEqual().nullsLast().sortedCopy(
       *     asList(t, null, e, s, null, t, null))
       * }</pre>
       *
       * <p>Assuming {@code t}, {@code e} and {@code s} are non-null, this returns {@code [t, e, s, t,
       * null, null, null]} regardless of the true comparison order of those three values (which might
       * not even implement {@link Comparable} at all).
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 39.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        node.thread = null; // mark as 'deleted'
        restart:
        while (true) {
          Waiter pred = null;
          Waiter curr = waiters;
          if (curr == Waiter.TOMBSTONE) {
            return; // give up if someone is calling complete
          }
          Waiter succ;
          while (curr != null) {
            succ = curr.next;
            if (curr.thread != null) { // we aren't unlinking this node, update pred.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 63K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    ### Docs
    
    * ✏️ Fix typo in `fastapi/security/api_key.py`. PR [#11481](https://github.com/tiangolo/fastapi/pull/11481) by [@ch33zer](https://github.com/ch33zer).
    * ✏️ Fix typo in `security/http.py`. PR [#11455](https://github.com/tiangolo/fastapi/pull/11455) by [@omarmoo5](https://github.com/omarmoo5).
    
    ### Translations
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Apr 28 00:28:00 GMT 2024
    - 385.5K bytes
    - Viewed (1)
  6. maven-compat/src/test/java/org/apache/maven/repository/metadata/DefaultClasspathTransformationTestType.java

            // v1-->v2
            graph.addEdge(v1, v2, new MetadataGraphEdge("1.1", true, null, null, 2, 1));
            graph.addEdge(v1, v2, new MetadataGraphEdge("1.2", true, null, null, 2, 2));
    
            // v1-->v3
            graph.addEdge(v1, v3, new MetadataGraphEdge("1.1", true, null, null, 2, 1));
            graph.addEdge(v1, v3, new MetadataGraphEdge("1.2", true, null, null, 4, 2));
    
            // v3-->v4
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

            ClassRealm pluginRealm = pluginDescriptor.getClassRealm();
    
            if (pluginRealm == null) {
                try {
                    setupPluginRealm(pluginDescriptor, session, null, null, null);
                } catch (PluginResolutionException e) {
                    String msg = "Cannot setup plugin realm [mojoDescriptor=" + mojoDescriptor.getId()
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            is ByteValue -> KtConstantValue.KtByteConstantValue(value, sourcePsi = null)
            is CharValue -> KtConstantValue.KtCharConstantValue(value, sourcePsi = null)
            is IntValue -> KtConstantValue.KtIntConstantValue(value, sourcePsi = null)
            is LongValue -> KtConstantValue.KtLongConstantValue(value, sourcePsi = null)
            is ShortValue -> KtConstantValue.KtShortConstantValue(value, sourcePsi = null)
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 07:15:56 GMT 2024
    - 33.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        override val element: KtUserType,
        val shortenedRef: String? = null,
        override val nameToImport: FqName? = null,
        override val importAllInParent: Boolean = false,
    ) : ElementToShorten()
    
    private class ShortenQualifier(
        override val element: KtDotQualifiedExpression,
        val shortenedRef: String? = null,
        override val nameToImport: FqName? = null,
        override val importAllInParent: Boolean = false
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java

                            Set<Binding<Object>> res3 = res2 != null ? new HashSet<>(res2) : new HashSet<>();
                            Map<String, Supplier<Object>> map = res3.stream()
                                    .filter(b -> b.getOriginalKey() == null
                                            || b.getOriginalKey().getQualifier() == null
                                            || b.getOriginalKey().getQualifier() instanceof String)
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 8K bytes
    - Viewed (0)
Back to top