Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for fabs (0.03 sec)

  1. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappedRange.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.internal.idn
    
    import kotlin.math.abs
    import okio.ByteString
    
    internal sealed interface MappedRange {
      val rangeStart: Int
    
      data class Constant(
        override val rangeStart: Int,
        val type: Int,
      ) : MappedRange {
        val b1: Int
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. cmd/genkubedocs/postprocessing_test.go

    	var tests = []struct {
    		markdown, expectedMarkdown string
    	}{
    		{ // first line is removed
    			// Nb. first line is the title of the document, and by removing it you get
    			//     more flexibility for include, e.g. include in tabs
    			markdown: "line 1\n" +
    				"line 2\n" +
    				"line 3",
    			expectedMarkdown: "line 2\n" +
    				"line 3",
    		},
    		{ // everything after ###SEE ALSO is removed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 30 13:22:22 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/certs/renewal/expiration_test.go

    )
    
    func TestExpirationInfo(t *testing.T) {
    	validity := 365 * 24 * time.Hour
    	cert := &x509.Certificate{
    		NotAfter: time.Now().Add(validity),
    	}
    
    	e := newExpirationInfo("x", cert, false)
    
    	if math.Abs(float64(validity-e.ResidualTime())) > float64(5*time.Second) { // using 5s of tolerance because the function is not deterministic (it uses time.Now()) and we want to avoid flakes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 17:52:14 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  4. src/cmd/gofmt/internal.go

    		}
    		j++
    	}
    	var res []byte
    	res = append(res, src[:i]...)
    
    	// Determine and prepend indentation of first code line.
    	// Spaces are ignored unless there are no tabs,
    	// in which case spaces count as one tab.
    	indent := 0
    	hasSpace := false
    	for _, b := range src[i:j] {
    		switch b {
    		case ' ':
    			hasSpace = true
    		case '\t':
    			indent++
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 14:23:08 UTC 2020
    - 5K bytes
    - Viewed (0)
  5. src/go/format/internal.go

    		}
    		j++
    	}
    	var res []byte
    	res = append(res, src[:i]...)
    
    	// Determine and prepend indentation of first code line.
    	// Spaces are ignored unless there are no tabs,
    	// in which case spaces count as one tab.
    	indent := 0
    	hasSpace := false
    	for _, b := range src[i:j] {
    		switch b {
    		case ' ':
    			hasSpace = true
    		case '\t':
    			indent++
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 14:23:08 UTC 2020
    - 5K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/url/-Url.kt

          writeUtf8CodePoint(codePoint)
        }
        i += Character.charCount(codePoint)
      }
    }
    
    /**
     * Returns a substring of `input` on the range `[pos..limit)` with the following
     * transformations:
     *
     *  * Tabs, newlines, form feeds and carriage returns are skipped.
     *
     *  * In queries, ' ' is encoded to '+' and '+' is encoded to "%2B".
     *
     *  * Characters in `encodeSet` are percent-encoded.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. docs/em/docs/advanced/path-operation-advanced-configuration.md

                                    "schema": {}
                                }
                            }
                        }
                    },
                    "x-aperture-labs-portal": "blue"
                }
            }
        }
    }
    ```
    
    ### 🛃 🗄 *➡ 🛠️* 🔗
    
    📖 `openapi_extra` 🔜 🙇 🔗 ⏮️ 🔁 🏗 🗄 🔗 *➡ 🛠️*.
    
    , 👆 💪 🚮 🌖 💽 🔁 🏗 🔗.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/encoding/pem/pem.go

    // removed, if there were any. Otherwise, the input is returned unchanged.
    //
    // The base64 decoder already skips newline characters, so we don't need to
    // filter them out here.
    func removeSpacesAndTabs(data []byte) []byte {
    	if !bytes.ContainsAny(data, " \t") {
    		// Fast path; most base64 data within PEM contains newlines, but
    		// no spaces nor tabs. Skip the extra alloc and work.
    		return data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testplugin/testdata/host/host.go

    	// that we can load the different plugin, it is actually
    	// different, and that it sees the same common package.
    	subpPath, err := filepath.Abs("sub/plugin1.so")
    	if err != nil {
    		log.Fatalf("filepath.Abs(%q) failed: %v", subpPath, err)
    	}
    	subp, err := plugin.Open(subpPath)
    	if err != nil {
    		log.Fatalf("plugin.Open(%q) failed: %v", subpPath, err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestDataGenerator.java

            static BackgroundColor ofConfidence(List<Number> xy) {
                double index = xy.get(0).doubleValue();
                double confidencePercentage = xy.get(1).doubleValue();
    
                if (Math.abs(confidencePercentage) >= THRESHOLD) {
                    return new BackgroundColor(index, redComponent(confidencePercentage), greenComponent(confidencePercentage), opacity(confidencePercentage));
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top