Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 270 for emptyList (1.36 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java

                    getPackageExcludes().getOrElse(Collections.emptyList()),
                    getClassIncludes().getOrElse(Collections.emptyList()),
                    getClassExcludes().getOrElse(Collections.emptyList()),
                    getMethodIncludes().getOrElse(Collections.emptyList()),
                    getMethodExcludes().getOrElse(Collections.emptyList()),
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 26 10:58:32 GMT 2023
    - 13.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            val ktValueArgumentList = ktValueArgument.parent as? KtValueArgumentList ?: return emptyList()
            val ktCallExpression = ktValueArgumentList.parent as? KtCallElement ?: return emptyList()
    
            val firCall = ktCallExpression.getOrBuildFir(analysisSession.firResolveSession)?.unwrapSafeCall() as? FirCall ?: return emptyList()
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Apr 15 10:59:01 GMT 2024
    - 37.5K bytes
    - Viewed (0)
  3. guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

              }
            };
        assertFailure(tester);
      }
    
      public void testSimilarException() {
        List<Integer> emptyList = emptyList();
        IteratorTester<Integer> tester =
            new IteratorTester<Integer>(
                1, MODIFIABLE, emptyList, IteratorTester.KnownOrder.KNOWN_ORDER) {
              @Override
              protected Iterator<Integer> newTargetIterator() {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Apr 17 12:41:04 GMT 2023
    - 10.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

            if (fqName.isRoot) return emptyList()
            val extensionName = fqName.shortName()
    
            val receiverTypeName = fqName.parent()
            if (receiverTypeName.isRoot) return emptyList()
    
            val possibleExtensions = getExtensionCallableSymbolsByShortName(extensionName, contextElement)
            if (possibleExtensions.isEmpty()) return emptyList()
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:47 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ReferenceShortener.kt

                override val listOfTypeToShortenInfo: List<TypeToShortenInfo> get() = emptyList()
                override val listOfQualifierToShortenInfo: List<QualifierToShortenInfo> get() = emptyList()
                override val thisLabelsToShorten: List<ThisLabelToShortenInfo> = emptyList()
                override val kDocQualifiersToShorten: List<SmartPsiElementPointer<KDocName>> get() = emptyList()
    
                override val isEmpty: Boolean get() = true
            }
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Mon Nov 20 20:18:18 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/prefix/DefaultPluginPrefixRequest.java

     */
    public class DefaultPluginPrefixRequest implements PluginPrefixRequest {
    
        private String prefix;
    
        private List<String> pluginGroups = Collections.emptyList();
    
        private Model pom;
    
        private List<RemoteRepository> repositories = Collections.emptyList();
    
        private RepositorySystemSession session;
    
        /**
         * Creates an empty request.
         */
        public DefaultPluginPrefixRequest() {}
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  7. mockwebserver/src/test/java/mockwebserver3/RecordedRequestTest.kt

        val socket =
          FakeSocket(
            localAddress = InetAddress.getByAddress("127.0.0.1", byteArrayOf(127, 0, 0, 1)),
            localPort = 80,
          )
        val request = RecordedRequest("GET / HTTP/1.1", headers, emptyList(), 0, Buffer(), 0, socket)
        assertThat(request.requestUrl.toString()).isEqualTo("http://127.0.0.1/")
      }
    
      @Test fun testIpv6() {
        val socket =
          FakeSocket(
            localAddress =
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  8. android/guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

              }
            };
        assertFailure(tester);
      }
    
      public void testSimilarException() {
        List<Integer> emptyList = emptyList();
        IteratorTester<Integer> tester =
            new IteratorTester<Integer>(
                1, MODIFIABLE, emptyList, IteratorTester.KnownOrder.KNOWN_ORDER) {
              @Override
              protected Iterator<Integer> newTargetIterator() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 17 12:41:04 GMT 2023
    - 10.4K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionResult.java

            return missingArtifacts != null && !missingArtifacts.isEmpty();
        }
    
        public List<Artifact> getMissingArtifacts() {
            return missingArtifacts == null ? Collections.emptyList() : Collections.unmodifiableList(missingArtifacts);
        }
    
        public ArtifactResolutionResult addMissingArtifact(Artifact artifact) {
            missingArtifacts = initList(missingArtifacts);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 9.9K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/IterablesTest.java

          Iterables.limit(list, -1);
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testIsEmpty() {
        Iterable<String> emptyList = Collections.emptyList();
        assertTrue(Iterables.isEmpty(emptyList));
    
        Iterable<String> singletonList = Collections.singletonList("foo");
        assertFalse(Iterables.isEmpty(singletonList));
      }
    
      public void testSkip_simple() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 46K bytes
    - Viewed (0)
Back to top