Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 958 for JOIN (0.15 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerIntegrationTest.groovy

            metadataListerClass = 'MyLister'
            def listing = moduleToVersions.collect { k, v ->
                "                    if (name=='$k') { details.listed([${v.collect { "'$it'" }.join(',')}]) }"
            }.join(' else \n')
            buildFile << """
                class MyLister implements ComponentMetadataVersionLister {
                    void execute(ComponentMetadataListerDetails details) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/etcd/local_test.go

    			},
    		},
    	}
    
    	patchesPath := filepath.Join(tmpdir, "patch-files")
    	err := os.MkdirAll(patchesPath, 0777)
    	if err != nil {
    		t.Fatalf("Couldn't create %s", patchesPath)
    	}
    
    	patchString := dedent.Dedent(`
    	metadata:
    	  annotations:
    	    patched: "true"
    	`)
    
    	err = os.WriteFile(filepath.Join(patchesPath, kubeadmconstants.Etcd+".yaml"), []byte(patchString), 0644)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskIncrementalJavaCompilationIntegrationTest.groovy

                }
            """
            file("impl/build.gradle") << """
                def layout = project.layout
                compileJava.doFirst {
                    options.compilerArgs << "--module-path" << classpath.join(File.pathSeparator)
                    classpath = layout.files()
                }
            """
            succeeds "impl:${language.compileTaskName}"
    
            when:
            moduleInfo.text = """
                module api {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java

      }
    
      public void testJoin() {
        assertThat(UnsignedBytes.join(",", new byte[] {})).isEmpty();
        assertThat(UnsignedBytes.join(",", new byte[] {(byte) 1})).isEqualTo("1");
        assertThat(UnsignedBytes.join(",", (byte) 1, (byte) 2)).isEqualTo("1,2");
        assertThat(UnsignedBytes.join("", (byte) 1, (byte) 2, (byte) 3)).isEqualTo("123");
        assertThat(UnsignedBytes.join(",", (byte) 128, (byte) -1)).isEqualTo("128,255");
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    	for _, fn := range filenames {
    		// Use path.Join for consistency with io/fs pathnames.
    		fn = path.Join(mcDir, fn)
    		// TODO(jba): check that the file mentions each feature?
    		if err := checkFragmentFile(docFS, fn); err != nil {
    			errs = append(errs, fmt.Errorf("%s: %v\nSee doc/README.md for more information.", path.Join(docRoot, fn), err))
    		}
    	}
    	return errors.Join(errs...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    	// Make sure the certificates generated from the upgrade are readable from disk
    	tlsInfo := transport.TLSInfo{
    		CertFile:      filepath.Join(c.CertificatesDir, constants.EtcdCACertName),
    		KeyFile:       filepath.Join(c.CertificatesDir, constants.EtcdHealthcheckClientCertName),
    		TrustedCAFile: filepath.Join(c.CertificatesDir, constants.EtcdHealthcheckClientKeyName),
    	}
    	_, err := tlsInfo.ClientConfig()
    	return err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  7. pkg/volume/iscsi/iscsi_util_test.go

    		filepath.Join(config.DefaultKubeletVolumeDevicesDirName, "iface-127.0.0.1:3260/192.168.0.2:3260-iqn.2003-01.io.k8s:e2e.volume-1-lun-4"),
    		filepath.Join(config.DefaultKubeletVolumeDevicesDirName, "iface-127.0.0.1:3260/192.168.0.3:3260-iqn.2003-01.io.k8s:e2e.volume-1-lun-5"),
    	}
    
    	for _, d := range subdirs {
    		if err := os.MkdirAll(filepath.Join(dir, d), os.ModePerm); err != nil {
    			return dir, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 09:43:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/kube.go

    	if !path.IsAbs(defaultsIOPFile) {
    		defaultsIOPFile = filepath.Join(testenv.IstioSrc, defaultsIOPFile)
    	}
    	baseIOP := cfg.BaseIOPFile
    	if !path.IsAbs(baseIOP) {
    		baseIOP = filepath.Join(testenv.IstioSrc, baseIOP)
    	}
    
    	args := installArgs{
    		Files: []string{
    			baseIOP,
    			defaultsIOPFile,
    			iopFile,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. tests/scan_test.go

    	if err := DB.Select("people.*, addresses.*").
    		Table("people").
    		Joins("inner join person_addresses on people.id = person_addresses.person_id").
    		Joins("inner join addresses on person_addresses.address_id = addresses.id").
    		Find(&personAddressInfoList).Error; err != nil {
    		t.Errorf("Failed to run join query, got error: %v", err)
    	}
    
    	personMatched := false
    	addressMatched := false
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    			s = append(s, "  "+fmtHelp(prefix+choice, configHelp[choice]))
    		}
    		radioStrings = append(radioStrings, strings.Join(s, "\n"))
    	}
    	sort.Strings(variables)
    	sort.Strings(radioStrings)
    	return help + strings.Join(variables, "\n") + "\n\n" +
    		"  Option groups (only set one per group):\n" +
    		strings.Join(radioStrings, "\n")
    }
    
    func reportHelp(c string, cum, redirect bool) string {
    	h := []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top