Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 363 for fdct (0.05 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    	PackageVetx               map[string]string // maps package path to file of fact information
    	VetxOnly                  bool              // run analysis only for facts, not diagnostics
    	VetxOutput                string            // where to write file of fact information
    	SucceedOnTypecheckFailure bool
    }
    
    // Main is the main function of a vet-like analysis tool that must be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeJsonLogToCode.groovy

            "shake",
            "grain",
            "root",
            "rain",
            "cover",
            "crib",
            "lunchroom",
            "sort",
            "building",
            "fact",
            "grass",
            "planes",
            "stove",
            "pull",
            "calculator",
            "suggestion",
            "beginner",
            "plough",
            "insurance",
            "hat",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/utils/InstrumentationClasspathMerger.java

                .map(ClassPathTransformedArtifact::ofTransformedArtifact)
                // We sort based on the original classpath to we keep the original order,
                // we also rely on the fact that for ordered streams `sorted()` method has stable sort.
                .sorted((first, second) -> ordering.compare(first.originalIdentifier, second.originalIdentifier))
                .map(artifact -> artifact.file)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 19:11:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemLocationProperty.java

         *
         * @since 5.6
         */
        Provider<T> getLocationOnly();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 12:28:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64latelower.rules

    (ADDSconstflags [c] x) && !isARM64addcon(c)  => (ADDSflags x (MOVDconst [c]))
    
    // These rules remove unneeded sign/zero extensions.
    // They occur in late lower because they rely on the fact
    // that their arguments don't get rewritten to a non-extended opcode instead.
    
    // Boolean-generating instructions (NOTE: NOT all boolean Values) always
    // zero upper bit of the register; no need to zero-extend
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/AbstractTestLogger.java

            TestDescriptor current = descriptor;
            while (current != null) {
                if (isAtomicTestWithNoTestClassInAncestorDescriptors(current)) {
                    // This deals with the fact that in TestNG, there are no class-level events,
                    // but we nevertheless want to see the class name. We use "." rather than
                    // " > " as a separator to make it clear that the class is not a separate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. src/runtime/tracetime.go

    // many cases.
    //
    // This makes absolute values of timestamp diffs smaller, and so they are
    // encoded in fewer bytes.
    //
    // The target resolution in all cases is 64 nanoseconds.
    // This is based on the fact that fundamentally the execution tracer won't emit
    // events more frequently than roughly every 200 ns or so, because that's roughly
    // how long it takes to call through the scheduler.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/platform/android/AndroidSocketAdapter.kt

    /**
     * Modern reflection based SocketAdapter for Conscrypt class SSLSockets.
     *
     * This is used directly for providers where class name is known e.g. the Google Play Provider
     * but we can't compile directly against it, or in fact reliably know if it is registered and
     * on classpath.
     */
    open class AndroidSocketAdapter(private val sslSocketClass: Class<in SSLSocket>) : SocketAdapter {
      private val setUseSessionTickets: Method =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. maven-core/src/site/apt/inheritance.apt

           project. Each project should have a distinct artifactId.
    
       - [version] tells maven what release of this artifact we're trying to produce.
           The fact that a project has a distinct pom.xml should indicate a separate
           release cycle that is also distinct to that project, so a concrete version
           declaration is required.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 17:22:19 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_retention.txt

    rm -r vendor
    
    # ...except by 'go mod tidy'.
    go mod tidy
    cmp go.mod go.mod.tidy
    
    
    # A missing "go" version directive should be added.
    # However, that should not remove other redundant requirements.
    # In fact, it may *add* redundant requirements due to activating lazy loading.
    cp go.mod.nogo go.mod
    go list -mod=mod all
    cmpenv go.mod go.mod.addedgo
    
    
    -- go.mod.tidy --
    module m
    
    go 1.14
    
    require (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 18:41:57 UTC 2021
    - 3K bytes
    - Viewed (0)
Back to top