Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for mycila (0.13 sec)

  1. docs/pl/docs/features.md

    * Automatyczna dokumentacja modelu danych za pomocą <a href="https://json-schema.org/" class="external-link" target="_blank"><strong>JSON Schema</strong></a> (ponieważ OpenAPI bazuje na JSON Schema).
    * Zaprojektowane z myślą o zgodności z powyższymi standardami zamiast dodawania ich obsługi po fakcie.
    * Możliwość automatycznego **generowania kodu klienta** w wielu językach.
    
    ### Automatyczna dokumentacja
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/mime/multipart/multipart_test.go

    		name: "safeCount off by one",
    		sep:  "08b84578eabc563dcba967a945cdf0d9f613864a8f4a716f0e81caa71a74",
    		in: strings.Replace(`--08b84578eabc563dcba967a945cdf0d9f613864a8f4a716f0e81caa71a74
    Content-Disposition: form-data; name="myfile"; filename="my-file.txt"
    Content-Type: application/octet-stream
    
    `, "\n", "\r\n", -1) +
    			strings.Repeat("A", peekBufferSize-(len("\n--")+len("08b84578eabc563dcba967a945cdf0d9f613864a8f4a716f0e81caa71a74")+len("\r")+1)) +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:36:47 UTC 2022
    - 30.4K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

    Use `pylint` to check your Python changes. To install `pylint` and check a file
    with `pylint` against TensorFlow's custom style definition:
    
    ```bash
    pip install pylint
    pylint --rcfile=tensorflow/tools/ci_build/pylintrc myfile.py
    ```
    
    Note `pylint --rcfile=tensorflow/tools/ci_build/pylintrc` should run from the
    top level tensorflow directory.
    
    #### Coding style for other languages
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. src/net/http/request_test.go

    			Error(rw, err.Error(), StatusBadRequest)
    			return
    		}
    	})).ts
    	fBuf := new(bytes.Buffer)
    	mw := multipart.NewWriter(fBuf)
    	mf, err := mw.CreateFormFile("file", "myfile.txt")
    	if err != nil {
    		t.Fatal(err)
    	}
    	if _, err := mf.Write(bytes.Repeat([]byte("abc"), payloadSize)); err != nil {
    		t.Fatal(err)
    	}
    	if err := mw.Close(); err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  5. pkg/apis/batch/validation/validation_test.go

    		`Asia/Kolkata`,
    		`Asia/Krasnoyarsk`,
    		`Asia/Kuala_Lumpur`,
    		`Asia/Kuching`,
    		`Asia/Kuwait`,
    		`Asia/Macao`,
    		`Asia/Macau`,
    		`Asia/Magadan`,
    		`Asia/Makassar`,
    		`Asia/Manila`,
    		`Asia/Muscat`,
    		`Asia/Nicosia`,
    		`Asia/Novokuznetsk`,
    		`Asia/Novosibirsk`,
    		`Asia/Omsk`,
    		`Asia/Oral`,
    		`Asia/Phnom_Penh`,
    		`Asia/Pontianak`,
    		`Asia/Pyongyang`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    			return
    		}
    		w.Write([]byte(of.Name()))
    	}))
    
    	fBuf := new(bytes.Buffer)
    	mw := multipart.NewWriter(fBuf)
    	mf, err := mw.CreateFormFile(key, "myfile.txt")
    	if err != nil {
    		t.Fatal(err)
    	}
    	if _, err := mf.Write(bytes.Repeat([]byte("A"), maxMemory*2)); err != nil {
    		t.Fatal(err)
    	}
    	if err := mw.Close(); err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top