Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,141 for below (0.06 sec)

  1. guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

            assertTrue(cache.asMap().containsKey(entry.getKey()));
            assertTrue(cache.asMap().containsValue(entry.getValue()));
            // this getUnchecked() call shouldn't be a cache miss; verified below
            assertEquals(entry.getValue(), cache.getUnchecked(entry.getKey()));
          }
          assertEquals(WARMUP_SIZE, cache.stats().missCount());
          checkValidState(cache);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais.go

    	freq = freq_8_32(text, freq, bucket)
    	freq = freq[:256]     // establish len(freq) = 256, so 0 ≤ i < 256 below
    	bucket = bucket[:256] // eliminate bounds check for bucket[i] below
    	total := int32(0)
    	for i, n := range freq {
    		bucket[i] = total
    		total += n
    	}
    }
    
    // bucketMax_8_32 stores into bucket[c] the maximum index
    // in the bucket for character c in a bucket-sort of text.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    [[sec:cpp_unit_test_conventions]]
    == Conventions
    
    The {cpp} Unit Test Plugin adds conventions for sources and tasks, shown below.
    
    [[sec:cpp_unit_test_layout]]
    === Project layout
    
    The {cpp} Unit Test Plugin assumes the project layout shown below.
    None of these directories needs to exist or have anything in them.
    The {cpp} Unit Test Plugin will compile whatever it finds, and handles anything which is missing.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  4. pkg/kubelet/nodestatus/setters.go

    			// copied to the slice. So if we append to the slice here none of the
    			// updates we make below are reflected in the slice.
    			newCondition = true
    		}
    
    		// Update the heartbeat time
    		condition.LastHeartbeatTime = currentTime
    
    		// Note: The conditions below take care of the case when a new NodeMemoryPressure condition is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/xctest_plugin.adoc

    [[sec:xctest_conventions]]
    == Conventions
    
    The XCTest Plugin adds conventions for sources and tasks, shown below.
    
    [[sec:xctest_layout]]
    === Project layout
    
    The XCTest Plugin assumes the project layout shown below.
    None of these directories needs to exist or have anything in them.
    The XCTest Plugin will compile whatever it finds, and handles anything which is missing.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/upgrade/plan_test.go

    	kubeadm upgrade apply v1.18.4
    
    Note: Before you can perform this upgrade, you have to update kubeadm to v1.18.4.
    
    _____________________________________________________________________
    
    
    The table below shows the current state of component configs as understood by this version of kubeadm.
    Configs that have a "yes" mark in the "MANUAL UPGRADE REQUIRED" column require manual config upgrade or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  7. maven-core/src/site/apt/offline-mode.apt

    ~~ under the License.
    
      ---
      Offline Mode Design
      ---
      John Casey
      ---
      2005-04-08
      ---
    
    Offline Mode Design
    
    * UPDATE: 18-April-2005
    
      We cannot take the approach outlined below of detecting which remote
      repositories are "really" offline, since offline mode is more of a behavior,
      and this will lead to counter-intuitive results. A different feature may exist
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    [[sec:cpp_application_conventions]]
    == Conventions
    
    The {cpp} Application Plugin adds conventions for sources and tasks, shown below.
    
    [[sec:cpp_application_layout]]
    === Project layout
    
    The {cpp} Application Plugin assumes the project layout shown below.
    None of these directories need to exist or have anything in them.
    The {cpp} Application Plugin will compile whatever it finds and ignore anything missing.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    [[sec:swift_application_conventions]]
    == Conventions
    
    The Swift Application Plugin adds conventions for sources and tasks, shown below.
    
    [[sec:swift_application_layout]]
    === Project layout
    
    The Swift Application Plugin assumes the project layout shown below.
    None of these directories need to exist or have anything in them.
    The Swift Application Plugin will compile whatever it finds and ignore anything missing.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    [[sec:swift_library_conventions]]
    == Conventions
    
    The Swift Library Plugin adds conventions for sources and tasks, shown below.
    
    [[sec:swift_library_layout]]
    === Project layout
    
    The Swift Library Plugin assumes the project layout shown below.
    None of these directories needs to exist or have anything in them.
    The Swift Library Plugin will compile whatever it finds and ignore anything missing.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
Back to top