Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for get_json (0.19 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. 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)
  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. 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)
  5. android/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)
  6. pkg/kube/inject/webhook_test.go

    	for _, c := range got.Spec.Containers {
    		for _, env := range c.Env {
    			if env.ValueFrom != nil && env.ValueFrom.FieldRef != nil {
    				env.ValueFrom.FieldRef.APIVersion = ""
    			}
    			// check if metajson is encoded correctly
    			if strings.HasPrefix(env.Name, "ISTIO_METAJSON_") {
    				var mm map[string]string
    				if err := json.Unmarshal([]byte(env.Value), &mm); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 39K bytes
    - Viewed (1)
Back to top