Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for gotype (0.15 sec)

  1. src/go/internal/gcimporter/iimport.go

    }
    
    // canReuse reports whether the type rhs on the RHS of the declaration for def
    // may be re-used.
    //
    // Specifically, if def is non-nil and rhs is an interface type with methods, it
    // may not be re-used because we have a convention of setting the receiver type
    // for interface methods to def.
    func canReuse(def *types.Named, rhs types.Type) bool {
    	if def == nil {
    		return true
    	}
    	iface, _ := rhs.(*types.Interface)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. pkg/dns/proto/nds.pb.go

    			default:
    				return nil
    			}
    		}
    	}
    	type x struct{}
    	out := protoimpl.TypeBuilder{
    		File: protoimpl.DescBuilder{
    			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
    			RawDescriptor: file_dns_proto_nds_proto_rawDesc,
    			NumEnums:      0,
    			NumMessages:   3,
    			NumExtensions: 0,
    			NumServices:   0,
    		},
    		GoTypes:           file_dns_proto_nds_proto_goTypes,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

            ProviderInternal<? extends Iterable<? extends T>> p = Providers.internal(provider);
            if (p.getType() != null && !Iterable.class.isAssignableFrom(p.getType())) {
                throw new IllegalArgumentException(String.format("Cannot set the value of a property of type %s using a provider of type %s.", collectionType.getName(), p.getType().getName()));
            }
            if (p instanceof CollectionPropertyInternal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/Hashing.java

             * CRC32C to Checksum. This may carry some performance cost
             * (https://stackoverflow.com/a/22321671/28465), but I'd have to benchmark more carefully to
             * even detect it.
             */
            return MethodHandles.lookup()
                .findConstructor(clazz, methodType(void.class))
                .asType(methodType(Checksum.class));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: %[[COMPARE:.*]] = mhlo.compare GE, %[[ARG1]], %[[ARG3]], NOTYPE : (tensor<i64>, tensor<i64>) -> tensor<i1>
      // CHECK:  %[[RESULT1:.*]] = mhlo.select %[[COMPARE]], %[[ARG1]], %[[ARG3]] : tensor<i1>, tensor<i64>
      // CHECK: %[[COMPARE_EQ:.*]] = mhlo.compare EQ, %[[ARG1]], %[[ARG3]], NOTYPE : (tensor<i64>, tensor<i64>) -> tensor<i1>
      // CHECK:  %[[MIN:.*]] = mhlo.minimum %[[ARG2]], %[[ARG4]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  6. pkg/zdsapi/zds.pb.go

    		return x.SnapshotSent
    	}
    	return nil
    }
    
    type isWorkloadRequest_Payload interface {
    	isWorkloadRequest_Payload()
    }
    
    type WorkloadRequest_Add struct {
    	Add *AddWorkload `protobuf:"bytes,1,opt,name=add,proto3,oneof"`
    }
    
    type WorkloadRequest_Keep struct {
    	Keep *KeepWorkload `protobuf:"bytes,5,opt,name=keep,proto3,oneof"`
    }
    
    type WorkloadRequest_Del struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. pkg/workloadapi/security/authorization.pb.go

    	}
    	return nil
    }
    
    type isStringMatch_MatchType interface {
    	isStringMatch_MatchType()
    }
    
    type StringMatch_Exact struct {
    	// exact string match
    	Exact string `protobuf:"bytes,1,opt,name=exact,proto3,oneof"`
    }
    
    type StringMatch_Prefix struct {
    	// prefix-based match
    	Prefix string `protobuf:"bytes,2,opt,name=prefix,proto3,oneof"`
    }
    
    type StringMatch_Suffix struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. pkg/test/echo/proto/echo.pb.go

    			default:
    				return nil
    			}
    		}
    	}
    	type x struct{}
    	out := protoimpl.TypeBuilder{
    		File: protoimpl.DescBuilder{
    			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
    			RawDescriptor: file_test_echo_proto_echo_proto_rawDesc,
    			NumEnums:      1,
    			NumMessages:   7,
    			NumExtensions: 0,
    			NumServices:   1,
    		},
    		GoTypes:           file_test_echo_proto_echo_proto_goTypes,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  9. src/runtime/symtab.go

    	hasmain uint8 // 1 if module contains the main function, 0 otherwise
    	bad     bool  // module failed to load and should be ignored
    
    	gcdatamask, gcbssmask bitvector
    
    	typemap map[typeOff]*_type // offset to *_rtype in previous module
    
    	next *moduledata
    }
    
    // A modulehash is used to compare the ABI of a new module or a
    // package in a new module with the loaded program.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  10. src/reflect/value.go

    // As in Go, x's value must be assignable to the channel's element type.
    func (v Value) TrySend(x Value) bool {
    	v.mustBe(Chan)
    	v.mustBeExported()
    	return v.send(x, true)
    }
    
    // Type returns v's type.
    func (v Value) Type() Type {
    	if v.flag != 0 && v.flag&flagMethod == 0 {
    		return (*rtype)(noescape(unsafe.Pointer(v.typ_))) // inline of toRType(v.typ()), for own inlining in inline test
    	}
    	return v.typeSlow()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top