Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 257 for Gson (0.03 sec)

  1. src/cmd/go/internal/modindex/scan.go

    		p.ErrorString = e.Error()
    	}
    	s, err := json.Marshal(p)
    	if err != nil {
    		panic(err) // This should be impossible because scanner.Error contains only strings and ints.
    	}
    	return string(s)
    }
    
    // parseErrorFromString converts a string produced by parseErrorToString back
    // to an error.  An empty string is converted to a nil error, and all
    // other strings are expected to be JSON-marshaled parseError structs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. tests/embedded_struct_test.go

    	b, err := json.Marshal(c)
    	return string(b[:]), err
    }
    
    func (c *Content) Scan(src interface{}) error {
    	var value Content
    	str, ok := src.(string)
    	if !ok {
    		byt, ok := src.([]byte)
    		if !ok {
    			return errors.New("Embedded.Scan byte assertion failed")
    		}
    		if err := json.Unmarshal(byt, &value); err != nil {
    			return err
    		}
    	} else {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_chatty_parallel_fail.txt

    stdout -count=1 '^=== (CONT|NAME)  TestChattyParallel/sub-2\n    chatty_parallel_test.go:38: error from sub-2$'
    
    # Run parallel chatty tests with -json.
    # Check that each output is attributed to the right test.
    ! go test -json -parallel 3 chatty_parallel_test.go -v
    stdout -count=1 '"Test":"TestChattyParallel/sub-0","Output":"    chatty_parallel_test.go:38: error from sub-0\\n"'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. src/main/resources/fess_api.xml

    <components>
    	<include path="fess_config.xml"/>
    
    	<component name="webApiManagerFactory" class="org.codelibs.fess.api.WebApiManagerFactory">
    	</component>
    
    	<component name="searchApiManager" class="org.codelibs.fess.api.json.SearchApiManager">
    	</component>
    	<component name="searchEngineApiManager" class="org.codelibs.fess.api.engine.SearchEngineApiManager">
    	</component>
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Apr 02 03:04:36 UTC 2023
    - 534 bytes
    - Viewed (0)
  5. src/cmd/go/internal/tool/tool.go

    			continue
    		}
    		fmt.Println(name)
    	}
    }
    
    func impersonateDistList(args []string) (handled bool) {
    	fs := flag.NewFlagSet("go tool dist list", flag.ContinueOnError)
    	jsonFlag := fs.Bool("json", false, "produce JSON output")
    	brokenFlag := fs.Bool("broken", false, "include broken ports")
    
    	// The usage for 'go tool dist' claims that
    	// “All commands take -v flags to emit extra information”,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 18:02:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/main/webapp/js/search.js

              }
            })
            .fail(function(data) {
              $favorite.attr("href", "#" + docId);
              // alert(JSON.stringify(data));
            });
        }
        $(this).attr("href", "#");
        return false;
      });
    
      if ($favorites.length > 0) {
        $.ajax({
          dataType: "json",
          cache: false,
          type: "get",
          timeoutNumber: 10000,
          url: contextPath + "/api/v1/favorites",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. .teamcity/performance-test-durations.json

    Bo Zhang <******@****.***> 1715582813 +0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTaskIntegrationTest.kt

            firstAcceptedApiChangesFile = projectDir.resolve("src/changes/accepted-changes/accepted-public-api-changes.json")
            secondAcceptedApiChangesFile = projectDir.resolve("src/changes/accepted-changes/second-accepted-public-api-changes.json")
    
            projectDir.resolve("build.gradle.kts")
                .writeText(
                    """
                        plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. README.md

     - [Git](https://github.com/codelibs/fess-ds-git)
     - [Gitbucket](https://github.com/codelibs/fess-ds-gitbucket)
     - [G Suite](https://github.com/codelibs/fess-ds-gsuite)
     - [JSON](https://github.com/codelibs/fess-ds-json)
     - [Office 365](https://github.com/codelibs/fess-ds-office365)
     - [S3](https://github.com/codelibs/fess-ds-s3)
     - [Salesforce](https://github.com/codelibs/fess-ds-salesforce)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Feb 25 00:40:07 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

                            artifactRules = if (index == 0) {
                                // The artifact rule report/css/*.css => performanceResultsDir is there to clean up the target directory.
                                // If we don't clean that up there might be leftover json files from other report builds running on the same machine.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:42 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top