Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,574 for Empty (0.26 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            ["1"]       | []            | _             | "append to empty"                                 | { it.append("1") }
            ["1"]       | _             | []            | "add to empty convention"                         | { it.add("1") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/IsolatedArray.java

        public static final IsolatedArray EMPTY = empty(Object.class);
        private final Class<?> arrayType;
    
        public IsolatedArray(ImmutableList<Isolatable<?>> elements, Class<?> arrayType) {
            super(elements);
            this.arrayType = arrayType;
        }
    
        @Override
        public ValueSnapshot asSnapshot() {
            if (elements.isEmpty()) {
                return ArrayValueSnapshot.EMPTY;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_trimpath.txt

    stdout 'binary contains module root: true'
    stdout 'binary contains an empty GOROOT'
    
    # A binary built with -trimpath should not contain the current workspace.
    go build -trimpath -o $WORK/paths-a.exe .
    exec $WORK/paths-a.exe $WORK/paths-a.exe
    stdout 'binary contains module root: false'
    stdout 'binary contains an empty GOROOT'
    
    # A binary from an external module built with -trimpath should not contain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionRetainAllTester.java

        expectContents();
      }
    
      // retainAll(null)
    
      /*
       * AbstractCollection fails the retainAll(null) test when the subject
       * collection is empty, but we'd still like to test retainAll(null) when we
       * can. We split the test into empty and non-empty cases. This allows us to
       * suppress only the former.
       */
    
      @CollectionFeature.Require(SUPPORTS_REMOVE)
      @CollectionSize.Require(ZERO)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/mail/EsStatusPostcard.java

         * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty.
         * @param hostname The parameter value of hostname. (NotNull)
         */
        public void setHostname(String hostname) {
            registerVariable("hostname", hostname);
        }
    
        /**
         * Set the value of clustername, used in parameter comment. <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/primitives/CharsTest.java

      public void testConcat() {
        assertThat(Chars.concat()).isEqualTo(EMPTY);
        assertThat(Chars.concat(EMPTY)).isEqualTo(EMPTY);
        assertThat(Chars.concat(EMPTY, EMPTY, EMPTY)).isEqualTo(EMPTY);
        assertThat(Chars.concat(ARRAY1)).isEqualTo(ARRAY1);
        assertThat(Chars.concat(ARRAY1)).isNotSameInstanceAs(ARRAY1);
        assertThat(Chars.concat(EMPTY, ARRAY1, EMPTY)).isEqualTo(ARRAY1);
        assertThat(Chars.concat(ARRAY1, ARRAY1, ARRAY1))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_test.txt

    # By default, 'go get' should ignore tests
    cp go.mod.empty go.mod
    go get m/a
    ! grep rsc.io/quote go.mod
    
    # 'go get -t' should consider test dependencies of the named package.
    cp go.mod.empty go.mod
    go get -t m/a
    grep 'rsc.io/quote v1.5.2$' go.mod
    
    # 'go get -t' should not consider test dependencies of imported packages,
    # including packages imported from tests.
    cp go.mod.empty go.mod
    go get -t m/b
    ! grep rsc.io/quote go.mod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            // TODO - should not invalidate the cache for this expression
            "'empty=' + tree.empty"                                                                         | "empty=false"               | "empty=false"                      | "empty=false"
            // TODO - should not invalidate the cache for this expression until the file is removed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_tidy_downgrade_ambiguous.txt

    rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
    -- use.go --
    package use
    
    import (
    	_ "old-indirect/empty"
    
    	_ "rsc.io/quote/v3"
    )
    -- old-indirect/empty/empty.go --
    package empty
    -- old-indirect/go.mod --
    module old-indirect
    
    go 1.16
    
    require rsc.io/quote v1.5.1
    -- old-indirect/go.sum --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 17:32:52 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/FileSystemSnapshotSerializerTest.groovy

        @Override
        Class<? extends AbstractEncoder> getEncoder() {
            return super.getEncoder()
        }
    
        def "reads and writes empty snapshots"() {
            when:
            def out = serialize(EMPTY, serializer)
    
            then:
            out == EMPTY
        }
    
        def "reads and writes file snapshots"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top