Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 304 for Categories (0.38 sec)

  1. tests/postgres_test.go

    	}
    
    	if !hasLogID {
    		t.Fatalf("failed to found column log_id")
    	}
    }
    
    type Post struct {
    	ID         uuid.UUID `gorm:"primary_key;type:uuid;default:uuid_generate_v4();"`
    	Title      string
    	Categories []*Category `gorm:"Many2Many:post_categories"`
    }
    
    type Category struct {
    	ID    uuid.UUID `gorm:"primary_key;type:uuid;default:uuid_generate_v4();"`
    	Title string
    	Posts []*Post `gorm:"Many2Many:post_categories"`
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Oct 08 09:16:32 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  2. pkg/registry/apps/replicaset/storage/storage.go

    func (r *REST) ShortNames() []string {
    	return []string{"rs"}
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    func (r *REST) Categories() []string {
    	return []string{"all"}
    }
    
    // StatusREST implements the REST endpoint for changing the status of a ReplicaSet
    type StatusREST struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/storage/storage.go

    func (r *REST) ShortNames() []string {
    	return []string{"po"}
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    func (r *REST) Categories() []string {
    	return []string{"all"}
    }
    
    // BindingREST implements the REST endpoint for binding pods to nodes when etcd is in use.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. pkg/registry/apps/statefulset/storage/storage.go

    	return &REST{store}, &StatusREST{store: &statusStore}, nil
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    func (r *REST) Categories() []string {
    	return []string{"all"}
    }
    
    // StatusREST implements the REST endpoint for changing the status of an statefulSet
    type StatusREST struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/TypeAnnotationMetadataStore.java

    /**
     * A validating metadata store that handles annotations on types and their JavaBeans properties.
     *
     * <p>
     * The store considers property annotations to belong to {@linkplain AnnotationCategory categories}.
     * Each property can have at most one annotation per category.
     * Validation failures with a given type can be visited using {@link TypeAnnotationMetadata#visitValidationFailures(TypeValidationContext)}.
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/attributes/Category.java

     */
    
    package org.gradle.api.attributes;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.Named;
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    /**
     * This attribute describes the categories of variants for a given module.
     * <p>
     * Four values are found in published components:
     * <ul>
     *     <li>{@code library}: Indicates that the variant is a library, that usually means a binary and a set of dependencies</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 30 17:48:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFilePermissions.java

         * <ul>
         *     <li>NUMERIC notation: uses 3 octal (base-8) digits representing permissions for the 3 categories of users; for example "755"</li>
         *     <li>SYMBOLIC notation: uses 3 sets of 3 characters, each set representing the permissions for one of the user categories; for example "rwxr-xr-x"</li>
         * </ul>
         * <p>
         * The NUMERIC notation consist of 3 digits having values from 0 to 7.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apidiscovery/v2/generated.proto

      // +listType=set
      repeated string shortNames = 6;
    
      // categories is a list of the grouped resources this resource belongs to (e.g. 'all').
      // Clients may use this to simplify acting on multiple resource types at once.
      // +listType=set
      repeated string categories = 7;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitEnclosedRunnerIntegrationTest.groovy

            given:
            file('src/test/java/EnclosedTest.java') << """
                ${testFrameworkImports}
                import org.junit.experimental.runners.Enclosed;
                import org.junit.experimental.categories.Category;
    
                @RunWith(Enclosed.class)
                public class EnclosedTest {
                  private static int outer;
    
                  @BeforeClass
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // +listType=set
      repeated string shortNames = 6;
    
      // categories is a list of the grouped resources this resource belongs to (e.g. 'all').
      // Clients may use this to simplify acting on multiple resource types at once.
      // +listType=set
      repeated string categories = 7;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top