Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for chanbuf (0.08 sec)

  1. test/fixedbugs/bug222.dir/chanbug2.go

    // Copyright 2009 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 Bar
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 193 bytes
    - Viewed (0)
  2. test/typeparam/mdempsky/17.go

    func RangeArrayIface[V iface]() (k any, v iface) {
    	for k, v = range [...]V{zero[V]()} {
    	}
    	return
    }
    
    func RangeChanAny[V any]() (v any) {
    	for v = range chanOf(zero[V]()) {
    	}
    	return
    }
    
    func RangeChanIface[V iface]() (v iface) {
    	for v = range chanOf(zero[V]()) {
    	}
    	return
    }
    
    func RangeMapAny[K comparable, V any]() (k, v any) {
    	for k, v = range map[K]V{zero[K](): zero[V]()} {
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 10 21:35:49 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/JsonModelWriter.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.problems
    
    import org.apache.groovy.json.internal.CharBuf
    import org.gradle.api.internal.DocumentationRegistry
    import org.gradle.internal.configuration.problems.documentationLinkFor
    import org.gradle.internal.configuration.problems.DecoratedFailure
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top