Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 124 for SEP (0.09 sec)

  1. pilot/pkg/model/credentials/resource.go

    }
    
    // ParseResourceName parses a raw resourceName string.
    func ParseResourceName(resourceName string, proxyNamespace string, proxyCluster cluster.ID, configCluster cluster.ID) (SecretResource, error) {
    	sep := "/"
    	if strings.HasPrefix(resourceName, KubernetesSecretTypeURI) {
    		// Valid formats:
    		// * kubernetes://secret-name
    		// * kubernetes://secret-namespace/secret-name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 28 20:33:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. schema/utils.go

    var embeddedCacheKey = "embedded_cache_store"
    
    func ParseTagSetting(str string, sep string) map[string]string {
    	settings := map[string]string{}
    	names := strings.Split(str, sep)
    
    	for i := 0; i < len(names); i++ {
    		j := i
    		if len(names[j]) > 0 {
    			for {
    				if names[j][len(names[j])-1] == '\\' {
    					i++
    					names[j] = names[j][0:len(names[j])-1] + sep + names[i]
    					names[i] = ""
    				} else {
    					break
    				}
    			}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Aug 19 13:35:14 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. src/mdo/model.vm

        #end
        #foreach ( $field in $allFields )
          #set ( $sep = "#if(${locationTracking}||$field!=${allFields[${allFields.size()} - 1]}),#end" )
          #set ( $type = ${types.getOrDefault($field,${types.getOrDefault($field.type,$field.type)})} )
          #if ( $type.startsWith("List<") )
            #set ( $type = ${type.replace('List<','Collection<')} )
          #end
            $type $field.name${sep}
        #end
        #if ( $locationTracking )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/cover/profile.go

    		return "", b, errors.New("a FileName cannot be blank")
    	}
    	return fn, b, nil
    }
    
    // seekBack searches backwards from end to find sep in l, then returns the
    // value between sep and end as an integer.
    // If seekBack fails, the returned error will reference what.
    func seekBack(l string, sep byte, end int, what string) (value int, nextSep int, err error) {
    	// Since we're seeking backwards and we know only ASCII is legal for these values,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 17:02:03 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  5. test/fixedbugs/issue63462.go

    // license that can be found in the LICENSE file.
    
    package p
    
    func f() {
    	for b := "" < join([]string{}, "") && true; ; {
    		_ = b
    	}
    }
    
    //go:noinline
    func join(elems []string, sep string) string {
    	return ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:23:06 UTC 2023
    - 331 bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4-javadoc-resources.jar.lastUpdated

    #NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
    #Thu Sep 24 16:40:08 CEST 2020
    https\://repo.maven.apache.org/maven2/.lastUpdated=1600958408640
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 252 bytes
    - Viewed (0)
  7. istioctl/pkg/writer/table/writer.go

    	output := c.getTableOutput(c.rows)
    	if len(output) == 0 {
    		return
    	}
    	sep := getMaxWidths(output)
    	for _, row := range output {
    		for i, col := range row {
    			_, _ = fmt.Fprint(c.writer, col.String())
    			if i == len(row)-1 {
    				_, _ = fmt.Fprint(c.writer, "\n")
    			} else {
    				padAmount := sep[i] - utf8.RuneCount([]byte(col.Value)) + 2
    				_, _ = fmt.Fprint(c.writer, strings.Repeat(" ", padAmount))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 08 04:41:42 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/TestCountLoggerTest.groovy

        private final TestDescriptor rootSuite = suite(true)
        private final Logger errorLogger = Mock()
        private final TestCountLogger logger = new TestCountLogger(factory, errorLogger)
        private final String sep = TextUtil.platformLineSeparator
    
        def setup() {
            factory.newOperation(TestCountLogger) >> progressLogger
        }
    
        def startsProgressLoggerWhenRootSuiteIsStartedAndStopsWhenRootSuiteIsCompleted() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. src/syscall/syscall_plan9.go

    		if contains(string(e), msg) {
    			return true
    		}
    	}
    	return false
    }
    
    // contains is a local version of strings.Contains. It knows len(sep) > 1.
    func contains(s, sep string) bool {
    	n := len(sep)
    	c := sep[0]
    	for i := 0; i+n <= len(s); i++ {
    		if s[i] == c && s[i:i+n] == sep {
    			return true
    		}
    	}
    	return false
    }
    
    func (e ErrorString) Temporary() bool {
    	return e == EINTR || e == EMFILE || e.Timeout()
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. src/go/build/read_test.go

    		}
    		err := readGoInfo(strings.NewReader(tt.in), &info)
    		if err != nil {
    			t.Errorf("#%d: %v", i, err)
    			continue
    		}
    		b := &strings.Builder{}
    		sep := ""
    		for _, emb := range info.embeds {
    			fmt.Fprintf(b, "%s%v:%s", sep, emb.pos, emb.pattern)
    			sep = "\n"
    		}
    		got := b.String()
    		want := strings.Join(strings.Fields(tt.out), "\n")
    		if got != want {
    			t.Errorf("#%d: embeds:\n%s\nwant:\n%s", i, got, want)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6K bytes
    - Viewed (0)
Back to top