Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for therefore (0.32 sec)

  1. src/index/suffixarray/sais2.go

    	// Either way, the insertion (into the text[j-1] bucket) is guaranteed to
    	// happen at sa[i´] for some i´ > i, that is, in the portion of sa we have
    	// yet to scan. A single pass therefore sees indexes j, j-1, j-2, j-3,
    	// and so on, in sorted but not necessarily adjacent order, until it finds
    	// one preceded by an index of type S, at which point it must stop.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      // be used before the dynamic initialization stage.  Therefore we
      // must be able to initialize a static mutex object at link time.
      // This means MutexBase has to be a POD and its member variables
      // have to be public.
     public:
      pthread_mutex_t mutex_;  // The underlying pthread mutex.
      // has_owner_ indicates whether the owner_ field below contains a valid thread
      // ID and is therefore safe to inspect (e.g., to use in pthread_equal()). All
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      // be used before the dynamic initialization stage.  Therefore we
      // must be able to initialize a static mutex object at link time.
      // This means MutexBase has to be a POD and its member variables
      // have to be public.
     public:
      pthread_mutex_t mutex_;  // The underlying pthread mutex.
      // has_owner_ indicates whether the owner_ field below contains a valid thread
      // ID and is therefore safe to inspect (e.g., to use in pthread_equal()). All
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    ----
    
    this means that Gradle will verify the signatures and fallback to SHA-256 checksums when there's a problem.
    
    When bootstrapping, Gradle performs _optimistic verification_ and therefore assumes a sane build environment.
    It will therefore:
    
    - automatically add the trusted keys as soon as verification passes
    - automatically add ignored keys for keys which couldn't be downloaded from public key servers.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

        def "virtual platform missing modules are cached across builds"() {
            // Disable daemon, so that the second run executes with the file cache
            // and therefore make sure that we read the "missing" status from disk
            executer.withArgument('--no-daemon')
    
            repository {
                path 'xml -> core'
                path 'json -> core'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			// a conflict and is faster.
    			//
    			// We could return an error here and rely on
    			// backoff+retry, but scheduling attempts are expensive
    			// and the backoff delay would cause a (small)
    			// slowdown. Therefore we fall back to SSA here if needed.
    			//
    			// Using SSA instead of Get+Update has the advantage that
    			// there is no delay for the Get. SSA is safe because only
    			// the scheduler updates these fields.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    			// The result of any version query for a given module — even "upgrade" or
    			// "patch" — is always relative to the build list at the start of
    			// the 'go get' command, not an intermediate state, and is therefore
    			// deterministic and therefore cacheable, and the constraints on the
    			// selected version of each module can only narrow as we iterate.
    			//
    			// "all" is functionally very similar to a wildcard pattern. The set of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller.go

    	shouldBind := false
    	if volume.Name != claim.Spec.VolumeName {
    		shouldBind = true
    	}
    
    	// The claim from method args can be pointing to watcher cache. We must not
    	// modify these, therefore create a copy.
    	claimClone := claim.DeepCopy()
    
    	if shouldBind {
    		dirty = true
    		// Bind the claim to the volume
    		claimClone.Spec.VolumeName = volume.Name
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    As part of incremental build, Gradle tests whether any of the task inputs or outputs has changed since the last build. If they haven’t, Gradle can consider the task up to date and therefore skip executing its actions. Also note that incremental build won’t work unless a task has at least one task output, although tasks usually have at least one input as well.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  10. src/time/time.go

    //
    // Representations of a Time value saved by the [Time.GobEncode], [Time.MarshalBinary],
    // [Time.MarshalJSON], and [Time.MarshalText] methods store the [Time.Location]'s offset, but not
    // the location name. They therefore lose information about Daylight Saving Time.
    //
    // In addition to the required “wall clock” reading, a Time may contain an optional
    // reading of the current process's monotonic clock, to provide additional precision
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top