Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 110 for descriptor (0.16 sec)

  1. 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)
  2. okhttp/src/test/java/okhttp3/EventListenerTest.kt

        }
      }
    
      private fun greaterThan(value: Long): Matcher<Long?> {
        return object : BaseMatcher<Long?>() {
          override fun describeTo(description: Description?) {
            description!!.appendText("> $value")
          }
    
          override fun matches(o: Any?): Boolean {
            return (o as Long?)!! > value
          }
        }
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsDataConfigCA.java

            setDescription_Count("description", opLambda);
        }
    
        public void setDescription_Count(String name, ConditionOptionCall<ValueCountAggregationBuilder> opLambda) {
            ValueCountAggregationBuilder builder = regCountA(name, "description");
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  5. 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)
  6. platforms/documentation/docs/src/docs/css/javadoc.css

    }
    .indexContainer ul li {
        list-style:none;
        padding-top:2px;
    }
    .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt {
        font-size:12px;
        font-weight:bold;
        margin:10px 0 0 0;
        color:#var(--block-text-color);
    }
    .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd {
        margin:5px 0 10px 0px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// is the resource name.
    	// See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for more.
    	Format string `json:"format"`
    	// description is a human readable description of this column.
    	Description string `json:"description"`
    	// priority is an integer defining the relative importance of this column compared to others. Lower
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            action         | actOn
            'setFrom()'    | { it.setFrom() }
            'setFrom([])'  | { it.setFrom([]) }
            'setFrom(*[])' | { it.setFrom(*[]) }
        }
    
        def "can obtain shallow copy of #description collection"() {
            given:
            configuration.setDelegate(this)
            configuration.setResolveStrategy(Closure.DELEGATE_ONLY)
            configuration(collection)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. cmd/batch-handlers.go

    	return nil
    }
    
    //msgp:ignore batchReplicationJobError
    type batchReplicationJobError struct {
    	Code           string
    	Description    string
    	HTTPStatusCode int
    	ObjectSize     int64
    }
    
    func (e batchReplicationJobError) Error() string {
    	return e.Description
    }
    
    // Validate validates the job definition input
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  10. cmd/iam.go

    	if err != nil {
    		return auth.Credentials{}, time.Time{}, err
    	}
    	cred.ParentUser = parentUser
    	cred.Groups = groups
    	cred.Status = string(auth.AccountOn)
    	cred.Name = opts.name
    	cred.Description = opts.description
    
    	if opts.expiration != nil {
    		expirationInUTC := opts.expiration.UTC()
    		if err := validateSvcExpirationInUTC(expirationInUTC); err != nil {
    			return auth.Credentials{}, time.Time{}, err
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top