Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for getJson (0.11 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalProblemDetails.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.protocol;
    
    import org.gradle.api.NonNullApi;
    
    @NonNullApi
    public interface InternalProblemDetails {
    
        String getJson();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 778 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/LibrariesSourceGeneratorTest.groovy

            sources.hasDependencyAlias(name, method)
    
            where:
            name                  | method
            'groovy'              | 'getGroovy'
            'groovy-json'         | 'getJson'
            'groovy.json'         | 'getJson'
            'groovyJson'          | 'getGroovyJson'
            'lang3'               | 'getLang3'
            'kotlinx.awesome.lib' | 'getLib'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/internal/trace/traceviewer/mmu.go

            if (!chartsReady) return;
            var container = $('#mmu_chart');
            container.css('opacity', '.5');
            refreshChart.count++;
            var seq = refreshChart.count;
            $.getJSON('?mode=plot&flags=' + mmuFlags())
             .fail(function(xhr, status, error) {
               alert('failed to load plot: ' + status);
             })
             .done(function(result) {
               if (refreshChart.count === seq)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. pilot/pkg/model/conversion_test.go

    		t.Errorf("FromYAML should have failed using Schema with bad MessageName")
    	}
    
    	gotJSON, err := protomarshal.ToJSON(msg)
    	if err != nil {
    		t.Errorf("ToJSON failed: %v", err)
    	}
    	if gotJSON != strings.Join(strings.Fields(wantJSON), "") {
    		t.Errorf("ToJSON failed: got %s, want %s", gotJSON, wantJSON)
    	}
    
    	if _, err = protomarshal.ToJSON(nil); err == nil {
    		t.Error("should produce an error")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 20:50:14 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  6. operator/cmd/mesh/operator_test.go

    	cmd += " --manifests=" + string(snapshotCharts)
    	cmd += " --output " + odArgs.common.outputFormat
    
    	gotJSON, err := runCommand(cmd)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if refreshGoldenFiles() {
    		t.Logf("Refreshing golden file for %s", goldenFilepath)
    		if err := os.WriteFile(goldenFilepath, []byte(gotJSON), 0o644); err != nil {
    			t.Error(err)
    		}
    	}
    
    	wantJSON, err := readFile(goldenFilepath)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. src/main/webapp/js/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/objectmeta_test.go

    	if got, err := noxuResourceClient.Update(context.TODO(), obj, metav1.UpdateOptions{}); err == nil {
    		objJSON, _ := json.Marshal(obj.Object)
    		gotJSON, _ := json.Marshal(got.Object)
    		t.Fatalf("Expected update error, but didn't get one\nin: %s\nresponse: %v", string(objJSON), string(gotJSON))
    	}
    
    	t.Logf("Trying to fail on updating with invalid embedded label")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 19K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    								}
    							}
    						}
    					}
    				}
    				if(!is_callback) {
    					ul1 = $("<ul />");
    					ul1.append(d);
    					d = ul1;
    				}
    				return d;
    			},
    			get_json : function (obj, li_attr, a_attr, is_callback) {
    				var result = [],
    					s = this._get_settings(),
    					_this = this,
    					tmp1, tmp2, li, a, t, lang;
    				obj = this._get_node(obj);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  10. src/encoding/json/decode_test.go

    			} else if err != nil {
    				return
    			}
    			if got := v.Elem().Interface(); !reflect.DeepEqual(got, tt.out) {
    				gotJSON, _ := Marshal(got)
    				wantJSON, _ := Marshal(tt.out)
    				t.Fatalf("%s: Decode:\n\tgot:  %#+v\n\twant: %#+v\n\n\tgotJSON:  %s\n\twantJSON: %s", tt.Where, got, tt.out, gotJSON, wantJSON)
    			}
    
    			// Check round trip also decodes correctly.
    			if tt.err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
Back to top