Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for get_json (0.14 sec)

  1. 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)
  2. src/cmd/go/testdata/script/test_json.txt

    Russ Cox <******@****.***> 1667840325 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. samples/bookinfo/src/details/details.rb

        book = json['items'][0]['volumeInfo']
    
        language = book['language'] === 'en'? 'English' : 'unknown'
        type = book['printType'] === 'BOOK'? 'paperback' : 'unknown'
        isbn10 = get_isbn(book, 'ISBN_10')
        isbn13 = get_isbn(book, 'ISBN_13')
    
        return {
            'id' => id,
            'author': book['authors'][0],
            'year': book['publishedDate'],
            'type' => type,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. 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)
  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. 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)
  10. guava/src/com/google/common/net/MediaType.java

      /**
       * Media type for the <a href="https://tools.ietf.org/html/rfc7946">GeoJSON Format</a>, a
       * geospatial data interchange format based on JSON.
       *
       * @since 28.0
       */
      public static final MediaType GEO_JSON = createConstant(APPLICATION_TYPE, "geo+json");
    
      public static final MediaType GZIP = createConstant(APPLICATION_TYPE, "x-gzip");
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
Back to top