Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for OptV3 (0.02 sec)

  1. src/cmd/go/testdata/mod/rsc.io_quote_v3_v3.0.0.txt

    }
    
    // Go returns a Go proverb.
    func GoV3() string {
    	return "Don't communicate by sharing memory, share memory by communicating."
    }
    
    // Opt returns an optimization truth.
    func OptV3() string {
    	// Wisdom from ken.
    	return "If a program is too slow, it must have a loop."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180709162918-a91498bed0a7.txt

    	return quote.GlassV3()
    }
    
    // Go returns a Go proverb.
    func Go() string {
    	return quote.GoV3()
    }
    
    // Opt returns an optimization truth.
    func Opt() string {
    	// Wisdom from ken.
    	return quote.OptV3()
    }
    -- quote_test.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package quote
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180710144737-5d9f230bcfba.txt

    	return quote.GlassV3()
    }
    
    // Go returns a Go proverb.
    func Go() string {
    	return quote.GoV3()
    }
    
    // Opt returns an optimization truth.
    func Opt() string {
    	// Wisdom from ken.
    	return quote.OptV3()
    }
    -- quote_test.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package quote
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_replace.txt

    	return "I can eat glass and it doesn't hurt me."
    }
    
    // Go returns a REPLACED Go proverb.
    func GoV3() string {
    	return "Concurrency is not parallelism."
    }
    
    // Opt returns a optimization truth.
    func OptV3() string {
    	// Wisdom from ken.
    	return "If a program is too slow, it must have a loop."
    }
    
    -- local/not-rsc.io/quote/v3/go.mod --
    module not-rsc.io/quote/v3
    
    -- local/not-rsc.io/quote/v3/quote.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.7K bytes
    - Viewed (0)
Back to top