Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 314 for mixer (0.04 sec)

  1. src/go/doc/testdata/g.1.golden

    // The package g is a go/doc test for mixed exported/unexported ...
    PACKAGE g
    
    IMPORTPATH
    	testdata/g
    
    FILENAMES
    	testdata/g.go
    
    CONSTANTS
    	// 
    	const (
    		A, b	= iota, iota
    		c, D
    		E, f
    		G, H
    	)
    
    
    VARIABLES
    	// 
    	var (
    		c1, C2, c3	= 1, 2, 3
    		C4, c5, C6	= 4, 5, 6
    		c7, C8, c9	= 7, 8, 9
    		xx, yy, zz	= 0, 0, 0	// all unexported and hidden
    	)
    
    	// 
    	var (
    		x, X	= f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:29:17 UTC 2018
    - 388 bytes
    - Viewed (0)
  2. src/cmd/gofmt/testdata/typealias.golden

    import "p"
    
    type _ = int
    type a = struct{ x int }
    type b = p.B
    
    type (
    	_  = chan<- int
    	aa = interface{}
    	bb = p.BB
    )
    
    // TODO(gri) We may want to put the '=' into a separate column if
    // we have mixed (regular and alias) type declarations in a group.
    type (
    	_   chan<- int
    	_   = chan<- int
    	aa0 interface{}
    	aaa = interface{}
    	bb0 p.BB
    	bbb = p.BB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 10 00:09:48 UTC 2017
    - 365 bytes
    - Viewed (0)
  3. src/unicode/example_test.go

    // Functions starting with "Is" can be used to inspect which table of range a
    // rune belongs to. Note that runes may fit into more than one range.
    func Example_is() {
    
    	// constant with mixed type runes
    	const mixed = "\b5Ὂg̀9! ℃ᾭG"
    	for _, c := range mixed {
    		fmt.Printf("For %q:\n", c)
    		if unicode.IsControl(c) {
    			fmt.Println("\tis control rune")
    		}
    		if unicode.IsDigit(c) {
    			fmt.Println("\tis digit rune")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 00:18:29 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  4. pkg/api/v1/endpoints/util_test.go

    			}},
    			expect: []v1.EndpointSubset{{
    				Addresses: []v1.EndpointAddress{{IP: "1.2.3.4"}, {IP: "5.6.7.8"}},
    				Ports:     []v1.EndpointPort{{Port: 111}},
    			}},
    		}, {
    			name: "one set, two mixed ips, one port",
    			given: []v1.EndpointSubset{{
    				Addresses:         []v1.EndpointAddress{{IP: "1.2.3.4"}},
    				NotReadyAddresses: []v1.EndpointAddress{{IP: "5.6.7.8"}},
    				Ports:             []v1.EndpointPort{{Port: 111}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  5. src/go/doc/testdata/g.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.
    
    // The package g is a go/doc test for mixed exported/unexported values.
    package g
    
    const (
    	A, b = iota, iota
    	c, D
    	E, f
    	G, H
    )
    
    var (
    	c1, C2, c3 = 1, 2, 3
    	C4, c5, C6 = 4, 5, 6
    	c7, C8, c9 = 7, 8, 9
    	xx, yy, zz = 0, 0, 0 // all unexported and hidden
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:29:17 UTC 2018
    - 449 bytes
    - Viewed (0)
  6. test/fixedbugs/bug501.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Gccgo got a compiler crash compiling the addition of more than five
    // strings with mixed constants and variables.
    
    package main
    
    func F(s string) (string, error) {
    	return s, nil
    }
    
    func G(a, b, c string) (string, error) {
    	return F("a" + a + "b" + b + "c" + c)
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 07 21:55:00 UTC 2016
    - 519 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/tests/verify-tfxla-legalization-no-chlo.mlir

    // Tests the VerifyTFXLALegalization Pass, that just ensures we don't have
    // any illegal ops at the end of the pipeline. This runs with
    // legalize-chlo=false since errors can't be mixed with the legalize-chlo=True
    // version.
    
    // CHECK-LABEL: allows_chlo
    func.func @allows_chlo(%arg0: tensor<1x32x10x32xi32>, %arg1: tensor<32xi32>) -> tensor<1x32x10x32xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 22:07:53 UTC 2024
    - 694 bytes
    - Viewed (0)
  8. prow/config/mixedlb-service.yaml

    # This configs KinD to spin up a k8s cluster with mixed protocol LB support
    # This should be used to create K8s clusters with versions >= 1.20
    kind: Cluster
    apiVersion: kind.x-k8s.io/v1alpha4
    featureGates:
      MixedProtocolLBService: true
      EndpointSlice: true
    kubeadmConfigPatches:
      - |
        kind: ClusterConfiguration
        metadata:
          name: config
        etcd:
          local:
            # Run etcd in a tmpfs (in RAM) for performance improvements
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 02 18:38:35 UTC 2023
    - 801 bytes
    - Viewed (0)
  9. src/go/doc/testdata/g.2.golden

    // The package g is a go/doc test for mixed exported/unexported ...
    PACKAGE g
    
    IMPORTPATH
    	testdata/g
    
    FILENAMES
    	testdata/g.go
    
    CONSTANTS
    	// 
    	const (
    		A, _	= iota, iota
    		_, D
    		E, _
    		G, H
    	)
    
    
    VARIABLES
    	// 
    	var (
    		_, C2, _	= 1, 2, 3
    		C4, _, C6	= 4, 5, 6
    		_, C8, _	= 7, 8, 9
    	)
    
    	// 
    	var (
    		_, X = f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:29:17 UTC 2018
    - 318 bytes
    - Viewed (0)
  10. test/fixedbugs/bug388.go

    // license that can be found in the LICENSE file.
    
    // Issue 2231
    
    package main
    import "runtime"
    
    func foo(runtime.UintType, i int) {  // ERROR "cannot declare name runtime.UintType|mixed named and unnamed|undefined identifier"
    	println(i, runtime.UintType) // GCCGO_ERROR "undefined identifier"
    }
    
    func qux() {
    	var main.i	// ERROR "unexpected [.]|expected type"
    	println(main.i)
    }
    
    func corge() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 636 bytes
    - Viewed (0)
Back to top