Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for Unnamed (0.23 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})}
    	}).Interface().(func() T)
    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)
  8. src/cmd/go/alldocs.go

    //
    // Version prints the build information for Go binary files.
    //
    // Go version reports the Go version used to build each of the named files.
    //
    // If no files are named on the command line, go version prints its own
    // version information.
    //
    // If a directory is named, go version walks that directory, recursively,
    // looking for recognized Go binaries and reporting their versions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    		p.Internal.Gccgoflags = BuildGccgoflags.For(p)
    	}
    }
    
    // GoFilesPackage creates a package for building a collection of Go files
    // (typically named on the command line). The target is named p.a for
    // package p or named after the first Go file for package main.
    func GoFilesPackage(ctx context.Context, opts PackageOpts, gofiles []string) *Package {
    	modload.Init()
    
    	for _, f := range gofiles {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    	// arguments.
    	Value any
    }
    
    // Named provides a more concise way to create [NamedArg] values.
    //
    // Example usage:
    //
    //	db.ExecContext(ctx, `
    //	    delete from Invoice
    //	    where
    //	        TimeCreated < @end
    //	        and TimeCreated >= @start;`,
    //	    sql.Named("start", startTime),
    //	    sql.Named("end", endTime),
    //	)
    func Named(name string, value any) NamedArg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top