Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for vertical (1.74 sec)

  1. android/guava-tests/test/com/google/common/math/LinearTransformationTest.java

        double x = 1.2;
        LinearTransformation transformation = LinearTransformation.vertical(x);
        assertVerticalLinearTransformation(transformation, x);
      }
    
      public void testVertical_infiniteX() {
        assertThrows(
            IllegalArgumentException.class,
            () -> LinearTransformation.vertical(Double.NEGATIVE_INFINITY));
      }
    
      public void testVertical_nanX() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/math/LinearTransformationTest.java

        double x = 1.2;
        LinearTransformation transformation = LinearTransformation.vertical(x);
        assertVerticalLinearTransformation(transformation, x);
      }
    
      public void testVertical_infiniteX() {
        assertThrows(
            IllegalArgumentException.class,
            () -> LinearTransformation.vertical(Double.NEGATIVE_INFINITY));
      }
    
      public void testVertical_nanX() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/resources/org/gradle/reporting/base-style.css

    #footer {
        margin-top: 100px;
        font-size: 80%;
        white-space: nowrap;
    }
    
    #footer, #footer a {
        color: #a0a0a0;
    }
    
    #line-wrapping-toggle {
        vertical-align: middle;
    }
    
    #label-for-line-wrapping-toggle {
        vertical-align: middle;
    }
    
    ul {
        margin-left: 0;
    }
    
    h1, h2, h3 {
        white-space: nowrap;
    }
    
    h2 {
        font-size: 120%;
    }
    
    ul.tabLinks {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 10 15:05:34 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/main/resources/checkstyle-noframes-sorted.xsl

    a.link { color: #02303A; } p { font-size: 1rem; } h1 a[name] { margin: 0; padding: 0; } tr:nth-child(even) { background: white; } th { font-weight:bold; } tr { background: #efefef; } table th, td, tr { font-size:100%; border: none; text-align: left; vertical-align: top; } Checkstyle Results Summary Total files checked Total violations Files with violations Violations File Total violations No violations were found. Generated by with Checkstyle . Severity Description Line Number Back to top...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 17 13:41:41 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. cluster/addons/calico-policy-controller/README.md

    - A DaemonSet which runs Calico on each node in the cluster.
    - A Deployment which installs the Calico Typha agent.
    - A Service for the Calico Typha agent.
    - Horizontal and vertical autoscalers for Calico.
    
    ### Learn More
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 409 bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/resources/org/gradle/api/internal/tasks/testing/report/style.css

    #summary {
        margin-top: 30px;
        margin-bottom: 40px;
    }
    
    #summary table {
        border-collapse: collapse;
    }
    
    #summary td {
        vertical-align: top;
    }
    
    .breadcrumbs, .breadcrumbs a {
        color: #606060;
    }
    
    .infoBox {
        width: 110px;
        padding-top: 15px;
        padding-bottom: 15px;
        text-align: center;
    }
    
    .infoBox p {
        margin: 0;
    }
    
    .counter, .percent {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/release-notes.css

      text-shadow: none;
      margin-left: 0.6em;
      border-radius: 6px;
      background-color: rgb(160, 160, 160);
      border: 1px solid rgb(150, 150, 150);
      padding: 1px 5px;
      box-shadow: none;
      cursor: pointer;
      vertical-align: 1px;
    }
    
    a.incubating-marker:hover {
      text-decoration: none;
      border: 1px solid rgb(150, 150, 150);
    }
    
    /* Same as code highlighting values in docs.css */
    .java_keyword {
      color: #963;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/style.css

        margin-top: 20px;
        font-size: 10pt;
    }
    
    th, td {
        white-space: nowrap;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 12px;
        padding-right: 12px;
        text-align: left;
        vertical-align: bottom;
    }
    
    th.numeric, td.numeric {
        text-align: right;
    }
    
    .empty {
        color: #a0a0a0;
        font-size: 8pt;
    }
    
    .more-detail {
        color: #a0a0a0;
        font-size: 8pt;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. src/regexp/syntax/make_perl_groups.pl

    	"[:punct:]",
    	"[:space:]",
    	"[:upper:]",
    	"[:word:]",
    	"[:xdigit:]",
    );
    
    my @perlclasses = (
    	"\\d",
    	"\\s",
    	"\\w",
    );
    
    my %overrides = (
    	# Prior to Perl 5.18, \s did not match vertical tab.
    	# RE2 preserves that original behaviour.
    	"\\s:11" => 0,
    );
    
    sub ComputeClass($) {
      my @ranges;
      my ($class) = @_;
      my $regexp = "[$class]";
      my $start = -1;
      for (my $i=0; $i<=129; $i++) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. src/main/webapp/css/admin/plugins/daterangepicker/daterangepicker.css

      cursor:...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 7.9K bytes
    - Viewed (0)
Back to top