Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for notes (0.38 sec)

  1. src/cmd/go/testdata/script/goroot_executable_trimpath.txt

    ! stderr 'GOPATH set to GOROOT'
    
    # Cross-compiled binaries in cmd are installed to a ${GOOS}_${GOARCH} subdirectory,
    # so we also want to try a copy there.
    # (Note that the script engine's 'exec' engine already works around
    # https://go.dev/issue/22315, so we don't have to do that explicitly in the
    # 'check' program we use later.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneFirDirectInheritorsProvider.kt

            // with the dangling FIR class for `ktClass`, resulting in a mismatch. To avoid such incompatible comparisons, we need to resolve
            // `ktClass` to the original FIR class.
            //
            // Note that this means we don't support providing inheritors based on the dangling file yet, for example if an inheritor was added
            // or removed only in the dangling file.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/TestScopeRenderer.kt

     * Scope tests should not forget checking contained names, as they're a public part of the [KaScope] API.
     *
     * Note: Many scopes wouldn't work correctly if the contained name sets were broken, as these names are often the basis for the search.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. architecture/platforms.md

    <!-- 
      -- Note: this file contains a generated diagram. Use `./gradlew :architectureDoc` to generate 
      -->
    
    # Gradle platform architecture
    
    Gradle is arranged into coarse-grained components called "architecture modules" and "platforms".
    See [ADR4](standards/0004-use-a-platform-architecture.md) for a definition of these terms.
    
    The diagram below shows the current set of architecture modules and platforms:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/modules.txt

    ## explicit; go 1.18
    golang.org/x/mod/internal/lazyregexp
    golang.org/x/mod/modfile
    golang.org/x/mod/module
    golang.org/x/mod/semver
    golang.org/x/mod/sumdb
    golang.org/x/mod/sumdb/dirhash
    golang.org/x/mod/sumdb/note
    golang.org/x/mod/sumdb/tlog
    golang.org/x/mod/zip
    # golang.org/x/sync v0.7.0
    ## explicit; go 1.18
    golang.org/x/sync/errgroup
    golang.org/x/sync/semaphore
    # golang.org/x/sys v0.21.0
    ## explicit; go 1.18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_cache_inputs.txt

    	}
    }
    
    func TestDirList(t *testing.T) {
    	f, err := os.Open(".")
    	if err != nil {
    		t.Fatal(err)
    	}
    	f.Readdirnames(-1)
    	f.Close()
    }
    
    func TestExec(t *testing.T) {
    	// Note: not using os/exec to make sure there is no unexpected stat.
    	p, err := os.StartProcess("./script.sh", []string{"script"}, new(os.ProcAttr))
    	if err != nil {
    		t.Fatal(err)
    	}
    	ps, err := p.Wait()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 22:23:53 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/TransformedProjectArtifactSetCodec.kt

            return decodePreservingSharedIdentity {
                val targetVariant = readNonNull<ComponentVariantIdentifier>()
                val nodes: List<TransformStepNode> = readList().uncheckedCast()
                TransformedProjectArtifactSet(targetVariant, nodes)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/util/LibraryUtils.kt

         *
         * Note that, if [CoreJarFileSystem] is not given, a fresh instance will be used, which will create fresh instances of [VirtualFile],
         *   resulting in potential hash mismatch (e.g., if used in scope membership check).
         *
         * By default, given [jar], the root, will be included. Pass [includeRoot = false] if not needed.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheHost.kt

            override val scheduledWork: ScheduledWork
                get() {
                    lateinit var work: ScheduledWork
                    gradle.taskGraph.visitScheduledNodes { nodes, entryNodes -> work = ScheduledWork(nodes, entryNodes) }
                    return work
                }
        }
    
        private
        inner class DefaultConfigurationCacheBuild(
            override val state: BuildState,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/RichReportScrapper.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package gradlebuild.binarycompatibility
    
    import org.jsoup.Jsoup
    import org.jsoup.nodes.Document
    import java.io.File
    
    
    internal
    fun scrapeRichReport(richReportFile: File): RichReport =
    
        Jsoup.parse(richReportFile, "UTF-8").run {
            RichReport(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 21 16:02:23 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top