Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,131 for yield (0.04 sec)

  1. src/main/java/org/codelibs/core/lang/ModifierUtil.java

        }
    
        /**
         * <code>public</code>かどうか返します。
         *
         * @param field
         *            フィールド。{@literal null}であってはいけません
         * @return パブリックかどうか
         */
        public static boolean isPublic(final Field field) {
            assertArgumentNotNull("field", field);
    
            return isPublic(field.getModifiers());
        }
    
        /**
         * <code>public</code>,<code>static</code>,<code>final</code>かどうか返します。
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/testdata/swagger-merge-item-v3.json

              "name": {
                "description": "Name field.",
                "type": "string"
              },
              "value": {
                "description": "Value field.",
                "type": "string"
              },
              "other": {
                "description": "Other field.",
                "type": "string"
              },
              "mergingList": {
                "description": "MergingList field.",
                "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/mutation/optional_test.go

    			// question mark syntax still requires the field to exist in object construction
    			name: "construct non-existing field, compile error",
    			expression: `Object{
    				?nonExisting: optional.none()
    			}`,
    			expectedCompileError: `undefined field 'nonExisting'`,
    		},
    		{
    			// The root cause of the behavior above is that, has on an object (or Message in the Language Def),
    			// still require the field to be declared in the schema.
    			//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 21:52:39 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/MutablePropertyDetails.java

        }
    
        @Nullable
        @Override
        public Field getBackingField() {
            return field;
        }
    
        void addGetter(Method method) {
            getters.add(method);
        }
    
        void addSetter(Method method) {
            setters.add(method);
        }
    
        void field(Field field) {
            if (!getters.isEmpty()) {
                this.field = field;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/authorization/cel/compile.go

    		field("resourceAttributes", resourceAttributesType, false),
    		field("nonResourceAttributes", nonResourceAttributesType, false),
    		field("user", apiservercel.StringType, false),
    		field("groups", apiservercel.NewListType(apiservercel.StringType, -1), false),
    		field("extra", apiservercel.NewMapType(apiservercel.StringType, apiservercel.NewListType(apiservercel.StringType, -1), -1), false),
    		field("uid", apiservercel.StringType, false),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 02 20:56:52 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podsecuritycontext.go

    	return &PodSecurityContextApplyConfiguration{}
    }
    
    // WithSELinuxOptions sets the SELinuxOptions field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the SELinuxOptions field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/jobstatus.go

    // WithActive sets the Active field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Active field is set to the value of the last call.
    func (b *JobStatusApplyConfiguration) WithActive(value int32) *JobStatusApplyConfiguration {
    	b.Active = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 16:34:38 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.txt

        // source: 'classKinds.kt'
        private synthetic final static field $ENTRIES: kotlin.enums.EnumEntries
        private synthetic final static field $VALUES: Direction[]
        public final enum static field EAST: Direction
        public final enum static field NORTH: Direction
        public final enum static field SOUTH: Direction
        public final enum static field WEST: Direction
        private synthetic final static method $values(): Direction[]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 15:34:34 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/selection_predicate.go

    	if matched && s.Field != nil {
    		matched = (matched && s.Field.Matches(f))
    	}
    	return matched
    }
    
    // MatchesSingleNamespace will return (namespace, true) if and only if s.Field matches on the object's
    // namespace.
    func (s *SelectionPredicate) MatchesSingleNamespace() (string, bool) {
    	if len(s.Continue) > 0 || s.Field == nil {
    		return "", false
    	}
    	if namespace, ok := s.Field.RequiresExactMatch("metadata.namespace"); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/core/v1/nodestatus.go

    func NodeStatus() *NodeStatusApplyConfiguration {
    	return &NodeStatusApplyConfiguration{}
    }
    
    // WithCapacity sets the Capacity field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Capacity field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top