Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 371 for unusual (0.29 sec)

  1. android/guava/src/com/google/common/collect/Multimap.java

     *
     * <ul>
     *   <li>{@link ImmutableListMultimap}
     *   <li>{@link ImmutableSetMultimap}
     *   <li>Configure your own mutable multimap with {@link MultimapBuilder}
     *   <li>{@link LinkedListMultimap} (for one unusual kind of mutable {@code Multimap})
     * </ul>
     *
     * Guava contains a number of other multimap implementations, such as {@link ArrayListMultimap}. In
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  2. pkg/registry/core/service/strategy.go

    func sameStringSlice(a []string, b []string) bool {
    	if len(a) != len(b) {
    		return false
    	}
    	for i := range a {
    		if a[i] != b[i] {
    			return false
    		}
    	}
    	return true
    }
    
    // This is an unusual case.  Service has a number of inter-related fields and
    // in order to avoid breaking clients we try really hard to infer what users
    // mean when they change them.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Multimap.java

     *
     * <ul>
     *   <li>{@link ImmutableListMultimap}
     *   <li>{@link ImmutableSetMultimap}
     *   <li>Configure your own mutable multimap with {@link MultimapBuilder}
     *   <li>{@link LinkedListMultimap} (for one unusual kind of mutable {@code Multimap})
     * </ul>
     *
     * Guava contains a number of other multimap implementations, such as {@link ArrayListMultimap}. In
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

                    public SneakyWorkAction() { }
    
                    public void execute() {
                        super.execute()
                        // These classes were chosen to be relatively stable and would be unusual to see in a worker.
                        def gradleApiClasses = [
                            "${com.google.common.collect.Lists.canonicalName}",
                        ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
  5. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    were refracted at their Incidence on the first Surface of the first Crystal, some of them after the usual, and some of them after the unusual manner, accordingly as their Sides of unusual Refraction were then turn'd towards the Coast of the unusual Refraction of that Crystal, or sideways from it. Every Ray of Light has therefore two opposite Sides, originally endued with a Property on which the unusual Refraction depends, and the other two opposite Sides not endued with that Property. And it remains...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods_test.go

    				# TYPE kubelet_orphaned_runtime_pods_total counter
    				kubelet_orphaned_runtime_pods_total 1
    				`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  7. src/testdata/Isaac.Newton-Opticks.txt

    first Surface of the first Crystal, some of them after the usual, and
    some of them after the unusual manner, accordingly as their Sides of
    unusual Refraction were then turn'd towards the Coast of the unusual
    Refraction of that Crystal, or sideways from it.
    
    Every Ray of Light has therefore two opposite Sides, originally endued
    with a Property on which the unusual Refraction depends, and the other
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  8. src/crypto/hmac/hmac_test.go

    	}
    	if Equal(b, c) {
    		t.Error("Equal accepted unequal slices")
    	}
    }
    
    func TestWriteAfterSum(t *testing.T) {
    	h := New(sha1.New, nil)
    	h.Write([]byte("hello"))
    	sumHello := h.Sum(nil)
    
    	h = New(sha1.New, nil)
    	h.Write([]byte("hello world"))
    	sumHelloWorld := h.Sum(nil)
    
    	// Test that Sum has no effect on future Sum or Write operations.
    	// This is a bit unusual as far as usage, but it's allowed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 18 18:38:14 UTC 2020
    - 21.8K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/math/LongMathTest.java

               * -4294967296L = -9223372036854775808L!
               *
               * To be clear, this bug affects not the test's computation of the expected result but the
               * _actual prod code_. But it probably affects only unusual cases.
               */
              continue;
            }
            BigInteger expectedResult = valueOf(a).multiply(valueOf(b));
            boolean expectedSuccess = fitsInLong(expectedResult);
            try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 20:15:57 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/math/LongMathTest.java

               * -4294967296L = -9223372036854775808L!
               *
               * To be clear, this bug affects not the test's computation of the expected result but the
               * _actual prod code_. But it probably affects only unusual cases.
               */
              continue;
            }
            BigInteger expectedResult = valueOf(a).multiply(valueOf(b));
            boolean expectedSuccess = fitsInLong(expectedResult);
            try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 20:15:57 UTC 2024
    - 32.5K bytes
    - Viewed (0)
Back to top