Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for curr (0.17 sec)

  1. cmd/utils.go

    const (
    	// Maximum object size per PUT request is 5TB.
    	// This is a divergence from S3 limit on purpose to support
    	// use cases where users are going to upload large files
    	// using 'curl' and presigned URL.
    	globalMaxObjectSize = 5 * humanize.TiByte
    
    	// Minimum Part size for multipart upload is 5MiB
    	globalMinPartSize = 5 * humanize.MiByte
    
    	// Maximum Part ID for multipart upload is 10000
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__batch__v1_openapi.json

              }
            },
            {
              "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
              "in": "query",
              "name": "pretty",
              "schema": {
                "type": "string",
                "uniqueItems": true
              }
            },
            {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  3. RELEASE.md

    *   Fixes a heap buffer overflow due to incorrect hash function ([CVE-2022-29210](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29210))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

    # files.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    ### Hardcoded constants
    METADATA_SERVER_IP="${METADATA_SERVER_IP:-169.254.169.254}"
    
    # Standard curl flags.
    CURL_FLAGS='--fail --silent --show-error --retry 5 --retry-delay 3 --connect-timeout 10 --retry-connrefused'
    
    function convert-manifest-params {
      # A helper function to convert the manifest args from a string to a list of
    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. src/net/http/server.go

    		delete(s.activeConn, c)
    	}
    	return quiescent
    }
    
    func (s *Server) closeListenersLocked() error {
    	var err error
    	for ln := range s.listeners {
    		if cerr := (*ln).Close(); cerr != nil && err == nil {
    			err = cerr
    		}
    	}
    	return err
    }
    
    // A ConnState represents the state of a client connection to a server.
    // It's used by the optional [Server.ConnState] hook.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

                           "Path to test tflite model file."),
      };
    
      const bool parse_result = tensorflow::Flags::Parse(&argc, argv, flag_list);
      if (!parse_result) {
        std::cerr << "Required test_model_file\n";
        std::abort();
      }
      g_test_model_dir =
          new tensorflow::string(tensorflow::io::Dirname(model_file));
      ::tensorflow::port::InitMain(argv[0], &argc, &argv);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

    			t.Skip("requires GKE cluster")
    		}
    		svcs := apps.All
    		for _, src := range svcs {
    			src := src
    			t.NewSubTestf("from %v", src.Config().Service).Run(func(t framework.TestContext) {
    				// curl -H "Metadata-Flavor: Google" 169.254.169.254/computeMetadata/v1/instance/service-accounts/default/identity
    				opts := echo.CallOptions{
    					Address: "169.254.169.254",
    					Port:    echo.Port{ServicePort: 80},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    		// and the call site which uses it. See #49282.
    		if s.curBlock.ID == s.f.Entry.ID && s.hasOpenDefers {
    			b := s.endBlock()
    			b.Kind = ssa.BlockPlain
    			curb := s.f.NewBlock(ssa.BlockPlain)
    			b.AddEdgeTo(curb)
    			s.startBlock(curb)
    		}
    
    		for i, n := range args {
    			callArgs = append(callArgs, s.putArg(n, t.Param(i).Type))
    		}
    
    		callArgs = append(callArgs, s.mem())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. CREDITS

    litigation is filed.
    
    All Recipient's rights under this Agreement shall terminate if it
    fails to comply with any of the material terms or conditions of this
    Agreement and does not cure such failure in a reasonable period of
    time after becoming aware of such noncompliance. If all Recipient's
    rights under this Agreement terminate, Recipient agrees to cease use
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  10. api/openapi-spec/swagger.json

          "uniqueItems": true
        },
        "pretty-tJGM1-ng": {
          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
          "in": "query",
          "name": "pretty",
          "type": "string",
          "uniqueItems": true
        },
        "previous-1jxDPu3y": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top