Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for gomod (0.1 sec)

  1. src/cmd/go/alldocs.go

    //	GOHOSTOS
    //		The operating system (GOOS) of the Go toolchain binaries.
    //	GOMOD
    //		The absolute path to the go.mod of the main module.
    //		If module-aware mode is enabled, but there is no go.mod, GOMOD will be
    //		os.DevNull ("/dev/null" on Unix-like systems, "NUL" on Windows).
    //		If module-aware mode is disabled, GOMOD will be the empty string.
    //	GOTOOLDIR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    		xNoSemicolons      string
    		xWithSemicolons    string
    		expectParseFormErr bool
    	}{
    		{"?a=1;x=bad&x=good", "good", "bad", true},
    		{"?a=1;b=bad&x=good", "good", "good", true},
    		{"?a=1%3Bx=bad&x=good%3B", "good;", "good;", false},
    		{"?a=1;x=good;x=bad", "", "good", true},
    	}
    
    	run(t, func(t *testing.T, mode testMode) {
    		for _, tt := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        // make the Buffer empty apart from setting the buffer_idx=0 in the
        // Tensor. This does not seem to affect runtime behavior for RNN/LSTM,
        // but would be good for reducing memory footprint.
        if (value.getDefiningOp()) {
          auto buffer_or =
              BuildBuffer(value, not_returned_by_subgraph, buffer_index);
          if (!buffer_or) return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      elif [[ "${KONNECTIVITY_SERVICE_PROXY_PROTOCOL_MODE:-grpc}" == 'http-connect' ]]; then
        # HTTP-CONNECT can work with either UDS or mTLS.
        # Linking them here to make sure we get good coverage with two test configurations.
        params+=("--server-ca-cert=${KONNECTIVITY_SERVER_CA_CERT_PATH}")
        params+=("--server-cert=${KONNECTIVITY_SERVER_CERT_PATH}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

      else
        project_hash=$(echo -n "$PROJECT" | md5sum)
        project_hash=${project_hash%%[[:blank:]]*}
      fi
    
      # This requires 1 million projects before the probability of collision is 50%
      # that's probably good enough for now :P
      project_hash=${project_hash:0:10}
    
      set-preferred-region
    
      if [[ "${ENABLE_DOCKER_REGISTRY_CACHE:-}" == "true" ]]; then
        DOCKER_REGISTRY_MIRROR_URL="https://mirror.gcr.io"
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top