Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of about 10,000 for Required (0.15 sec)

  1. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/BuildOperationTracker.java

     */
    public interface BuildOperationTracker {
        /**
         * Returns the trackers that are used by this tracker. If this tracker is required, then its trackers should be notified of
         * build operation execution. If this tracker is not required, the trackers can be ignored.
         */
        default List<? extends BuildOperationTracker> getTrackers() {
            return Collections.emptyList();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/BinaryCollection.java

         *
         * @param action The action to execute for each element becomes known.
         */
        void whenElementKnown(Action<? super T> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/NamedDomainObjectContainer.java

         *
         * @param name The name of the object.
         * @param configurationAction The action to run to configure the object. This action runs when the object is required.
         * @return A {@link Provider} whose value will be the object, when queried.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 27 15:00:20 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/PolymorphicDomainObjectContainer.java

         *
         * @param name The name of the object.
         * @param type The object type.
         * @param configurationAction The action to run to configure the object. This action runs when the object is required.
         * @param <U> The object type
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 27 15:00:20 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/webhook/validation.go

    	var allErrors field.ErrorList
    
    	if len(name) == 0 {
    		allErrors = append(allErrors, field.Required(fldPath.Child("name"), "service name is required"))
    	}
    
    	if len(namespace) == 0 {
    		allErrors = append(allErrors, field.Required(fldPath.Child("namespace"), "service namespace is required"))
    	}
    
    	if errs := validation.IsValidPortNum(int(port)); errs != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 19 23:14:37 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  6. fastapi/security/oauth2.py

    
        grant_type: the OAuth2 spec says it is required and MUST be the fixed string "password".
            This dependency is strict about it. If you want to be permissive, use instead the
            OAuth2PasswordRequestForm dependency class.
        username: username string. The OAuth2 spec requires the exact field name "username".
        password: password string. The OAuth2 spec requires the exact field name "password".
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/feature_addition_request.yaml

        validations:
          required: true
    
      - type: textarea
        attributes:
          label: 2. What's the best code you can write to accomplish that without the new feature?
        validations:
          required: true
    
      - type: textarea
        attributes:
          label: 3. What would that same code look like if we added your feature?
        validations:
          required: true
    
      - type: markdown
        attributes:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/50_maintainer_chore.yml

            - Polishing
            - Deprecation
            - Refactoring
            - Other
        validations:
          required: true
      - type: textarea
        id: description
        attributes:
          label: Problem description
          description: |
            Please describe the problem as concisely as possible.
        validations:
          required: true
      - type: textarea
        id: context
        attributes:
          label: Context (optional)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 11:52:53 UTC 2023
    - 856 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    				"spec.versions[0].schema.openAPIV3Schema.properties[bar].items.type: Required value: must not be empty for specified array items",
    				"spec.versions[0].schema.openAPIV3Schema.properties[bar].type: Required value: must not be empty for specified object fields",
    				"spec.versions[0].schema.openAPIV3Schema.type: Required value: must not be empty at the root",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  10. tests/test_modules_same_name_body/test_main.py

                            },
                            "required": True,
                        },
                    }
                },
            },
            "components": {
                "schemas": {
                    "Body_compute_b_compute__post": {
                        "title": "Body_compute_b_compute__post",
                        "required": ["a", "b"],
                        "type": "object",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top