Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Reflection (0.28 sec)

  1. ChangeLog.md

    ### Reflection
    
    - [`KT-65156`](https://youtrack.jetbrains.com/issue/KT-65156) Calls to `callBy` that use default arguments fail with `KotlineReflectionInternalError` when the argument size is a multiple of 32 in a constructor that contains `value class` as a parameter
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    	// to avoid confusion.  We could reject individual fields,
    	// but then adding a new one to ObjectMeta wouldn't be checked
    	// unless this code gets updated. Instead, we ensure that
    	// only allowed fields are set via reflection.
    	allErrs = append(allErrs, validateFieldAllowList(*objMeta, allowedTemplateObjectMetaFields, "cannot be set", fldPath)...)
    	return allErrs
    }
    
    var allowedTemplateObjectMetaFields = map[string]bool{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	} else {
    		rtype = s.reflectType(elem)
    	}
    	s.rtcall(ir.Syms.CheckPtrAlignment, true, nil, v, rtype, count)
    }
    
    // reflectType returns an SSA value representing a pointer to typ's
    // reflection type descriptor.
    func (s *state) reflectType(typ *types.Type) *ssa.Value {
    	// TODO(mdempsky): Make this Fatalf under Unified IR; frontend needs
    	// to supply RType expressions.
    	lsym := reflectdata.TypeLinksym(typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. doc/go_spec.html

    which becomes an attribute for all the fields in the corresponding
    field declaration. An empty tag string is equivalent to an absent tag.
    The tags are made visible through a <a href="/pkg/reflect/#StructTag">reflection interface</a>
    and take part in <a href="#Type_identity">type identity</a> for structs
    but are otherwise ignored.
    </p>
    
    <pre>
    struct {
    	x, y float64 ""  // an empty tag string is like an absent tag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  5. pkg/apis/core/types.go

    // EmptyDirVolumeSource represents an empty directory for a pod.
    // Empty directory volumes support ownership management and SELinux relabeling.
    type EmptyDirVolumeSource struct {
    	// TODO: Longer term we want to represent the selection of underlying
    	// media more like a scheduling problem - user says what traits they
    	// need, we give them a backing store that satisfies that.  For now
    	// this will cover the most common needs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    ants:({addVariant:i})=>{i("first-letter","&::first-letter"),i("first-line","&::first-line"),i("marker",[({container:e})=>(mn(e,["--tw-text-opacity"]),"& *::marker"),({container:e})=>(mn(e,["--tw-text-opacity"]),"&::marker")]),i("selection",["& *::selection","&::selection"]),i("file","&::file-selector-button"),i("placeholder","&::placeholder"),i("backdrop","&::backdrop"),i("before",({container:e})=>(e.walkRules(t=>{let r=!1;t.walkDecls("content",()=>{r=!0}),r||t.prepend(z.decl({prop:"content",val...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  7. src/net/http/h2_bundle.go

    	// as we don't want to interfere with HTTP/1.1 traffic
    	// on the user's server. We enforce TLS 1.2 later once
    	// we accept a connection. Ideally this should be done
    	// during next-proto selection, but using TLS <1.2 with
    	// HTTP/2 is still the client's bug.
    
    	s.TLSConfig.PreferServerCipherSuites = true
    
    	if !http2strSliceContains(s.TLSConfig.NextProtos, http2NextProtoTLS) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	DefaultTemplates []string `protobuf:"bytes,24,rep,name=defaultTemplates,proto3" json:"defaultTemplates,omitempty"`
    	// If enabled, the legacy webhook selection logic will be used. This relies on filtering of webhook
    	// requests in Istiod, rather than at the webhook selection level.
    	// This is option is intended for migration purposes only and will be removed in Istio 1.10.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.27.md

    - Kubernetes components that perform leader election now only support using `Leases` for this. ([#114055](https://github.com/kubernetes/kubernetes/pull/114055), [@aimuz](https://github.com/aimuz))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.30.md

       ([#123281](https://github.com/kubernetes/kubernetes/pull/123281), [@seans3](https://github.com/seans3))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top