Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,170 for JOIN (0.24 sec)

  1. .github/ISSUE_TEMPLATE/config.yml

    blank_issues_enabled: false
    contact_links:
      - name: MinIO Community Support
        url: https://slack.min.io
        about: Join here for Community Support
      - name: MinIO SUBNET Support
        url: https://min.io/pricing
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jul 08 15:44:43 UTC 2020
    - 257 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/vendor_list_issue11977.txt

    go list -f '{{join .TestImports "\n"}}' github.com/rsc/go-get-issue-11864/t
    stdout 'go-get-issue-11864/vendor/vendor.org/p'
    
    go list -f '{{join .XTestImports "\n"}}' github.com/rsc/go-get-issue-11864/tx
    stdout 'go-get-issue-11864/vendor/vendor.org/p'
    
    go list -f '{{join .XTestImports "\n"}}' github.com/rsc/go-get-issue-11864/vendor/vendor.org/tx2
    stdout 'go-get-issue-11864/vendor/vendor.org/tx2'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. security/pkg/nodeagent/caclient/providers/mock/mockcaclient.go

    )
    
    var (
    	sampleKeyCertsPath = "../../../../samples/certs/"
    	caCertPath         = path.Join(sampleKeyCertsPath, "ca-cert.pem")
    	caKeyPath          = path.Join(sampleKeyCertsPath, "ca-key.pem")
    	certChainPath      = []string{path.Join(sampleKeyCertsPath, "cert-chain.pem")}
    	rootCertPath       = path.Join(sampleKeyCertsPath, "root-cert.pem")
    )
    
    // CAClient is the mocked CAClient for testing.
    type CAClient struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/javaapplication/multi/app/App.java.template

    import static ${basePackagePrefix.raw}utilities.StringUtils.join;
    import static ${basePackagePrefix.raw}utilities.StringUtils.split;
    import static ${basePackagePrefix.raw}app.MessageUtils.getMessage;
    
    import org.apache.commons.text.WordUtils;
    
    public class App {
        public static void main(String[] args) {
            LinkedList tokens;
            tokens = split(getMessage());
            String result = join(tokens);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 586 bytes
    - Viewed (0)
  5. src/os/stat_test.go

    	if err := os.WriteFile(file, []byte(""), 0644); err != nil {
    		t.Fatal(err)
    	}
    	testFileStats(t, file)
    
    	filelink := filepath.Join(tmpdir, "link")
    	if err := os.Symlink(file, filelink); err != nil {
    		t.Fatal(err)
    	}
    	testSymlinkStats(t, filelink, false)
    	testSymlinkSameFile(t, file, filelink)
    	testSymlinkSameFileOpen(t, filelink)
    
    	linklink := filepath.Join(tmpdir, "linklink")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:38:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. helm/minio/templates/_helper_policy.tpl

      "Statement": [
    {{- range $i, $statement := .statements }}
        {
          "Effect": "{{ $statement.effect | default "Allow" }}",
          "Action": [
    "{{ $statement.actions | join "\",\n\"" }}"
          ]{{ if $statement.resources }},
          "Resource": [
    "{{ $statement.resources | join "\",\n\"" }}"
          ]{{ end }}
    {{- if $statement.conditions }}
    {{- $condition_len := len $statement.conditions }}
    {{- $condition_len := sub $condition_len 1 }}
          ,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 19 14:39:11 UTC 2023
    - 872 bytes
    - Viewed (0)
  7. src/io/ioutil/tempfile_test.go

    			wantRePat := "^" + regexp.QuoteMeta(filepath.Join(dir, tt.wantPrefix)) + "[0-9]+" + regexp.QuoteMeta(tt.wantSuffix) + "$"
    			runTestTempDir(t, tt.pattern, wantRePat)
    		})
    	}
    
    	// Separately testing "*xyz" (which has no prefix). That is when constructing the
    	// pattern to assert on, as in the previous loop, using filepath.Join for an empty
    	// prefix filepath.Join(dir, ""), produces the pattern:
    	//     ^<DIR>[0-9]+xyz$
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 18 00:47:29 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  8. src/cmd/go/go_windows_test.go

    		t.Fatal(err)
    	}
    	defer robustio.RemoveAll(tmp)
    
    	file := filepath.Join(tmp, "a.go")
    	err = os.WriteFile(file, []byte{}, 0644)
    	if err != nil {
    		t.Fatal(err)
    	}
    	dir := filepath.Join(tmp, "dir")
    	err = os.Mkdir(dir, 0777)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	noVolume := file[len(filepath.VolumeName(file)):]
    	wrongPath := filepath.Join(dir, noVolume)
    	cmd := testenv.Command(t, tg.goTool(), "build", noVolume)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:21:26 UTC 2022
    - 1K bytes
    - Viewed (0)
  9. istioctl/pkg/ztunnelconfig/ztunnelconfig_test.go

    		t.Fatalf("Unexpected output for 'istioctl %s'\n got: %q\nwant: %q", strings.Join(c.args, " "), output, c.expectedOutput)
    	}
    
    	if c.expectedString != "" && !strings.Contains(output, c.expectedString) {
    		t.Fatalf("Output didn't match for '%s %s'\n got %v\nwant: %v", cmd.Name(), strings.Join(c.args, " "), output, c.expectedString)
    	}
    
    	if c.wantException {
    		if fErr == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 21:51:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/util.go

    		servingString = fmt.Sprintf(" validServingFor=[%s]", strings.Join(validServingNames, ","))
    	}
    
    	groupString := ""
    	if len(certificate.Subject.Organization) > 0 {
    		groupString = fmt.Sprintf(" groups=[%s]", strings.Join(certificate.Subject.Organization, ","))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 21 07:29:30 UTC 2022
    - 2.1K bytes
    - Viewed (0)
Back to top