Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for Qux (0.22 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

         *     def copy = property.shallowCopy()
         *     property.set("bar")  // does not affect contents of the copy
         *     upstream.set("qux")  // does affect the content of the copy
         *
         *     println(copy.get())  // prints qux
         * </pre>
         * <p>
         * The copy doesn't share the producer of this property, but inherits producers of the current property value.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

            javaLibrary(mavenRepo.module("org.test", "baz", "1.0+10")).withModuleMetadata().publish()
            javaLibrary(mavenRepo.module("org.test", "qux", "1.0-latest")).withModuleMetadata().publish()
    
            createBuildScripts("""
    
                dependencies {
                    api "org.test:foo:1.0"
                    implementation "org.test:bar:1.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  3. src/net/http/cookiejar/jar_test.go

    		[]string{
    			"A=a; path=/foo/bar",
    			"X=x; path=/foo/bar",
    			"Y=y; path=/foo/bar/baz/qux",
    			"B=b; path=/foo/bar/baz/qux",
    			"C=c; path=/foo/bar/baz",
    			"W=w; path=/foo/bar/baz",
    			"Z=z; path=/foo",
    			"D=d; path=/foo"},
    		"A=a B=b C=c D=d W=w X=x Y=y Z=z",
    		[]query{
    			{"http://www.host.test/foo/bar/baz/qux", "Y=y B=b C=c W=w A=a X=x Z=z D=d"},
    			{"http://www.host.test/foo/bar/baz/", "C=c W=w A=a X=x Z=z D=d"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. src/mime/mediatype_test.go

    		// #attmissingdisposition
    		{`filename=foo.html`,
    			"", m()},
    		// #attmissingdisposition2
    		{`x=y; filename=foo.html`,
    			"", m()},
    		// #attmissingdisposition3
    		{`"foo; filename=bar;baz"; filename=qux`,
    			"", m()},
    		// #attmissingdisposition4
    		{`filename=foo.html, filename=bar.html`,
    			"", m()},
    		// #emptydisposition
    		{`; filename=foo.html`,
    			"", m()},
    		// #doublecolon
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:58:37 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollection.java

         *     def copy = collection.shallowCopy()
         *     collection.from("bar.txt")  // does not affect contents of the copy
         *     innerCollection.from("qux.txt")  // does affect the content of the copy
         *
         *     println(copy.files)  // prints foo.txt, qux.txt
         * </pre>
         * <p>
         * The copy inherits the current set of tasks that build this collection.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. src/archive/tar/writer_test.go

    	if err != nil {
    		t.Fatalf("os.Stat: %v", err)
    	}
    	contents := strings.Repeat(" ", int(hdr.Size))
    
    	hdr.Xattrs = map[string]string{
    		"foo": "foo",
    		"bar": "bar",
    		"baz": "baz",
    		"qux": "qux",
    	}
    
    	var buf bytes.Buffer
    	writer := NewWriter(&buf)
    	if err := writer.WriteHeader(hdr); err != nil {
    		t.Fatal(err)
    	}
    	if _, err = writer.Write([]byte(contents)); err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationMutationIntegrationTest.groovy

                mavenRepo.module("org", "foo", version).publish()
                mavenRepo.module("org", "bar", version).publish()
                mavenRepo.module("org", "baz", version).publish()
                mavenRepo.module("org", "qux", version).publish()
            }
    
            buildFile << """
                ${mavenTestRepository()}
    
                configurations {
                    dependencyScope("parent")
                    dependencyScope("deps") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:56 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. src/encoding/json/scanner_test.go

    		ok   bool
    	}{
    		{Name(""), `foo`, false},
    		{Name(""), `}{`, false},
    		{Name(""), `{]`, false},
    		{Name(""), `{}`, true},
    		{Name(""), `{"foo":"bar"}`, true},
    		{Name(""), `{"foo":"bar","bar":{"baz":["qux"]}}`, true},
    	}
    	for _, tt := range tests {
    		t.Run(tt.Name, func(t *testing.T) {
    			if ok := Valid([]byte(tt.data)); ok != tt.ok {
    				t.Errorf("%s: Valid(`%s`) = %v, want %v", tt.Where, tt.data, ok, tt.ok)
    			}
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:00:37 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. src/path/filepath/path_windows_test.go

    	tests := []struct {
    		arg  string
    		want string
    	}{
    		{"", ""},
    		{".", "."},
    		{"./foo/bar", `FOO\BAR`},
    		{"/", `\`},
    		{"/foo/bar", `\FOO\BAR`},
    		{"/foo/bar/baz/qux", `\FOO\BAR\BAZ\QUX`},
    		{"foo/bar", `FOO\BAR`},
    		{"C:/foo/bar", `C:\FOO\BAR`},
    		{"C:foo/bar", `C:FOO\BAR`},
    		{"c:/foo/bar", `C:\FOO\BAR`},
    		{"C:/foo/bar", `C:\FOO\BAR`},
    		{"C:/foo/bar/", `C:\FOO\BAR`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/heap/heap_test.go

    	metricRecorder := new(testMetricRecorder)
    	h := NewWithRecorder(testHeapObjectKeyFunc, compareInts, metricRecorder)
    	h.Add(mkHeapObj("foo", 10))
    	h.Add(mkHeapObj("bar", 1))
    	h.Add(mkHeapObj("baz", 100))
    	h.Add(mkHeapObj("qux", 11))
    
    	if *metricRecorder != 4 {
    		t.Errorf("expected count to be 4 but got %d", *metricRecorder)
    	}
    	if err := h.Delete(mkHeapObj("bar", 1)); err != nil {
    		t.Fatal(err)
    	}
    	if *metricRecorder != 3 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top