Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getJson (0.31 sec)

  1. 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)
  2. 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)
  3. 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)
  4. guava/src/com/google/common/net/MediaType.java

       *
       * @since 14.0
       */
      public static final MediaType APPLICATION_BINARY = createConstant(APPLICATION_TYPE, "binary");
    
      /**
       * 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");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/MediaType.java

       *
       * @since 14.0
       */
      public static final MediaType APPLICATION_BINARY = createConstant(APPLICATION_TYPE, "binary");
    
      /**
       * 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");
    
    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