Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 515 for Packaged (0.4 sec)

  1. src/runtime/mgc.go

    // unfortunate idea that had an even more unfortunate implementation.
    // Every time a new Go release happened, the package stopped building,
    // and the authors had to add a new file with a new //go:build line, and
    // then the entire ecosystem of packages with that as a dependency had to
    // explicitly update to the new version. Many packages depend on
    // assume-no-moving-gc transitively, through paths like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. src/time/time.go

    func (t Time) Clock() (hour, min, sec int) {
    	return absClock(t.abs())
    }
    
    // absClock is like clock but operates on an absolute time.
    //
    // absClock should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/phuslu/log
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname absClock
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserProfileTest.groovy

        <version>version-one</version>
        <packaging>\${package.type}</packaging>
    
        <profiles>
            <profile>
                <id>profile-1</id>
                <activation>
                    <activeByDefault>true</activeByDefault>
                </activation>
                <properties>
                    <package.type>war</package.type>
                </properties>
            </profile>
        </profiles>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    // of this function.
    func newobject(typ *_type) unsafe.Pointer {
    	return mallocgc(typ.Size_, typ, true)
    }
    
    // reflect_unsafe_New is meant for package reflect,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - gitee.com/quant1x/gox
    //   - github.com/goccy/json
    //   - github.com/modern-go/reflect2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/crypto/tls/common.go

    	// Deprecated: SSLv3 is cryptographically broken, and is no longer
    	// supported by this package. See golang.org/issue/32716.
    	VersionSSL30 = 0x0300
    )
    
    // VersionName returns the name for the provided TLS version number
    // (e.g. "TLS 1.3"), or a fallback representation of the value if the
    // version is not implemented by this package.
    func VersionName(version uint16) string {
    	switch version {
    	case VersionSSL30:
    		return "SSLv3"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    //   - eliminate DW_CLS_ if not used
    //   - package info in compilation units
    //   - assign types to their packages
    //   - gdb uses c syntax, meaning clumsy quoting is needed for go identifiers. eg
    //     ptype struct '[]uint8' and qualifiers need to be quoted away
    //   - file:line info for variables
    //   - make strings a typedef so prettyprinters can see the underlying string type
    
    package ld
    
    import (
    	"cmd/internal/dwarf"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/x-cdlink",
    				"application/x-chat",
    				"application/x-chess-pgn",
    				"application/x-chrome-package",
    				"application/x-compress",
    				"application/x-corelpresentations",
    				"application/x-cpio",
    				"application/x-csh",
    				"application/x-debian-package",
    				"application/x-dex",
    				"application/x-director",
    				"application/x-doom",
    				"application/x-dtbncx+xml",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  8. src/go/parser/parser.go

    	if p.errors.Len() != 0 {
    		return nil
    	}
    
    	// package clause
    	doc := p.leadComment
    	pos := p.expect(token.PACKAGE)
    	// Go spec: The package clause is not a declaration;
    	// the package name does not appear in any scope.
    	ident := p.parseIdent()
    	if ident.Name == "_" && p.mode&DeclarationErrors != 0 {
    		p.error(p.pos, "invalid package name _")
    	}
    	p.expectSemi()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    # method name containing spaces
    gradle test --tests "org.gradle.SomeTestClass.some method containing spaces"
    
    # all classes at specific package (recursively)
    gradle test --tests 'all.in.specific.package*'
    
    # specific method at specific package (recursively)
    gradle test --tests 'all.in.specific.package*.someSpecificMethod'
    
    gradle test --tests '*IntegTest'
    
    gradle test --tests '*IntegTest*ui*'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        /** The symbol is available from the local scope and hence cannot be imported or overwritten. */
        LOCAL,
    
        /** Explicitly imported by user. */
        EXPLICIT,
    
        /** Implicitly imported from package. */
        PACKAGE,
    
        /** Explicitly imported by Kotlin default. For example, `kotlin.String`. */
        DEFAULT_EXPLICIT,
    
        /** Star imported (star import) by user. */
        STAR,
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top