Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,827 for pref (0.15 sec)

  1. src/cmd/go/testdata/mod/example.com_retract_self_prerelease_v1.9.1-pre.txt

    latest version and all other release version.
    
    A pre-release version higher than the highest release version is still
    available, and that should be matched by @latest.
    
    -- .mod --
    module example.com/retract/self/prerelease
    
    go 1.15
    
    -- .info --
    {"Version":"v1.9.1-pre"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 369 bytes
    - Viewed (0)
  2. src/encoding/json/testdata/code.json.gz

    touches":1,"min_t":1236222384,"max_t":1236222384,"mean_t":1236222384},{"name":"dynamic-unfloat-pref-width-expected.png","kids":[],"cl_weight":0.002531645569620253,"touches":1,"min_t":1236222384,"max_t":1236222384,"mean_t":1236222384},{"name":"001-expected.png","kids":[],"cl_weight":0.002531645569620253,"touches":1,"min_t":1236222384,"max_t":1236222384,"mean_t":1236222384},{"name":"dynamic-unfloat-pref-width-expected.checksum","kids":[],"cl_weight":0.002531645569620253,"touches":1,"min_t":1236222...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  3. src/math/big/float_test.go

    	} {
    		x := makeFloat(test.x).SetPrec(test.prec)
    		prec := test.prec
    		if prec > MaxPrec {
    			prec = MaxPrec
    		}
    		if got := x.Prec(); got != prec {
    			t.Errorf("%s.SetPrec(%d).Prec() == %d; want %d", test.x, test.prec, got, prec)
    		}
    		if got, acc := x.String(), x.Acc(); got != test.want || acc != test.acc {
    			t.Errorf("%s.SetPrec(%d) = %s (%s); want %s (%s)", test.x, test.prec, got, acc, test.want, test.acc)
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/example.com_split-incompatible_v2.1.0-pre+incompatible.txt

    Test case for getting a package that has been moved to a nested module,
    with a +incompatible version (and thus no go.mod file) at the root module.
    
    -- .mod --
    module example.com/split-incompatible
    -- .info --
    {"Version": "v2.1.0-pre+incompatible"}
    -- README.txt --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 13:54:10 UTC 2021
    - 347 bytes
    - Viewed (0)
  5. src/site/site.xml

          <!--item name="FAQ" href="faq.html"/-->
          <item name="License" href="http://www.apache.org/licenses/"/>
          <item name="Download" href="/download.html"/>
        </menu>
    
        <menu inherit="bottom" name="Descriptors Reference">
          <item name="POM" href="./maven-model/maven.html"/>
          <item name="Settings" href="./maven-settings/settings.html"/>
          <item name="Toolchains" href="./maven-core/toolchains.html"/>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. pkg/ctrlz/assets/templates/layouts/base.html

            <link rel="shortcut icon" href="/favicons/favicon.ico" >
            <link rel="apple-touch-icon" href="/favicons/apple-touch-icon-180x180.png" sizes="180x180">
            <link rel="icon" type="image/png" href="/favicons/favicon-16x16.png" sizes="16x16">
            <link rel="icon" type="image/png" href="/favicons/favicon-32x32.png" sizes="32x32">
            <link rel="icon" type="image/png" href="/favicons/android-36x36.png" sizes="36x36">
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. src/math/big/floatmarsh_test.go

    					t.Errorf("marshaling of %v (prec = %d) failed: %v", &tx, prec, err)
    					continue
    				}
    				var rx Float
    				rx.SetPrec(prec)
    				if err := json.Unmarshal(b, &rx); err != nil {
    					t.Errorf("unmarshaling of %v (prec = %d) failed: %v", &tx, prec, err)
    					continue
    				}
    				if rx.Cmp(&tx) != 0 {
    					t.Errorf("JSON encoding of %v (prec = %d) failed: got %v want %v", &tx, prec, &rx, &tx)
    				}
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 23 18:18:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/main/resources/header.html

                            <li><a href="../userguide/dependency_management_basics.html">6. Dependency Management Basics</a></li>
                            <li><a href="../userguide/task_basics.html">7. Task Basics</a></li>
                            <li><a href="../userguide/plugin_basics.html">8. Plugins Basics</a></li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/TreeMultiset.java

        /** Constructor for the header node. */
        AvlNode() {
          this.elem = null;
          this.elemCount = 1;
        }
    
        // For discussion of pred() and succ(), see the comment on the pred and succ fields.
    
        private AvlNode<E> pred() {
          return requireNonNull(pred);
        }
    
        private AvlNode<E> succ() {
          return requireNonNull(succ);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.6K bytes
    - Viewed (0)
  10. platforms/software/resources-http/src/test/resources/org/gradle/internal/resource/transport/http/artifactory_dirlisting.html

    </head>
    <body>
    <h1>Index of repo1/junit/junit</h1>
    <pre>Name                     Last modified      Size</pre>
    <hr/>
    <pre><a href="../">../</a>
    <a href="3.7/">3.7/</a>->                        -    -
    <a href="3.8/">3.8/</a>->                        -    -
    <a href="3.8.1/">3.8.1/</a>                    02-Jul-2012 13:40    -
    <a href="3.8.2/">3.8.2/</a>->                      -    -
    <a href="4.0/">4.0/</a>->                        -    -
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top