Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for truncated (0.2 sec)

  1. okhttp/src/test/java/okhttp3/CallTest.kt

        assertThat(hostnameVerifier.calls).containsExactly("verify android.com")
      }
    
      /**
       * We had a bug where OkHttp would crash if HTTP proxies returned a truncated response.
       * https://github.com/square/okhttp/issues/5727
       */
      @Test
      fun proxyUpgradeFailsWithTruncatedResponse() {
        server.enqueue(
          MockResponse.Builder()
            .body("abc")
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    relationships:
    </p>
    
    <pre>
    x = q*y + r  and  |r| &lt; |y|
    </pre>
    
    <p>
    with <code>x / y</code> truncated towards zero
    (<a href="https://en.wikipedia.org/wiki/Modulo_operation">"truncated division"</a>).
    </p>
    
    <pre>
     x     y     x / y     x % y
     5     3       1         2
    -5     3      -1        -2
     5    -3      -1         2
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/_aws/fess.json

            },
            "turkish_override": {
              "type":       "stemmer_override",
              "rules": []
            },
            "truncate10_filter" : {
              "type" : "truncate",
              "length" : 10
            },
            "truncate20_filter" : {
              "type" : "truncate",
              "length" : 20
            },
            "synonym_filter" : {
              "type" : "synonym_graph",
              "synonyms": ["fess,フエス"]
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue Mar 23 12:38:28 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/_cloud/fess.json

            },
            "turkish_override": {
              "type":       "stemmer_override",
              "rules": []
            },
            "truncate10_filter" : {
              "type" : "truncate",
              "length" : 10
            },
            "truncate20_filter" : {
              "type" : "truncate",
              "length" : 20
            },
            "synonym_filter" : {
              "type" : "synonym_graph",
              "synonyms": ["fess,フエス"]
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  5. cmd/storage-datatypes_gen.go

    				err = z.Files[za0001].DecodeMsg(dc)
    				if err != nil {
    					err = msgp.WrapError(err, "Files", za0001)
    					return
    				}
    			}
    		case "IsTruncated":
    			z.IsTruncated, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "IsTruncated")
    				return
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 127.5K bytes
    - Viewed (0)
  6. internal/s3select/csv/testdata/testdata.zip

    -73.94439697265625 40.809379577636719 1 1.20 7 0 0.5 0 0 7.5 2 1 166 42 green 0.00 0.0 0.0 54 40 8.05 1312 209.01 1 Manhattan 020901 1020901 E MN09 Morningside Heights 3802 1647 224 1 Manhattan 022400 1022400 E MN03 Central Harlem North-Polo Grounds 3803 truncated-records.csv trip_id,vendor_id,pickup_datetime,dropoff_datetime,store_and_fwd_flag,rate_code_id,pickup_longitude,pickup_latitude,dropoff_longitude,dropoff_latitude,passenger_count,trip_distance,fare_amount,extra,mta_tax,tip_amount,tolls_amount,eh...
    ZIP Archive
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 111.6K bytes
    - Viewed (0)
  7. cmd/server_test.go

    		UploadIDMarker     string `xml:"UploadIdMarker"`
    		NextKeyMarker      string
    		NextUploadIDMarker string `xml:"NextUploadIdMarker"`
    		EncodingType       string
    		MaxUploads         int
    		IsTruncated        bool
    		// All the in progress multipart uploads.
    		Uploads []struct {
    			Key          string
    			UploadID     string `xml:"UploadId"`
    			Initiator    Initiator
    			Owner        Owner
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbFile.java

        // Open Function Encoding
        // create if the file does not exist
        static final int O_CREAT  = 0x0010;
        // fail if the file exists
        static final int O_EXCL   = 0x0020;
        // truncate if the file exists
        static final int O_TRUNC  = 0x0040;
    
        // share access
    /**
     * When specified as the <tt>shareAccess</tt> constructor parameter,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  9. cmd/object-handlers.go

    					PartNumber:     objInfo.Parts[i].Number,
    					Size:           objInfo.Parts[i].Size,
    				})
    			}
    		}
    
    		if OA.ObjectParts.NextPartNumberMarker != partsLength {
    			OA.ObjectParts.IsTruncated = true
    		}
    	}
    
    	writeSuccessResponseXML(w, encodeResponse(OA))
    
    	sendEvent(eventArgs{
    		EventName:    event.ObjectAccessedAttributes,
    		BucketName:   bucket,
    		Object:       objInfo,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 20:15:54 GMT 2024
    - 125.2K bytes
    - Viewed (0)
  10. fastapi/routing.py

            self.description = description or inspect.cleandoc(self.endpoint.__doc__ or "")
            # if a "form feed" character (page break) is found in the description text,
            # truncate description text to the content preceding the first "form feed"
            self.description = self.description.split("\f")[0].strip()
            response_fields = {}
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 170.1K bytes
    - Viewed (0)
Back to top