Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,456 for Describer (0.31 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultBaseRepositoryFactory.java

        }
    
        public MavenArtifactRepository createMavenRepository(Transformer<String, MavenArtifactRepository> describer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. platforms/jvm/jvm-services/src/main/java/org/gradle/api/internal/artifacts/JavaEcosystemAttributesDescriber.java

            DocsType.DOCS_TYPE_ATTRIBUTE,
            STATUS_ATTRIBUTE
        );
    
        /**
         * Checks if the given attribute is describable by this describer.
         *
         * @param attribute the attribute to check
         * @return {@code true} if the given attribute is describable by this describer; {@code false} otherwise
         */
        public boolean isDescribable(Attribute<?> attribute) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/AttributeDescriberSelector.java

                int size = Sets.intersection(consumerDescriber.getDescribableAttributes(), consumerAttributeSet).size();
                if (size > maxSize) {
                    // Select the describer which handles the maximum number of attributes
                    current = consumerDescriber;
                    maxSize = size;
                }
            }
            if (current != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

                class ${className}ServiceFactory implements BuildCacheServiceFactory<${className}> {
                    ${className}Service createBuildCacheService(${className} configuration, Describer describer) {
                        return new ${className}Service(configuration)
                    }
                }
                class ${className}Service implements BuildCacheService {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/elf_test.go

    func (b *B) Why() error   { return nil }
    func (c *C) What() string { return "float64" }
    
    func i_am_dead(c C) {
    	var d describer = &c
    	println(d.What())
    }
    
    func example(a A, b B) describer {
    	if b == 1 {
    		return &a
    	}
    	return &b
    }
    
    func ouch(a any, what string) string {
    	cv := reflect.ValueOf(a).MethodByName(what).Call(nil)
    	return cv[0].String()
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultProjectDependency.java

         * This method is kind of ugly.  If we could get a hold of the ResolutionFailureHandler in this class, we could use the typical
         * failure handling mechanism.  But we can't, so we have to throw the exception ourselves.  And as the describer
         * for this failure is abstract, we need to create an anonymous instance of it ourselves here, since there are
         * no instantiator types available here.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. istioctl/pkg/describe/describe.go

    	cmd := &cobra.Command{
    		Use:     "pod <pod>",
    		Aliases: []string{"po"},
    		Short:   "Describe pods and their Istio configuration [kube-only]",
    		Long: `Analyzes pod, its Services, DestinationRules, and VirtualServices and reports
    the configuration objects that affect that pod.`,
    		Example: `  istioctl experimental describe pod productpage-v1-c7765c886-7zzd4`,
    		RunE: func(cmd *cobra.Command, args []string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  8. docs/batch-jobs/README.md

    A job is the basic unit of work for MinIO Batch Job. A job is a self describing YAML, once this YAML is submitted and evaluated - MinIO performs the requested actions on each of the objects obtained under the described criteria in job YAML file.
    
    ### Type
    Type describes the job type, such as replicating objects between MinIO sites. Each job performs a single type of operation across all objects that match the job description criteria.
    
    ## Batch Jobs via Commandline
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 06 06:00:43 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. releasenotes/notes/fix-istioctl-describe-ingressinfo.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
      - 50074
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 209 bytes
    - Viewed (0)
  10. releasenotes/notes/49802.yaml

    apiVersion: release-notes/v2
    
    # This YAML file describes the format for specifying a release notes entry for Istio.
    # This should be filled in for all user facing changes.
    
    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 18:49:10 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top