Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 229 for emberi (1.51 sec)

  1. src/runtime/string.go

    // Buf is a fixed-size buffer for the result,
    // it is not nil if the result does not escape.
    //
    // slicebytetostring should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/cloudwego/frugal
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname slicebytetostring
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

            /**
             * This method is used from [org.jetbrains.kotlin.backend.jvm.lower.ReflectiveAccessLowering.visitCall]
             * (via generateReflectiveAccessForGetter) and it is called for the private access member lowered to the getter/setter call.
             * If a private property has no getter/setter (the typical situation for simple private properties without explicitly defined
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  3. src/database/sql/convert.go

    }
    
    // convertAssign is the same as convertAssignRows, but without the optional
    // rows argument.
    //
    // convertAssign should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - ariga.io/entcache
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname convertAssign
    func convertAssign(dest, src any) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. src/go/types/typexpr.go

    			if !tset.IsMethodSet() {
    				if tset.comparable {
    					check.softErrorf(e, MisplacedConstraintIface, "cannot use type %s outside a type constraint: interface is (or embeds) comparable", typ)
    				} else {
    					check.softErrorf(e, MisplacedConstraintIface, "cannot use type %s outside a type constraint: interface contains type constraints", typ)
    				}
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/typexpr.go

    			if !tset.IsMethodSet() {
    				if tset.comparable {
    					check.softErrorf(pos, MisplacedConstraintIface, "cannot use type %s outside a type constraint: interface is (or embeds) comparable", typ)
    				} else {
    					check.softErrorf(pos, MisplacedConstraintIface, "cannot use type %s outside a type constraint: interface contains type constraints", typ)
    				}
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    a:hover {
    	cursor: pointer;
    }
    
    img,
    object,
    embed {
    	max-width: 100%;
    	height: auto;
    }
    
    object,
    embed {
    	height: 100%;
    }
    
    img {
    	-ms-interpolation-mode: bicubic;
    }
    
    #map_canvas img,
    #map_canvas embed,
    #map_canvas object,
    .map_canvas img,
    .map_canvas embed,
    .map_canvas object {
    	max-width: none !important;
    }
    
    .left {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/types.go

    // object IS NOT uploaded to the kubeadm-config ConfigMap in the cluster, only the
    // ClusterConfiguration is.
    type InitConfiguration struct {
    	metav1.TypeMeta
    
    	// ClusterConfiguration holds the cluster-wide information, and embeds that struct (which can be (un)marshalled separately as well)
    	// When InitConfiguration is marshalled to bytes in the external version, this information IS NOT preserved (which can be seen from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "SelectN", argLength: 1, aux: "Int64"},     // arg0=result, auxint=field index.  Returns the auxint'th member.
    	{name: "SelectNAddr", argLength: 1, aux: "Int64"}, // arg0=result, auxint=field index.  Returns the address of auxint'th member. Used for un-SSA-able result types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. src/os/os_windows_test.go

    }
    
    // pathBuffeLen returns length of rd pathBuf in bytes.
    func (rd *reparseData) pathBuffeLen() uint16 {
    	return uint16(len(rd.pathBuf)) * 2
    }
    
    // Windows REPARSE_DATA_BUFFER contains union member, and cannot be
    // translated into Go directly. _REPARSE_DATA_BUFFER type is to help
    // construct alternative versions of Windows REPARSE_DATA_BUFFER with
    // union part of SymbolicLinkReparseBuffer or MountPointReparseBuffer type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  10. tensorflow/c/kernels.cc

          reinterpret_cast<const int64_t*>(dims), num_dims);
      if (alloc_attrs && !alloc_attrs->struct_size) {
        TF_SetStatus(
            status, TF_INVALID_ARGUMENT,
            "TF_AllocatorAttributes struct "
            "size member must be set to TF_ALLOCATOR_ATTRIBUTES_STRUCT_SIZE");
        return nullptr;
      }
      tensorflow::AllocatorAttributes allocator_attr;
      if (alloc_attrs && alloc_attrs->on_host) {
        allocator_attr.set_on_host(true);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
Back to top