Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for setters (0.14 sec)

  1. pkg/kubelet/kubelet_node_status_test.go

    					v1.ResourceEphemeralStorage: *resource.NewQuantity(5000, resource.BinarySI),
    				},
    			}
    			// Since this test retroactively overrides the stub container manager,
    			// we have to regenerate default status setters.
    			kubelet.setNodeStatusFuncs = kubelet.defaultNodeStatusFuncs()
    
    			kubeClient := testKubelet.fakeKubeClient
    			existingNode := v1.Node{ObjectMeta: metav1.ObjectMeta{Name: testKubeletHostname}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                addSetterForProperty(property, setter);
            }
    
            private void addSetterForProperty(PropertyMetadata property, Method setter) {
                // GENERATE public void <setter>(<type> value) { <field> == value }
                Type fieldType = getType(property.getType());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    java.util.List componentDescriptors; public void Requirement(Object, java.util.List); public Object getAssignment(); public java.util.List getComponentDescript(); } org/codehaus/plexus/component/composition/setter/SetterComponentCompo.class package org.codehaus.plexus.component.composition.setter; public synchronized class SetterComponentCompo extends org.codehaus.plexus.component.composition.AbstractComponentCom { public static final String PROPERTY_DESCRIPTORS; public void SetterComponentCompo();...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 205.7K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    java.util.List componentDescriptors; public void Requirement(Object, java.util.List); public Object getAssignment(); public java.util.List getComponentDescript(); } org/codehaus/plexus/component/composition/setter/SetterComponentCompo.class package org.codehaus.plexus.component.composition.setter; public synchronized class SetterComponentCompo extends org.codehaus.plexus.component.composition.AbstractComponentCom { public static final String PROPERTY_DESCRIPTORS; public void SetterComponentCompo();...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 233.3K bytes
    - Viewed (0)
  5. src/unicode/tables.go

    	Letter = _L  // Letter/L is the set of Unicode letters, category L.
    	L      = _L
    	Lm     = _Lm // Lm is the set of Unicode characters in category Lm (Letter, modifier).
    	Lo     = _Lo // Lo is the set of Unicode characters in category Lo (Letter, other).
    	Lower  = _Ll // Lower is the set of Unicode lower case letters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    <h3 id="Identifiers">Identifiers</h3>
    
    <p>
    Identifiers name program entities such as variables and types.
    An identifier is a sequence of one or more letters and digits.
    The first character in an identifier must be a letter.
    </p>
    <pre class="ebnf">
    identifier = letter { letter | unicode_digit } .
    </pre>
    <pre>
    a
    _x9
    ThisVariableIsExported
    αβ
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  7. src/reflect/value.go

    			w[28] != 0 || w[29] != 0 || w[30] != 0 || w[31] != 0 {
    			return false
    		}
    		w = w[n:]
    	}
    	return true
    }
    
    // SetZero sets v to be the zero value of v's type.
    // It panics if [Value.CanSet] returns false.
    func (v Value) SetZero() {
    	v.mustBeAssignable()
    	switch v.kind() {
    	case Bool:
    		*(*bool)(v.ptr) = false
    	case Int:
    		*(*int)(v.ptr) = 0
    	case Int8:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. pkg/ctrlz/assets/static/css/bootstrap-4.0.0.min.css

    {width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 141.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    // Otherwise, findInternal returns ok=true and the index of the "internal".
    func findInternal(path string) (index int, ok bool) {
    	// Three cases, depending on internal at start/end of string or not.
    	// The order matters: we must return the index of the final element,
    	// because the final one produces the most restrictive requirement
    	// on the importer.
    	switch {
    	case strings.HasSuffix(path, "/internal"):
    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/cmd/go/alldocs.go

    // and the second is a symbol, or symbol with method or struct field:
    //
    //	go doc <pkg> <sym>[.<methodOrField>]
    //
    // In all forms, when matching symbols, lower-case letters in the argument match
    // either case but upper-case letters match exactly. This means that there may be
    // multiple matches of a lower-case argument in a package if different symbols have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top