Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for convertScm (0.14 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)
  4. src/main/assemblies/files/service.bat

    goto:eof
    
    :err
    echo JAVA_HOME environment variable must be set!
    pause
    goto:eof
    
    rem ---
    rem Function for converting Xm[s|x] values into MB which Commons Daemon accepts
    rem ---
    :convertxm
    set value=%~1
    rem extract last char (unit)
    set unit=%value:~-1%
    rem assume the unit is specified
    set conv=%value:~0,-1%
    
    if "%unit%" == "k" goto kilo
    if "%unit%" == "K" goto kilo
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top