Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 289 for Gson (0.05 sec)

  1. src/cmd/go/testdata/script/index.txt

    # Check that standard library packages are cached.
    go list -json math # refresh cache
    env GODEBUG=gofsystrace=1,gofsystracelog=fsys.log
    go list -json math
    ! grep math/abs.go fsys.log
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 11 16:51:38 UTC 2022
    - 229 bytes
    - Viewed (0)
  2. .space/safe-merge.json

    Bogdan Mukvich <******@****.***> 1679919165 +0200
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Mar 27 13:43:47 UTC 2023
    - 280 bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/ITBase.java

            if (testToken != null) {
                return;
            }
            given().contentType("application/json").delete(getEsUrl() + "/fess_config.access_token/_doc/" + DEFAULT_TEST_TOKEN_ID);
        }
    
        public static void refresh() {
            given().contentType("application/json").post(getEsUrl() + "/_refresh");
        }
    
        public static String getFessUrl() {
            return System.getProperty("test.fess.url", DEFAULT_FESS_URL);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/download.go

    type ModuleJSON struct {
    	Path     string `json:",omitempty"`
    	Version  string `json:",omitempty"`
    	Query    string `json:",omitempty"`
    	Error    string `json:",omitempty"`
    	Info     string `json:",omitempty"`
    	GoMod    string `json:",omitempty"`
    	Zip      string `json:",omitempty"`
    	Dir      string `json:",omitempty"`
    	Sum      string `json:",omitempty"`
    	GoModSum string `json:",omitempty"`
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_issue6480.txt

    -- now/now.go --
    // Writes time.Now() to a file
    package main
    
    import (
    	"encoding/json"
    	"fmt"
    	"os"
    	"time"
    )
    
    func main() {
    	if err := json.NewEncoder(os.Stdout).Encode(time.Now()); err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(1)
    	}
    }
    -- mtime/mtime.go --
    package main
    
    import (
    	"encoding/json"
    	"fmt"
    	"os"
    )
    
    func main() {
    	info, err := os.Stat(os.Args[1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/CurlHelper.java

            return request(Method.GET, path).header("Content-Type", "application/json");
        }
    
        public CurlRequest post(final String path) {
            return request(Method.POST, path).header("Content-Type", "application/json");
        }
    
        public CurlRequest put(final String path) {
            return request(Method.PUT, path).header("Content-Type", "application/json");
        }
    
        public CurlRequest delete(final String path) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/internal/test2json/test2json.go

    )
    
    // event is the JSON struct we emit.
    type event struct {
    	Time    *time.Time `json:",omitempty"`
    	Action  string
    	Package string     `json:",omitempty"`
    	Test    string     `json:",omitempty"`
    	Elapsed *float64   `json:",omitempty"`
    	Output  *textBytes `json:",omitempty"`
    }
    
    // textBytes is a hack to get JSON to emit a []byte as a string
    // without actually copying it to a string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

    /**
     * Process test-class-data.json and generates test-buckets.json
     *
     * Usage: `mvn compile exec:java@update-test-buckets -DinputTestClassDataJson=/path/to/test-class-data.json`.
     * You can get the JSON file as an artifacts of the "autoUpdateTestSplitJsonOnGradleMaster" pipeline in TeamCity.
     */
    fun main() {
        val model = CIBuildModel(
            projectId = "Check",
            branch = VersionedSettingsBranch("master"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:04:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_pseudo_cache.txt

    # choose the highest appropriate pseudo-version instead of the cached one.
    
    go mod download -json golang.org/x/text@v0.0.0-20171215141712-a1b916ed6726
    stdout '"Version": "v0.0.0-20171215141712-a1b916ed6726",'
    
    # If GOPROXY is 'off', lookups should use whatever pseudo-version is available.
    env GOPROXY=off
    go mod download -json golang.org/x/text@a1b916ed6726
    stdout '"Version": "v0.0.0-20171215141712-a1b916ed6726",'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_goroot_errors.txt

    ! stderr 'missing dot'
    stderr 'importjson[/\\]x.go:2:8: package encoding/json is not in std \('$WORK'[/\\]not-a-valid-goroot[/\\]src[/\\]encoding[/\\]json\)$'
    
    -- go.mod --
    module example.com
    go 1.14
    -- importnonexist/x.go --
    package importnonexist
    import _ "nonexist"
    -- importjson/x.go --
    package importjson
    import _ "encoding/json"
    -- $WORK/not-a-valid-goroot/README --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top