Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Classes (0.14 sec)

  1. ChangeLog.md

    - [`KT-64420`](https://youtrack.jetbrains.com/issue/KT-64420) K2: Wrong module descriptor for builtin classes
    - [`KT-64127`](https://youtrack.jetbrains.com/issue/KT-64127) K2: incorrect resolution of inherited members on Java classes inheriting classes from different packages in the presence of identically named classes in the same packages
    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. docs/en/docs/release-notes.md

    * 🔧 Add CryptAPI sponsor. PR [#4264](https://github.com/tiangolo/fastapi/pull/4264) by [@tiangolo](https://github.com/tiangolo).
    * 📝 Update `docs/tutorial/dependencies/classes-as-dependencies`: Add type of query parameters in a description of `Classes as dependencies`. PR [#4015](https://github.com/tiangolo/fastapi/pull/4015) by [@0417taehyun](https://github.com/0417taehyun).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String LDAP_ADMIN_USER_BASE_DN = "ldap.admin.user.base.dn";
    
        /** The key of the configuration. e.g. organizationalPerson,top,person,inetOrgPerson */
        String LDAP_ADMIN_USER_OBJECT_CLASSES = "ldap.admin.user.object.classes";
    
        /** The key of the configuration. e.g. cn=%s */
        String LDAP_ADMIN_ROLE_FILTER = "ldap.admin.role.filter";
    
        /** The key of the configuration. e.g. ou=Role,dc=fess,dc=codelibs,dc=org */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    k)e.changedContent.push({content:S+e.tailwindConfig.separator+y,extension:"html"})}}for(let[b,x]of d.entries())x===0&&F.warn([`The safelist pattern \`${b}\` doesn't match any Tailwind CSS classes.`,"Fix this pattern or remove it from your `safelist` configuration.","https://tailwindcss.com/docs/content-configuration#safelisting-classes"])}}let u=[].concat(e.tailwindConfig.darkMode??"media")[1]??"dark",c=[uo(e,u),uo(e,"group"),uo(e,"peer")];e.getClassOrder=function(d){let p=[...d].sort((y,w)=>y===w?0:y<w?-1:1),m=new...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"qosClass":                   "The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-qos/#quality-of-service-classes",
    	"ephemeralContainerStatuses": "Status for any ephemeral containers that have run in this pod.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. prow/config/calico.yaml

                type: object
              spec:
                description: CalicoNodeStatusSpec contains the specification for a CalicoNodeStatus
                  resource.
                properties:
                  classes:
                    description: Classes declares the types of information to monitor
                      for this calico/node, and allows for selective status reporting
                      about certain subsets of information.
                    items:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// The Quality of Service (QOS) classification assigned to the pod based on resource requirements
    	// See PodQOSClass type for available QOS classes
    	// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-qos/#quality-of-service-classes
    	// +optional
    	QOSClass PodQOSClass `json:"qosClass,omitempty" protobuf:"bytes,9,rep,name=qosClass"`
    	// Status for any ephemeral containers that have run in this pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // The Quality of Service (QOS) classification assigned to the pod based on resource requirements
      // See PodQOSClass type for available QOS classes
      // More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-qos/#quality-of-service-classes
      // +optional
      optional string qosClass = 9;
    
      // Status for any ephemeral containers that have run in this pod.
      // +optional
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource
    	// exists.
    	// More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/
    	// (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.
    	// +featureGate=VolumeAttributesClass
    	// +optional
    	VolumeAttributesClassName *string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    // The maximum wasted space per dataBuffer is 2x the largest size class,
    // which happens when the dataBuffer has multiple chunks and there is
    // one unread byte in both the first and last chunks. We use a few size
    // classes to minimize overheads for servers that typically receive very
    // small request bodies.
    //
    // TODO: Benchmark to determine if the pools are necessary. The GC may have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top