Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,099 for String4 (0.1 sec)

  1. cmd/signature-v4-parser_test.go

    	return strings.Join([]string{
    		accessKey,
    		date,
    		region,
    		service,
    		requestVersion,
    	}, SlashSeparator)
    }
    
    // generate CredentialHeader from its fields.
    func generateCredentials(t *testing.T, accessKey string, date string, region, service, requestVersion string) credentialHeader {
    	cred := credentialHeader{
    		accessKey: accessKey,
    	}
    	parsedDate, err := time.Parse(yyyymmdd, date)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    	}
    	sort.Strings(list)
    	return strings.Join(list, ",")
    }
    
    func (ss stringSet) Set(flag string) error {
    	for _, name := range strings.Split(flag, ",") {
    		if len(name) == 0 {
    			return fmt.Errorf("empty string")
    		}
    		if !strings.Contains(name, ".") {
    			name = strings.ToLower(name)
    		}
    		ss[name] = true
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testsanitizers/cc_test.go

    func (c *config) goCmdWithExperiments(subcommand string, args []string, experiments []string) *exec.Cmd {
    	cmd := exec.Command("go", subcommand)
    	cmd.Args = append(cmd.Args, c.goFlags...)
    	cmd.Args = append(cmd.Args, args...)
    	replaceEnv(cmd, "CGO_CFLAGS", strings.Join(c.cFlags, " "))
    	replaceEnv(cmd, "CGO_LDFLAGS", strings.Join(c.ldFlags, " "))
    	appendExperimentEnv(cmd, experiments)
    	return cmd
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. internal/s3select/sql/parser.go

    type LiteralString string
    
    // Capture interface used by participle
    func (ls *LiteralString) Capture(values []string) error {
    	// Remove enclosing single quote
    	n := len(values[0])
    	r := values[0][1 : n-1]
    	// Translate doubled quotes
    	*ls = LiteralString(strings.ReplaceAll(r, "''", "'"))
    	return nil
    }
    
    // LiteralList is a type for parsed SQL lists literals
    type LiteralList []string
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. misc/ios/go_ios_exec.go

    <key>CFBundleShortVersionString</key><string>1.0</string>
    <key>CFBundleIdentifier</key><string>` + bundleID + `</string>
    <key>CFBundleResourceSpecification</key><string>ResourceRules.plist</string>
    <key>LSRequiresIPhoneOS</key><true/>
    <key>CFBundleDisplayName</key><string>gotest</string>
    <key>GoExecWrapperWorkingDirectory</key><string>` + pkgpath + `</string>
    </dict>
    </plist>
    `
    }
    
    func entitlementsPlist() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storagemigration/v1alpha1/generated.pb.go

    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&StorageVersionMigration{`,
    		`ObjectMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ObjectMeta), "ObjectMeta", "v1.ObjectMeta", 1), `&`, ``, 1) + `,`,
    		`Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "StorageVersionMigrationSpec", "StorageVersionMigrationSpec", 1), `&`, ``, 1) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/node/v1alpha1/generated.pb.go

    	}
    	mapStringForPodFixed += "}"
    	s := strings.Join([]string{`&Overhead{`,
    		`PodFixed:` + mapStringForPodFixed + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *RuntimeClass) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&RuntimeClass{`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/html.go

    	"os/exec"
    	"path/filepath"
    	"strconv"
    	"strings"
    )
    
    type HTMLWriter struct {
    	w             io.WriteCloser
    	Func          *Func
    	path          string
    	dot           *dotWriter
    	prevHash      []byte
    	pendingPhases []string
    	pendingTitles []string
    }
    
    func NewHTMLWriter(path string, f *Func, cfgMask string) *HTMLWriter {
    	path = strings.Replace(path, "/", string(filepath.Separator), -1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/config.go

    		return out, nil
    	}
    
    	values := strings.Split(options, ",")
    	for _, v := range values {
    		parts := strings.Split(v, "=")
    		if len(parts) != 2 {
    			return nil, fmt.Errorf("failed parsing config options: %s", options)
    		}
    		out[strings.TrimSpace(parts[0])] = strings.TrimSpace(parts[1])
    	}
    	return out, nil
    }
    
    // String implements fmt.Stringer
    func (c *Config) String() string {
    	result := ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. internal/hash/checksum.go

    		if len(res) == 0 {
    			res = make([]map[string]string, parts)
    		}
    		b = b[n:]
    		for part := 0; part < int(parts); part++ {
    			if len(b) < length {
    				break
    			}
    			// Read part checksum
    			cs := base64.StdEncoding.EncodeToString(b[:length])
    			b = b[length:]
    			if res[part] == nil {
    				res[part] = make(map[string]string, 1)
    			}
    			res[part][typ.String()] = cs
    		}
    	}
    	return res
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 08 16:18:34 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top