Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,901 for know (0.05 sec)

  1. pkg/util/coverage/fake_test_deps.go

    //nolint:unused // U1000 see comment above, we know it's unused normally.
    func (fakeTestDeps) StartCPUProfile(io.Writer) error {
    	return nil
    }
    
    //nolint:unused // U1000 see comment above, we know it's unused normally.
    func (fakeTestDeps) StopCPUProfile() {}
    
    //nolint:unused // U1000 see comment above, we know it's unused normally.
    func (fakeTestDeps) StartTestLog(io.Writer) {}
    
    //nolint:unused // U1000 see comment above, we know it's unused normally.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 15:31:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/go/doc/comment/testdata/linklist.txt

    {"DocLinkBaseURL": "https://pkg.go.dev"}
    -- input --
    Did you know?
    
      - [encoding/json.Marshal] is a doc link. So is [encoding/json.Unmarshal].
    -- text --
    Did you know?
    
      - encoding/json.Marshal is a doc link. So is encoding/json.Unmarshal.
    -- markdown --
    Did you know?
    
      - [encoding/json.Marshal](https://pkg.go.dev/encoding/json#Marshal) is a doc link. So is [encoding/json.Unmarshal](https://pkg.go.dev/encoding/json#Unmarshal).
    -- html --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 21:57:02 UTC 2022
    - 657 bytes
    - Viewed (0)
  3. src/go/doc/comment/testdata/linklist2.txt

    {"DocLinkBaseURL": "https://pkg.go.dev"}
    -- input --
    Did you know?
    
      - [testing.T] is one doc link.
      - So is [testing.M].
      - So is [testing.B].
        This is the same list paragraph.
    
        There is [testing.PB] in this list item, too!
    -- text --
    Did you know?
    
      - testing.T is one doc link.
    
      - So is testing.M.
    
      - So is testing.B. This is the same list paragraph.
    
        There is testing.PB in this list item, too!
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 21:57:02 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/UnavailablePlatformToolProviderTest.groovy

            def provider = new UnavailablePlatformToolProvider(Stub(OperatingSystemInternal), new ToolChainAvailability().unavailable("don't know how to build this thing"))
    
            expect:
            def formatter = new TreeFormatter()
            provider.explain(formatter)
            formatter.toString() == "don't know how to build this thing"
        }
    
        def "tool lookup returns same failure"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. test/fixedbugs/bug093.go

    type S struct {
    }
    
    func (p *S) M() {
    }
    
    type I interface {
    	M();
    }
    
    func main() {
    	var p *S = nil;
    	var i I = p;  // this should be possible even though p is nil: we still know the type
    	i.M();  // should be possible since we know the type, and don't ever use the receiver
    }
    
    
    /*
    throw: ifaces2i: nil pointer
    SIGSEGV: segmentation violation
    Faulting address: 0x0
    pc: 0x1b7d
    
    0x1b7d?zi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 1.1K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ProcessFixture.groovy

            }
            if (!(OperatingSystem.current().unix || OperatingSystem.current().windows)) {
                throw new RuntimeException("This implementation does not know how to forcefully kill a process on os: " + OperatingSystem.current())
            }
            execute(killArgs(pid, killTree), killScript(pid, killTree))
        }
    
        // Only supported on *nix platforms
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_go_version_missing.txt

    # go.mod file. Otherwise, we don't actually know whether the module was written
    # against Go 1.11 or 1.16. We would have to update the go.mod file to clarify,
    # and as of Go 1.16 we don't update the go.mod file by default.
    #
    # If we set -mod=vendor explicitly, we shouldn't apply the Go 1.14
    # consistency check, because — again — we don't know whether we're in a 1.11
    # module or a bad-script-edited 1.16 module.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    again:--
    
      `I didn't know that Cheshire cats always grinned; in fact, I
    didn't know that cats COULD grin.'
    
      `They all can,' said the Duchess; `and most of 'em do.'
    
      `I don't know of any that do,' Alice said very politely,
    feeling quite pleased to have got into a conversation.
    
      `You don't know much,' said the Duchess; `and that's a fact.'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataCacheEntrySerializer.java

                    encoder.writeBoolean(value.isChanging);
                    encoder.writeLong(value.createTimestamp);
                    break;
                default:
                    throw new IllegalArgumentException("Don't know how to serialize meta-data entry: " + value);
            }
        }
    
        @Override
        public ModuleMetadataCacheEntry read(Decoder decoder) throws Exception {
            byte type = decoder.readByte();
            switch (type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    again:--
    
      `I didn't know that Cheshire cats always grinned; in fact, I
    didn't know that cats COULD grin.'
    
      `They all can,' said the Duchess; `and most of 'em do.'
    
      `I don't know of any that do,' Alice said very politely,
    feeling quite pleased to have got into a conversation.
    
      `You don't know much,' said the Duchess; `and that's a fact.'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
Back to top