Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for convertScm (0.28 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGenerator.java

            if (pom.getOrganization() != null) {
                model.setOrganization(convertOrganization(pom.getOrganization()));
            }
            if (pom.getScm() != null) {
                model.setScm(convertScm(pom.getScm()));
            }
            if (pom.getIssueManagement() != null) {
                model.setIssueManagement(convertIssueManagement(pom.getIssueManagement()));
            }
            if (pom.getCiManagement() != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. pkg/controller/certificates/rootcacertpublisher/publisher.go

    }
    
    func (c *Publisher) configMapDeleted(obj interface{}) {
    	cm, err := convertToCM(obj)
    	if err != nil {
    		utilruntime.HandleError(err)
    		return
    	}
    	if cm.Name != RootCACertConfigMapName {
    		return
    	}
    	c.queue.Add(cm.Namespace)
    }
    
    func (c *Publisher) configMapUpdated(_, newObj interface{}) {
    	cm, err := convertToCM(newObj)
    	if err != nil {
    		utilruntime.HandleError(err)
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/builder_test.go

    			g := New(tc.tdBundle, push, policies, option)
    			if g == nil {
    				t.Fatalf("failed to create generator")
    			}
    			got := g.BuildTCP()
    			verify(t, convertTCP(got), baseDir, tc.want, true /* forTCP */)
    		})
    	}
    }
    
    func verify(t *testing.T, gots []proto.Message, baseDir string, wants []string, forTCP bool) {
    	t.Helper()
    
    	if len(gots) != len(wants) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top