Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 124 for SEP (0.02 sec)

  1. pkg/util/strcase/camelcase.go

    		}
    	}
    	return string(t)
    }
    
    // CamelCaseWithSeparator splits the given string by the separator, converts the parts to CamelCase and then re-joins them.
    func CamelCaseWithSeparator(n string, sep string) string {
    	p := strings.Split(n, sep)
    	for i := 0; i < len(p); i++ {
    		p[i] = CamelCase(p[i])
    	}
    	return strings.Join(p, "")
    }
    
    // CamelCaseToKebabCase converts "MyName" to "my-name"
    func CamelCaseToKebabCase(s string) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 28 19:48:10 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  2. pilot/pkg/config/file/util/kubeyaml/kubeyaml.go

    			startLine = r.currLine
    			foundStart = true
    		}
    
    		sep := len([]byte(separator))
    		if i := bytes.Index(line, []byte(separator)); i == 0 {
    			// We have a potential document terminator
    			i += sep
    			after := line[i:]
    			if len(strings.TrimRightFunc(string(after), unicode.IsSpace)) == 0 {
    				if buffer.Len() != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 12 02:41:40 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. platforms/software/resources-http/src/test/resources/org/gradle/internal/resource/transport/http/nexus_dirlisting.html

                                  <a href="http://localhost:8081/nexus/content/repositories/central/junit/junit/maven-metadata.xml">maven-metadata.xml</a>
                              </td>
                <td>
                  Thu Sep 29 21:19:50 CEST 2011
                </td>
                <td align="right">
                                  817
                              </td>
                <td>
                  &nbsp;
                </td>
              </tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/GUtilTest.groovy

            expect:
            flattenElements(1, [2, 3]) == [1, 2, 3]
        }
    
        def "convert to path notation"() {
            expect:
            asPath(["lib1.jar", "lib2.jar", new File("lib3.jar")]) == "lib1.jar${sep}lib2.jar${sep}lib3.jar"
        }
    
        def "adds to collection"() {
            def list = [0]
            when:
            addToCollection(addToCollection(list, [1, 2]), [2, 3])
            then:
            list == [0, 1, 2, 2, 3]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  5. tools/docker-builder/dockerfile/parse.go

    	user       string
    	workdir    string
    	base       string
    	entrypoint []string
    	cmd        []string
    
    	shlex *shell.Lex
    }
    
    func cut(s, sep string) (before, after string) {
    	if i := strings.Index(s, sep); i >= 0 {
    		return s[:i], s[i+len(sep):]
    	}
    	return s, ""
    }
    
    // Parse parses the provided Dockerfile with the given args
    func Parse(f string, opts ...Option) (builder.Args, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/convert/DateConversionUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testToDate_SpecificLocale() throws Exception {
            final Date date = toDate("SEP 7, 2010", Locale.US);
            assertThat(new SimpleDateFormat("yyyy/MM/dd").format(date), is("2010/09/07"));
        }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. src/go/types/exprstring.go

    	buf.WriteByte('(')
    	writeFieldList(buf, res.List, ", ", false)
    	buf.WriteByte(')')
    }
    
    func writeFieldList(buf *bytes.Buffer, list []*ast.Field, sep string, iface bool) {
    	for i, f := range list {
    		if i > 0 {
    			buf.WriteString(sep)
    		}
    
    		// field list names
    		writeIdentList(buf, f.Names)
    
    		// types of interface methods consist of signatures only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 19:31:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/convert/TimestampConversionUtilTest.java

        //    }
    
        /**
         * @throws Exception
         */
        //    @Test
        //    public void testToDate_SpecificLocale() throws Exception {
        //        final Date date = toDate("SEP 7, 2010 11:49:10 AM", Locale.US);
        //        assertThat(new SimpleDateFormat("yyyy/MM/dd HH:mm:ss").format(date), is("2010/09/07 11:49:10"));
        //    }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm/armasm/inst.go

    type RegList uint16
    
    func (RegList) IsArg() {}
    
    func (r RegList) String() string {
    	var buf bytes.Buffer
    	fmt.Fprintf(&buf, "{")
    	sep := ""
    	for i := 0; i < 16; i++ {
    		if r&(1<<uint(i)) != 0 {
    			fmt.Fprintf(&buf, "%s%s", sep, Reg(i).String())
    			sep = ","
    		}
    	}
    	fmt.Fprintf(&buf, "}")
    	return buf.String()
    }
    
    // An Endian is the argument to the SETEND instruction.
    type Endian uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 7.5K bytes
    - Viewed (0)
  10. pkg/kubelet/checkpointmanager/README.md

    | ------- | --------------------------------------| ------- |
    |kubelet/dockershim | Feb 3, 2017 | [[CRI] Implement Dockershim Checkpoint](https://github.com/kubernetes/kubernetes/pull/39903)
    |devicemanager| Sep 6, 2017 | [Deviceplugin checkpoint](https://github.com/kubernetes/kubernetes/pull/51744)
    | kubelet/pod | Nov 22, 2017 | [Initial basic bootstrap-checkpoint support](https://github.com/kubernetes/kubernetes/pull/50984)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 16 05:30:20 UTC 2018
    - 1.7K bytes
    - Viewed (0)
Back to top