Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 873 for fixwd (0.07 sec)

  1. platforms/documentation/docs/src/test/groovy/org/gradle/docs/releasenotes/ReleaseNotesPage.groovy

        static url = new ReleaseNotesTestContext().renderedFile.toURL().toString()
    
        static content = {
            fixedIssuesHeading { $("#fixed-issues") }
            fixedIssuesParagraph { fixedIssuesHeading.next() }
            fixedIssuesListItems { $("ul#fixed-issues-list li") }
            knownIssuesHeading { $("#known-issues") }
            knownIssuesParagraph { knownIssuesHeading.next("p").next("p") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/release-notes.css

    .table-of-contents a {
      color: #02303A;
    }
    
    #fixed-issues-list ul,
    .table-of-contents ul,
    .topic ul {
      list-style-type: none;
    }
    
    #fixed-issues-list li:before,
    .topic ul li:before {
      color: #02303A;
      content: '\002022';
      font: 0.9em bold sans-serif;
      margin-left: -1em;
      margin-right: 0.4em;
    }
    
    li.mainTopic :before {
      color: #02303A;
      content: '\002022';
      font: 0.9em bold sans-serif;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/math/big/arith_decl_pure.go

    }
    
    func addVW(z, x []Word, y Word) (c Word) {
    	// TODO: remove indirect function call when golang.org/issue/30548 is fixed
    	fn := addVW_g
    	if len(z) > 32 {
    		fn = addVWlarge
    	}
    	return fn(z, x, y)
    }
    
    func subVW(z, x []Word, y Word) (c Word) {
    	// TODO: remove indirect function call when golang.org/issue/30548 is fixed
    	fn := subVW_g
    	if len(z) > 32 {
    		fn = subVWlarge
    	}
    	return fn(z, x, y)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/configurationCache/problemsFixed/groovy/settings.gradle

    rootProject.name = 'problems-fixed'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 36 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/configurationCache/projectAtExecutionFixed/groovy/settings.gradle

    rootProject.name = 'project-at-execution-fixed'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 48 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/configurationCache/projectAtExecutionFixed/kotlin/settings.gradle.kts

    rootProject.name = "project-at-execution-fixed"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 48 bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/rate_limiters.go

    	"k8s.io/client-go/util/workqueue"
    )
    
    // FixedItemIntervalRateLimiter limits items to a fixed-rate interval
    type FixedItemIntervalRateLimiter struct {
    	interval time.Duration
    }
    
    var _ workqueue.TypedRateLimiter[string] = &FixedItemIntervalRateLimiter{}
    
    // NewFixedItemIntervalRateLimiter creates a new instance of a RateLimiter using a fixed interval
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/tables.go

    	points [8]projCached
    }
    
    // A precomputed lookup table for fixed-base, constant-time scalar muls.
    type affineLookupTable struct {
    	points [8]affineCached
    }
    
    // A dynamic lookup table for variable-base, variable-time scalar muls.
    type nafLookupTable5 struct {
    	points [8]projCached
    }
    
    // A precomputed lookup table for fixed-base, variable-time scalar muls.
    type nafLookupTable8 struct {
    	points [64]affineCached
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 05 21:02:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-consistentResolution/tests/api-resolution-consistency.sample.conf

    executable: gradle
    args: -PexplicitRule dependencyInsight --configuration runtimeClasspath --dependency groovy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 162 bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Ticker.java

     * the License.
     */
    
    package com.google.common.base;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * A time source; returns a time value representing the number of nanoseconds elapsed since some
     * fixed but arbitrary point in time. Note that most users should use {@link Stopwatch} instead of
     * interacting with this class directly.
     *
     * <p><b>Warning:</b> this interface can only be used to measure elapsed time, not wall time.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 23 23:27:53 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top