Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 958 for JOIN (0.13 sec)

  1. src/cmd/fix/typecheck.go

    			}
    		}
    	}
    	if nparen != 0 {
    		// probably can't happen
    		return nil
    	}
    	if i < len(s) {
    		out = append(out, s[i:])
    	}
    	return out
    }
    
    // join is the inverse of split.
    func join(x []string) string {
    	return strings.Join(x, ", ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 22:02:42 UTC 2022
    - 20.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/constants/constants.go

    func GetStaticPodDirectory() string {
    	return filepath.Join(KubernetesDir, ManifestsSubDirName)
    }
    
    // GetStaticPodFilepath returns the location on the disk where the Static Pod should be present
    func GetStaticPodFilepath(componentName, manifestsDir string) string {
    	return filepath.Join(manifestsDir, componentName+".yaml")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. .idea/inspectionProfiles/Gradle.xml

          <replaceConfiguration name="Join combined with collect" suppressId="join_with_collect" problemDescriptor="Use a `join` method overload" text="$callJoin$($sep$, $callCollect$($src$, $transform$))" recursive="false" caseInsensitive="false" type="JAVA" pattern_context="default" reformatAccordingToStyle="true" shortenFQN="true" useStaticImport="true" replacement="org.gradle.util.internal.CollectionUtils.join($sep$, $src$, $transform$)">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/job/CrawlJob.java

                cmdList.add(StringUtils.join(webConfigIds, ','));
            }
            if (fileConfigIds != null && fileConfigIds.length > 0) {
                cmdList.add("-f");
                cmdList.add(StringUtils.join(fileConfigIds, ','));
            }
            if (dataConfigIds != null && dataConfigIds.length > 0) {
                cmdList.add("-d");
                cmdList.add(StringUtils.join(dataConfigIds, ','));
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/etcd/etcd.go

    		return nil, err
    	}
    	klog.V(1).Infof("etcd endpoints read from pods: %s", strings.Join(endpoints, ","))
    
    	// Creates an etcd client
    	etcdClient, err := New(
    		endpoints,
    		filepath.Join(certificatesDir, constants.EtcdCACertName),
    		filepath.Join(certificatesDir, constants.EtcdHealthcheckClientCertName),
    		filepath.Join(certificatesDir, constants.EtcdHealthcheckClientKeyName),
    	)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. src/testing/fstest/testfs.go

    		}
    		t.errorf("expected empty file system but found files:\n%s", strings.Join(list, "\n"))
    	}
    	for _, name := range expected {
    		if !found[name] {
    			t.errorf("expected but not found: %s", name)
    		}
    	}
    	if len(t.errors) == 0 {
    		return nil
    	}
    	return fmt.Errorf("TestFS found errors:\n%w", errors.Join(t.errors...))
    }
    
    // An fsTester holds state for running the test.
    type fsTester struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/gc.go

    			}
    			if !isCgo && isOverlay {
    				rewrite += overlayPath + "=>" + filepath.Join(rewriteDir, base) + ";"
    			} else if isCgo {
    				// Generate rewrites for non-Go files copied to files in objdir.
    				if filepath.Dir(path) == a.Package.Dir {
    					// This is a file copied to objdir.
    					overlayNonGoRewrites += filepath.Join(objdir, base) + "=>" + filepath.Join(rewriteDir, base) + ";"
    				}
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/primitives/DoublesTest.java

      public void testJoin() {
        assertThat(Doubles.join(",", EMPTY)).isEmpty();
        assertThat(Doubles.join(",", ARRAY1)).isEqualTo("1.0");
        assertThat(Doubles.join(",", (double) 1, (double) 2)).isEqualTo("1.0,2.0");
        assertThat(Doubles.join("", (double) 1, (double) 2, (double) 3)).isEqualTo("1.02.03.0");
      }
    
      public void testJoinNonTrivialDoubles() {
        assertThat(Doubles.join(",", EMPTY)).isEmpty();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/fsys/fsys.go

    		// On Windows filepath.Join(cwd, path) doesn't always work. In general
    		// filepath.Abs needs to make a syscall on Windows. Elsewhere in cmd/go
    		// use filepath.Join(cwd, path), but cmd/go specifically supports Windows
    		// paths that start with "\" which implies the path is relative to the
    		// volume of the working directory. See golang.org/issue/8130.
    		return filepath.Join(v, path)
    	}
    
    	// Make the path absolute.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. pkg/spiffe/spiffe_test.go

    	// make foo-certs-selfSigned
    	validRootCertFile1    = filepath.Join(env.IstioSrc, "security/pkg/pki/testdata/spiffe-root-cert-1.pem")
    	validRootCertFile2    = filepath.Join(env.IstioSrc, "security/pkg/pki/testdata/spiffe-root-cert-2.pem")
    	validIntCertFile      = filepath.Join(env.IstioSrc, "security/pkg/pki/testdata/spiffe-int-cert.pem")
    	validWorkloadCertFile = filepath.Join(env.IstioSrc, "security/pkg/pki/testdata/spiffe-workload-cert.pem")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top