Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for unnamed1 (0.2 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    }
    
    // UnnamedType is an unnamed type, that just has an index.
    type UnnamedType struct {
    	Num int
    }
    
    func (ut *UnnamedType) print(ps *printState) {
    	if ps.llvmStyle {
    		if ut.Num == 0 {
    			ps.writeString("'unnamed'")
    		} else {
    			ps.writeString(fmt.Sprintf("'unnamed%d'", ut.Num-1))
    		}
    	} else {
    		ps.writeString(fmt.Sprintf("{unnamed type#%d}", ut.Num+1))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    		},
    		expectedLocalEndpoints: map[types.NamespacedName]int{
    			makeNSN("ns4", "ep4"): 1,
    		},
    	}, {
    		// Case[14]: change from 0 endpoint address to 1 unnamed port
    		name:              "change from 0 endpoint address to 1 unnamed port",
    		previousEndpoints: emptyEndpointSlices,
    		currentEndpoints:  namedPort,
    		oldEndpoints:      map[proxy.ServicePortName][]endpointExpectation{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          mlir::vhlo::PadOpV1 pad_op, const std::vector<int32_t>& operands,
          const std::vector<int32_t>& results,
          mlir::VhloToStablehloTypeConverter& vhlo_type_converter);
    
      // create a subgraph given a unnamed mlir region, return the corresponding
      // subgraph index
      int32_t UnnamedRegionToSubgraph(mlir::Region* region,
                                      tflite::BuiltinOperator op_code);
    
      ModuleOp module_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    var accessor = meta.NewAccessor()
    var namer runtime.Namer = accessor
    var admissionControl admission.Interface
    
    func init() {
    	metav1.AddToGroupVersion(scheme, metav1.SchemeGroupVersion)
    
    	// unnamed core group
    	scheme.AddUnversionedTypes(grouplessGroupVersion, &metav1.Status{})
    	metav1.AddToGroupVersion(scheme, grouplessGroupVersion)
    
    	utilruntime.Must(example.AddToScheme(scheme))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  5. src/reflect/value.go

    // Bytes returns v's underlying value.
    // It panics if v's underlying value is not a slice of bytes or
    // an addressable array of bytes.
    func (v Value) Bytes() []byte {
    	// bytesSlow is split out to keep Bytes inlineable for unnamed []byte.
    	if v.typ_ == bytesType { // ok to use v.typ_ directly as comparison doesn't cause escape
    		return *(*[]byte)(v.ptr)
    	}
    	return v.bytesSlow()
    }
    
    func (v Value) bytesSlow() []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    	var h func() <-chan int
    	h = MakeFunc(TypeOf(h), func([]Value) []Value {
    		return []Value{ValueOf(make(chan int))}
    	}).Interface().(func() <-chan int)
    	h()
    
    	// Unnamed types should be promotable to named types.
    	type T struct{ a, b, c int }
    	var i func() T
    	i = MakeFunc(TypeOf(i), func([]Value) []Value {
    		return []Value{ValueOf(struct{ a, b, c int }{a: 1, b: 2, c: 3})}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    must be <a href="#Uniqueness_of_identifiers">unique</a>.
    If absent, each type stands for one item of that type.
    Parameter and result
    lists are always parenthesized except that if there is exactly
    one unnamed result it may be written as an unparenthesized type.
    </p>
    
    <p>
    The final incoming parameter in a function signature may have
    a type prefixed with <code>...</code>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top