Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 119 for WEIRD (0.05 sec)

  1. src/go/doc/comment/testdata/list10.txt

    -- input --
    
    	1. This list
    	2. Starts the comment
    	3. And also has a blank line before it.
    
    All of which is a little weird.
    -- gofmt --
     1. This list
     2. Starts the comment
     3. And also has a blank line before it.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 20:47:52 UTC 2022
    - 247 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/base/link.go

    // The linker uses the magic symbol prefixes "go:" and "type:".
    // Avoid potential confusion between import paths and symbols
    // by rejecting these reserved imports for now. Also, people
    // "can do weird things in GOPATH and we'd prefer they didn't
    // do _that_ weird thing" (per rsc). See also #4257.
    var ReservedImports = map[string]bool{
    	"go":   true,
    	"type": true,
    }
    
    var Ctxt *obj.Link
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/testdata/mangle/plugin.go

    // license that can be found in the LICENSE file.
    
    // Test cases for symbol name mangling.
    
    package main
    
    import (
    	"fmt"
    	"strings"
    )
    
    // Issue 58800:
    // Instantiated function name may contain weird characters
    // that confuse the external linker, so it needs to be
    // mangled.
    type S struct {
    	X int `parser:"|@@)"`
    }
    
    //go:noinline
    func F[T any]() {}
    
    func P() {
    	F[S]()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 18 15:53:47 UTC 2023
    - 722 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/WithOldConfigurationsSupport.groovy

    @SelfType(ToolingApiSpecification)
    trait WithOldConfigurationsSupport {
        private static final GradleVersion V6_9 = GradleVersion.version("6.9")
    
        private GradleVersion baseVersion() {
            // This weird dance is because of the `GradleVersion` comes from a different classloader
            GradleVersion.version(targetDist.version.baseVersion.version)
        }
    
        String getImplementationConfiguration() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/DisambiguateArtifactTransformIntegrationTest.groovy

        artifactTypes.getByName("jar") {
            attributes.attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, "weird"))
        }
    
        if ($apiFirst) {
            registerTransform(Identity) {
                from.attribute(artifactType, 'jar')
                from.attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, "weird"))
                to.attribute(artifactType, 'jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ScriptExecuter.groovy

        ExecHandle build() {
            if (OperatingSystem.current().isWindows()) {
                def theArgs = ['/d', '/c', executable.replace('/', File.separator)] + getArgs()
                setArgs(theArgs) //split purposefully to avoid weird windows CI issue
                executable = 'cmd.exe'
            } else {
                executable = "${workingDir}/${executable}"
            }
            builder.environment("JAVA_HOME", System.getProperty("java.home"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. src/os/exec/env_test.go

    			in:     []string{"k1=v1", "K1=V2", "k1=v3"},
    			want:   []string{"K1=V2", "k1=v3"},
    		},
    		{
    			in:   []string{"=a", "=b", "foo", "bar"},
    			want: []string{"=b", "foo", "bar"},
    		},
    		{
    			// #49886: preserve weird Windows keys with leading "=" signs.
    			noCase: true,
    			in:     []string{`=C:=C:\golang`, `=D:=D:\tmp`, `=D:=D:\`},
    			want:   []string{`=C:=C:\golang`, `=D:=D:\`},
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 01:23:16 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_patchcycle.txt

    # If a patch of a module requires a higher version of itself,
    # it should be reported as its own conflict.
    #
    # This case is weird and unlikely to occur often at all, but it should not
    # spuriously succeed.
    # (It used to print v0.1.1 but then silently upgrade to v0.2.0.)
    
    ! go get example.net/a@patch
    stderr '^go: example.net/a@patch \(v0.1.1\) indirectly requires example.net/a@v0.2.0, not example.net/a@patch \(v0.1.1\)$'  # TODO: A mention of b v0.1.0 would be nice.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/net/HttpHeadersTest.java

     *
     * @author Kurt Alfred Kluever
     */
    public class HttpHeadersTest extends TestCase {
    
      public void testConstantNameMatchesString() throws Exception {
        // Special case some of the weird HTTP Header names...
        ImmutableBiMap<String, String> specialCases =
            ImmutableBiMap.<String, String>builder()
                .put("CDN_LOOP", "CDN-Loop")
                .put("ETAG", "ETag")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:08:08 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java

          value.updateTimestamp();
          return value.getValue();
        } else {
          statsCounter.recordEviction();
          statsCounter.recordMisses(1);
          // `key` was in the cache, so it's a K.
          // (Or it's a weird case like a LinkedList in a Cache<ArrayList, ...>, but *shrug*.)
          @SuppressWarnings("unchecked")
          K castKey = (K) key;
          alertListenerIfPresent(castKey, value.getValue(), RemovalCause.EXPIRED);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top