Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 63 for descriptor (0.34 sec)

  1. cmd/bucket-handlers.go

    		if err != nil {
    			apiErr := errorCodes.ToAPIErr(ErrMalformedPOSTRequest)
    			apiErr.Description = fmt.Sprintf("%s (%v)", apiErr.Description, err)
    			writeErrorResponse(ctx, w, apiErr, r.URL)
    			return
    		}
    		if maxParts <= 0 {
    			apiErr := errorCodes.ToAPIErr(ErrMalformedPOSTRequest)
    			apiErr.Description = fmt.Sprintf("%s (%v)", apiErr.Description, multipart.ErrMessageTooLarge)
    			writeErrorResponse(ctx, w, apiErr, r.URL)
    			return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  2. fastapi/param_functions.py

        title: Annotated[
            Optional[str],
            Doc(
                """
                Human-readable title.
                """
            ),
        ] = None,
        description: Annotated[
            Optional[str],
            Doc(
                """
                Human-readable description.
                """
            ),
        ] = None,
        gt: Annotated[
            Optional[float],
            Doc(
                """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/strategy_test.go

    			},
    		}
    	}
    
    	testCases := []struct {
    		description string
    		gateEnabled bool
    		newPod      *api.Pod
    		wantPod     *api.Pod
    	}{
    		{
    			description: "gate enabled, creating pods with sleep action",
    			gateEnabled: true,
    			newPod:      podWithHandler(),
    			wantPod:     podWithHandler(),
    		},
    		{
    			description: "gate disabled, creating pods with sleep action",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  4. plugin/pkg/admission/resourcequota/admission_test.go

    func TestAdmitLimitedScopeWithCoverQuota(t *testing.T) {
    	testCases := []struct {
    		description  string
    		testPod      *api.Pod
    		quota        *corev1.ResourceQuota
    		anotherQuota *corev1.ResourceQuota
    		config       *resourcequotaapi.Configuration
    		expErr       string
    	}{
    		{
    			description: "Covering quota exists for configured limited scope PriorityClassNameExists.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

        }
    
        def "set description, visibility and transitivity"() {
            given:
            def configuration = conf()
    
            when:
            configuration.setDescription("description")
            configuration.setVisible(false)
            configuration.setTransitive(false)
    
            then:
            configuration.description == "description"
            !configuration.visible
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  6. cmd/admin-handlers-users.go

    	if targetUser == "" {
    		targetUser = cred.AccessKey
    	}
    
    	description := createReq.Description
    	if description == "" {
    		description = createReq.Comment
    	}
    	opts := newServiceAccountOpts{
    		accessKey:   createReq.AccessKey,
    		secretKey:   createReq.SecretKey,
    		name:        createReq.Name,
    		description: description,
    		expiration:  createReq.Expiration,
    		claims:      make(map[string]interface{}),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/manager_test.go

    			v1.ResourceName(res2.resourceName): res2.resourceQuantity}),
    	}
    	testCases := []struct {
    		description               string
    		testPod                   *v1.Pod
    		expectedContainerOptsLen  []int
    		expectedAllocatedResName1 int
    		expectedAllocatedResName2 int
    		expErr                    error
    	}{
    		{
    			description:               "Successful allocation of two Res1 resources and one Res2 resource",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    type ratchetingTestOperation interface {
    	Do(ctx *ratchetingTestContext) error
    	Description() string
    }
    
    type expectError struct {
    	op ratchetingTestOperation
    }
    
    func (e expectError) Do(ctx *ratchetingTestContext) error {
    	err := e.op.Do(ctx)
    	if err != nil {
    		return nil
    	}
    	return errors.New("expected error")
    }
    
    func (e expectError) Description() string {
    	return fmt.Sprintf("Expect Error: %v", e.op.Description())
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            return this;
        }
    
        @Override
        @Nullable
        public String getDescription() {
            return description;
        }
    
        @Override
        public Configuration setDescription(@Nullable String description) {
            this.description = description;
            return this;
        }
    
        @Override
        public Set<Configuration> getHierarchy() {
            if (extendsFrom.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                formatter.format("Multiple factories for objects of type %s available in %s:", format(type), getDisplayName());
                for (String description : descriptions) {
                    formatter.format("%n   - %s", description);
                }
                throw new ServiceLookupException(formatter.toString());
            }
    
            @Override
            public Service getService(Type type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top