Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 5,243 for myModel (0.24 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    )
    
    type Index interface {
    	Lookup(key string) []model.AddressInfo
    	All() []model.AddressInfo
    	WorkloadsForWaypoint(key model.WaypointKey) []model.WorkloadInfo
    	ServicesForWaypoint(key model.WaypointKey) []model.ServiceInfo
    	SyncAll()
    	HasSynced() bool
    	model.AmbientIndexes
    }
    
    var _ Index = &index{}
    
    type workloadsCollection struct {
    	krt.Collection[model.WorkloadInfo]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGenerator.java

    import com.google.common.collect.Streams;
    import org.apache.maven.model.CiManagement;
    import org.apache.maven.model.Contributor;
    import org.apache.maven.model.Dependency;
    import org.apache.maven.model.DependencyManagement;
    import org.apache.maven.model.Developer;
    import org.apache.maven.model.DistributionManagement;
    import org.apache.maven.model.Exclusion;
    import org.apache.maven.model.IssueManagement;
    import org.apache.maven.model.License;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/management/DefaultPluginManagementInjector.java

                org.apache.maven.model.Model model, ModelBuildingRequest request, ModelProblemCollector problems) {
            model.update(merger.mergeManagedBuildPlugins(model.getDelegate()));
        }
    
        /**
         * ManagementModelMerger
         */
        protected static class ManagementModelMerger extends MavenModelMerger {
    
            public Model mergeManagedBuildPlugins(Model model) {
                Build build = model.getBuild();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java

        @Deprecated
        public Model interpolate(Model model, Map<String, ?> context, boolean strict) throws ModelInterpolationException {
            Properties props = new Properties();
            props.putAll(context);
    
            return interpolate(model, null, new DefaultProjectBuilderConfiguration().setExecutionProperties(props), true);
        }
    
        public Model interpolate(Model model, File projectDir, ProjectBuilderConfiguration config, boolean debugEnabled)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/ModelMapDslIntegrationTest.groovy

            buildFile << '''
    model {
        things {
            create('main') {
                create('test') { println "no" }
            }
        }
    }
    '''
            expect:
            fails "model"
            failure.assertHasLineNumber(18)
            failure.assertHasCause('Exception thrown while executing model rule: create(main) { ... } @ build.gradle line 17, column 9')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelInterpolator.java

         *
         * @param model The model to interpolate, must not be {@code null}.
         * @param projectDir The project directory, may be {@code null} if the model does not belong to a local project but
         *            to some artifact's metadata.
         * @param request The model building request that holds further settings, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelMapIntegrationTest.groovy

                @Model
                void things(ModelMap<SampleComponent> m) {}
            }
            apply plugin: Rules
    
            model {
                things {
                    main(NonRegisteredComponent) {}
                }
            }
            """
    
            expect:
            fails "model"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  8. tests/multi_primary_keys_test.go

    	DB.Model(&blog).Association("Tags").Delete(tag5)
    	var tags3 []Tag
    	DB.Model(&blog).Association("Tags").Find(&tags3)
    	if !compareTags(tags3, []string{"tag6"}) {
    		t.Fatalf("Should find 1 tags after Delete")
    	}
    
    	if DB.Model(&blog).Association("Tags").Count() != 1 {
    		t.Fatalf("Blog should has three tags after Delete")
    	}
    
    	DB.Model(&blog).Association("Tags").Delete(tag3)
    	var tags4 []Tag
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Jan 06 07:02:53 UTC 2022
    - 12.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/InvalidManagedModelRuleIntegrationTest.groovy

            failure.assertHasCause("Declaration of model rule Rules#s(String) is invalid.")
            failure.assertHasCause("A model element of type: 'java.lang.String' can not be constructed.")
        }
    
        def "cannot use unknown type as subject of void model rule"() {
            when:
            buildScript '''
                interface Thing { }
    
                class Rules extends RuleSource {
                  @Model
                  void s(Thing s) {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/util/workloadinstances/index_test.go

    	wi1 := &model.WorkloadInstance{
    		Name:      selector.Name,
    		Namespace: selector.Namespace,
    		Endpoint: &model.IstioEndpoint{
    			Address: "2.2.2.2",
    			Labels:  map[string]string{"app": "wle"}, // should match
    		},
    	}
    
    	wi2 := &model.WorkloadInstance{
    		Name:      "same-ip",
    		Namespace: selector.Namespace,
    		Endpoint: &model.IstioEndpoint{
    			Address: "2.2.2.2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top