Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getRegistry (0.25 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/registry/ComponentTypeModelRuleExtractor.java

                return info.requiredPlugins;
            }
    
            @Override
            public void apply(final MethodModelRuleApplicationContext context, MutableModelNode target) {
                context.getRegistry().configure(
                    ModelActionRole.Mutate,
                    context.contextualize(new TypeRegistrationAction()));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ToolingApiSpec.groovy

                        $content
                        registry.register(new my.$builderClassName())
                    }
    
                    @Inject
                    abstract ToolingModelBuilderRegistry getRegistry()
                }
            """.stripIndent()
        }
    
        void addPluginBuildScript(
            String targetBuildName,
            String pluginId = 'my.plugin',
            String implClass = 'my.MyPlugin'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. pkg/dns/proto/nds.pb.go

    	return file_dns_proto_nds_proto_rawDescGZIP(), []int{0, 0}
    }
    
    func (x *NameTable_NameInfo) GetIps() []string {
    	if x != nil {
    		return x.Ips
    	}
    	return nil
    }
    
    func (x *NameTable_NameInfo) GetRegistry() string {
    	if x != nil {
    		return x.Registry
    	}
    	return ""
    }
    
    func (x *NameTable_NameInfo) GetShortname() string {
    	if x != nil {
    		return x.Shortname
    	}
    	return ""
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

                for (final ExtractedRuleDetails details : rules) {
                    details.rule.apply(new MethodModelRuleApplicationContext() {
                        @Override
                        public ModelRegistry getRegistry() {
                            return modelRegistry;
                        }
    
                        @Override
                        public ModelPath getScope() {
                            return targetPath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

    #define add_test_case(group, name, test) CU_add_test(group, name, test)
    
    /* private internal CUnit testing functions */
    /** Deprecated (version 1). @deprecated Use CU_get_registry(). */
    #define get_registry() CU_get_registry()
    /** Deprecated (version 1). @deprecated Use CU_set_registry(). */
    #define set_registry(reg) CU_set_registry((reg))
    
    /** Deprecated (version 1). @deprecated Use CU_get_suite_by_name(). */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top