Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1221 - 1230 of 2,776 for 2$ (0.02 sec)

  1. guava-tests/test/com/google/common/collect/RegularImmutableSortedMapMapInterfaceTest.java

      protected SortedMap<String, Integer> makeEmptyMap() {
        return ImmutableSortedMap.of();
      }
    
      @Override
      protected SortedMap<String, Integer> makePopulatedMap() {
        return ImmutableSortedMap.of("one", 1, "two", 2, "three", 3);
      }
    
      @Override
      protected String getKeyNotInPopulatedMap() {
        return "minus one";
      }
    
      @Override
      protected Integer getValueNotInPopulatedMap() {
        return -1;
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Mar 17 01:34:55 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. .github/dependabot.yml

    #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    #  See the License for the specific language governing permissions and
    #  limitations under the License.
    #
    version: 2
    updates:
    
      - package-ecosystem: "maven"
        directory: "/"
        schedule:
          interval: "daily"
    
      - package-ecosystem: maven
        directory: "/"
        schedule:
          interval: "daily"
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Aug 21 09:07:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/misc/LocaleUtilTest.java

        /**
         * @throws Exception
         */
        public void testGetLocale() throws Exception {
            assertEquals("1", LocaleUtil.getDefault(), LocaleUtil.getLocale(null));
            assertEquals("2", Locale.JAPANESE, LocaleUtil.getLocale("ja"));
            assertEquals("3", Locale.JAPAN, LocaleUtil.getLocale("ja_JP"));
        }
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/form-validator/brazil.js

    return f=10*d%11,f>=10&&(f=0),f===parseInt(b.substring(10,11))},errorMessage:"",errorMessageKey:"badBrazilCPFAnswer"}),a.formUtils.addValidator({name:"brphone",validatorFunction:function(a){return!!a.match(/^(\+[\d]{1,3}[\s]{0,1}){0,1}(\(){0,1}(\d){2}(\)){0,1}(\s){0,1}(\d){4,5}([-. ]){0,1}(\d){4}$/g)},errorMessage:"",errorMessageKey:"badBrazilTelephoneAnswer"}),a.formUtils.addValidator({name:"cep",validatorFunction:function(a){return!!a.match(/^(\d){5}([-. ]){0,1}(\d){3}$/g)},errorMessage:"",err...
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/ForwardingListMultimapTest.java

                  }
                });
      }
    
      public void testEquals() {
        ListMultimap<Integer, String> map1 = ImmutableListMultimap.of(1, "one");
        ListMultimap<Integer, String> map2 = ImmutableListMultimap.of(2, "two");
        new EqualsTester()
            .addEqualityGroup(map1, wrap(map1), wrap(map1))
            .addEqualityGroup(map2, wrap(map2))
            .testEquals();
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/graph/InvalidatableSetTest.java

      Set<Integer> wrappedSet;
      Set<Integer> copyOfWrappedSet;
      InvalidatableSet<Integer> setToTest;
    
      @Before
      public void createSets() {
        wrappedSet = new HashSet<>();
        wrappedSet.add(1);
        wrappedSet.add(2);
        wrappedSet.add(3);
    
        copyOfWrappedSet = ImmutableSet.copyOf(wrappedSet);
        setToTest =
            InvalidatableSet.of(wrappedSet, () -> wrappedSet.contains(1), () -> 1 + "is not present");
      }
    
      @Test
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/ForwardingListMultimapTest.java

                  }
                });
      }
    
      public void testEquals() {
        ListMultimap<Integer, String> map1 = ImmutableListMultimap.of(1, "one");
        ListMultimap<Integer, String> map2 = ImmutableListMultimap.of(2, "two");
        new EqualsTester()
            .addEqualityGroup(map1, wrap(map1), wrap(map1))
            .addEqualityGroup(map2, wrap(map2))
            .testEquals();
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/ForwardingSetMultimapTest.java

                  }
                });
      }
    
      public void testEquals() {
        SetMultimap<Integer, String> map1 = ImmutableSetMultimap.of(1, "one");
        SetMultimap<Integer, String> map2 = ImmutableSetMultimap.of(2, "two");
        new EqualsTester()
            .addEqualityGroup(map1, wrap(map1), wrap(map1))
            .addEqualityGroup(map2, wrap(map2))
            .testEquals();
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.proto

      // Standard list metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 2;
    
      // items contains each of the included items.
      repeated k8s.io.apimachinery.pkg.apis.meta.v1.PartialObjectMetadata items = 1;
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. cmd/testdata/xl-meta-merge.zip

    ¼W1Ö>Iit LGaxwÖ! ²]U±¬Öá#ÆBmPC ábSZI’ ïøXwgZ èkwaç`w*†{pj ØwW]eæ†za ëuKt[WÆ>ÈIK]}@óº~gÉNHéæ)Þ $¾jyZPñ+Qjq†mëb39€ ÏÂæ² XÿsODe¸ Wðil÷º¾ g\„ñhvwjJñv²p}DñncLeqîzŒmÌv¢` fåÉüÓÁÒ 2 ÿ@\Yk†£åì ;¤ÅsB~ rÿSALñ„›k~g`w>u` tjñþ Á"#H}cqv]o ädcœ€ ÏÂæ²y®"Qk`qoWQ"²oô¤ž¨b\åB}SªLI\:U5 C› õ ðÀkN˜ª§ ÿ° ?[T¯ > DKEuRó¦ kòu² HqÈ@isK9&|DBTË”³—_qV,##÷&- #£¯ ù ëfg 2!axGvEèåïVWŸù `M zX —ereKC~e«Míjeh÷¨j@ej;¡²vcH>mspGªAïë^fGLE¤òi{QióTpmâ]sn öÌ‘¯ 3V Vñ ä°B~QQ «ïEDyóÌÀ­ »úNd=þêcRôsÙ+`g°å }SolHO¢@wªå/sDqrG Zr„TQx GªMVaTfkô[ngª3û<G{ cZPKH...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top