Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 958 for JOIN (0.04 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelMapIntegrationTest.groovy

                    create("print") {
                      doLast {
                        println "containerThings: ${$.container.things.collect { it.name + ":" + it.value }.sort().join(",")}"
                        println "things: ${$.things.collect { it.name + ":" + it.value }.sort().join(",")}"
                      }
                    }
                  }
                }
            '''
    
            then:
            succeeds "print"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/envcmd/env.go

    		return nil
    	}
    	cmd := b.GccCmd(".", "")
    
    	join := func(s []string) string {
    		q, err := quoted.Join(s)
    		if err != nil {
    			return strings.Join(s, " ")
    		}
    		return q
    	}
    
    	ret := []cfg.EnvVar{
    		// Note: Update the switch in runEnv below when adding to this list.
    		{Name: "CGO_CFLAGS", Value: join(cflags)},
    		{Name: "CGO_CPPFLAGS", Value: join(cppflags)},
    		{Name: "CGO_CXXFLAGS", Value: join(cxxflags)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. pkg/controller/resourcequota/resource_quota_controller_test.go

    					v1.ResourceCPU:    resource.MustParse("0"),
    					v1.ResourceMemory: resource.MustParse("0"),
    					v1.ResourcePods:   resource.MustParse("0"),
    				},
    			},
    			expectedActionSet: sets.NewString(
    				strings.Join([]string{"update", "resourcequotas", "status"}, "-"),
    			),
    			items: newTestPods(),
    		},
    		"matching-best-effort-scoped-quota": {
    			gvr: v1.SchemeGroupVersion.WithResource("pods"),
    			quota: v1.ResourceQuota{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //	kind: JoinConfiguration
    //
    // To print the defaults for "init" and "join" actions use the following commands:
    //
    //	kubeadm config print init-defaults
    //	kubeadm config print join-defaults
    //
    // The list of configuration types that must be included in a configuration file depends by the action you are
    // performing (init or join) and by the configuration options you are going to use (defaults or advanced customization).
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/marshal_test.go

    			name:         "FooBar",
    			fileContents: bytes.Join([][]byte{files["foo"], files["bar"]}, []byte(constants.YAMLDocumentSeparator)),
    			gvkmap: kubeadmapi.DocumentMap{
    				{Group: "foo.k8s.io", Version: "v1", Kind: "Foo"}: files["foo"],
    				{Group: "bar.k8s.io", Version: "v2", Kind: "Bar"}: files["bar"],
    			},
    		},
    		{
    			name:         "FooTwiceInvalid",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. pkg/volume/testing/volume_host.go

    }
    
    func (f *fakeVolumeHost) GetPluginDir(podUID string) string {
    	return filepath.Join(f.rootDir, "plugins", podUID)
    }
    
    func (f *fakeVolumeHost) GetVolumeDevicePluginDir(pluginName string) string {
    	return filepath.Join(f.rootDir, "plugins", pluginName, "volumeDevices")
    }
    
    func (f *fakeVolumeHost) GetPodsDir() string {
    	return filepath.Join(f.rootDir, "pods")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	testInstall(t, "./testp1"+exeSuffix,
    		filepath.Join(libgodir, libgoa),
    		filepath.Join(libgodir, "libgo.h"),
    		"go", "install", "-buildmode=c-archive", "./libgo")
    
    	// Test building libgo other than installing it.
    	// Header files are now present.
    	testInstall(t, "./testp2"+exeSuffix, "libgo.a", "libgo.h",
    		"go", "build", "-buildmode=c-archive", filepath.Join(".", "libgo", "libgo.go"))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/LockFileReaderWriterTest.groovy

            lockFileReaderWriter.writeUniqueLockfile([a: ['foo', 'bar'], b: ['foo'], c: []])
    
            then:
            tmpDir.file(LockFileReaderWriter.UNIQUE_LOCKFILE_NAME).text == """${LockFileReaderWriter.LOCKFILE_HEADER_LIST.join('\n')}
    bar=a
    foo=a,b
    empty=c
    """.denormalize()
            !lockDir.exists()
        }
    
        def 'deletes an unique lock file on empty lock state'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. android/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)
  10. tests/integration/pilot/analyze_test.go

    			// Parse error as the yaml file itself is not valid yaml.
    			output, err = istioctlSafe(t, istioCtl, ns.Name(), false, invalidFile)
    			g.Expect(strings.Join(output, "\n")).To(ContainSubstring("Error(s) adding files"))
    			g.Expect(strings.Join(output, "\n")).To(ContainSubstring(fmt.Sprintf("errors parsing content \"%s\"", invalidFile)))
    
    			g.Expect(err).To(MatchError(analyze.FileParseError{}))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top