Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,833 for Required (0.46 sec)

  1. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Sign.java

         * <p>Defaults to {@code true}.</p>
         */
        @Override
        @Input
        public boolean isRequired() {
            return required;
        }
    
        @Override
        public void setRequired(boolean required) {
            this.required = required;
        }
    
        /**
         * Required for decorating reports container callbacks for tracing user code application.
         *
         * @since 5.1
         */
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. pkg/volume/util/util_test.go

    					Name: "foo",
    				},
    			},
    		},
    		{
    			name: "PV node affinity missing required",
    			pv: &v1.PersistentVolume{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "foo",
    				},
    				Spec: v1.PersistentVolumeSpec{
    					NodeAffinity: &v1.VolumeNodeAffinity{},
    				},
    			},
    		},
    		{
    			name: "PV node affinity required zero selector terms",
    			pv: &v1.PersistentVolume{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/CredentialsProviderIntegrationTest.groovy

     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	// Discovery information is fetched from "{url}/.well-known/openid-configuration" unless overridden by discoveryURL.
    	// Required to be unique across all JWT authenticators.
    	// Note that egress selection configuration is not used for this network connection.
    	// +required
    	URL string
    	// discoveryURL, if specified, overrides the URL used to fetch discovery
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskContainer.java

         *
         * @param name The name of the task.
         * @param configurationAction The action to run to configure the task. This action runs when the task is required.
         * @return A {@link Provider} whose value will be the task, when queried.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 27 15:00:20 UTC 2022
    - 17.6K bytes
    - Viewed (0)
  6. tests/test_infer_param_optionality.py

                            {
                                "required": True,
                                "schema": {"title": "Item Id", "type": "string"},
                                "name": "item_id",
                                "in": "path",
                            },
                            {
                                "required": False,
                                "name": "user_id",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  7. pkg/apis/flowcontrol/validation/validation.go

    	var allErrs field.ErrorList
    	if subject == nil {
    		return append(allErrs, field.Required(fldPath, "serviceAccount is required when subject kind is 'ServiceAccount'"))
    	}
    	if len(subject.Name) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("name"), ""))
    	} else if subject.Name != flowcontrol.NameAll {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/features/FeatureUtil.java

          throw new ConflictingRequirementsException(
              String.format(
                  Locale.ROOT,
                  "Annotation requires to be %s features that earlier "
                      + "annotations required to be %s.",
                  newRequirement,
                  earlierRequirement),
              intersection(newFeatures, earlierFeatures),
              source);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 21 15:08:35 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

    }
    
    // FlowSchemaCondition describes conditions for a FlowSchema.
    message FlowSchemaCondition {
      // `type` is the type of the condition.
      // Required.
      optional string type = 1;
    
      // `status` is the status of the condition.
      // Can be True, False, Unknown.
      // Required.
      optional string status = 2;
    
      // `lastTransitionTime` is the last time the condition transitioned from one status to another.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. fastapi/dependencies/utils.py

        BodyModel = create_body_model(
            fields=flat_dependant.body_params, model_name=model_name
        )
        required = any(True for f in flat_dependant.body_params if f.required)
        BodyFieldInfo_kwargs: Dict[str, Any] = {
            "annotation": BodyModel,
            "alias": "body",
        }
        if not required:
            BodyFieldInfo_kwargs["default"] = None
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:52:56 UTC 2024
    - 29.5K bytes
    - Viewed (0)
Back to top