Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 838 for tencent (0.25 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ArtifactView.java

             *
             * When set to <code>true</code>, this view will resolve as many artifacts and/or files as possible
             * collecting any failures.
             *
             * When set to <code>false</code>, any failures will be propagated as exceptions when the view is resolved.
             */
            ViewConfiguration lenient(boolean lenient);
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 29 17:24:04 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/testdata/generate.sh

    # limitations under the License.
    
    cfssl gencert -initca root.csr.json | cfssljson -bare root
    
    cfssl gencert -initca intermediate.csr.json | cfssljson -bare intermediate
    cfssl sign -ca root.pem -ca-key root-key.pem -config intermediate.config.json intermediate.csr | cfssljson -bare intermediate
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 13:50:20 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/testdata/generate.sh

    # limitations under the License.
    
    cfssl gencert -initca root.csr.json | cfssljson -bare root
    
    cfssl gencert -initca intermediate.csr.json | cfssljson -bare intermediate
    cfssl sign -ca root.pem -ca-key root-key.pem -config intermediate.config.json intermediate.csr | cfssljson -bare intermediate
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 02:28:04 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader_test.go

    					"alpha":                         {"alphabetical"},
    					"alph4num3r1c":                  {"alphanumeric"},
    					"percent encoded":               {"percent encoded"},
    					"almost%zzpercent%xxencoded":    {"not quite percent encoded"},
    					"example.com/percent%20encoded": {"url with double percent encoding"},
    					"example.com/今日は":               {"url with unicode"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/LockMode.java

     *     <li>{@code LENIENT} will load the lock state, to anchor dynamic versions, but otherwise be lenient about modifications of the dependency resolution,
     *     allowing versions to change and module to be added or removed</li>
     * </ul>
     *
     * @since 6.1
     */
    public enum LockMode {
        STRICT,
        DEFAULT,
        LENIENT
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/top.html

              const tr = document.createElement('tr');
              tr.id = row.Id;
              sum += row.Flat;
              addCell(tr, row.FlatFormat);
              addCell(tr, percent(row.Flat));
              addCell(tr, percent(sum));
              addCell(tr, row.CumFormat);
              addCell(tr, percent(row.Cum));
              addCell(tr, row.Name);
              addCell(tr, row.InlineLabel);
              fragment.appendChild(tr);
            }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 14:39:18 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/validation/path/name_test.go

    			ExpectedMsg: "/",
    		},
    		"slash,prefix": {
    			Name:        "foo/bar",
    			Prefix:      true,
    			ExpectedMsg: "/",
    		},
    
    		"percent": {
    			Name:        "foo%bar",
    			Prefix:      false,
    			ExpectedMsg: "%",
    		},
    		"percent,prefix": {
    			Name:        "foo%bar",
    			Prefix:      true,
    			ExpectedMsg: "%",
    		},
    	}
    
    	for k, tc := range testcases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 13:49:29 UTC 2017
    - 3.8K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubtypingComponent.kt

         */
        STRICT,
    
        /**
         * Error types are equal to and subtypes of all types.
         *
         * [LENIENT] should be chosen if type errors are expected and should be treated as type holes that can be satisfied by any other type.
         * However, caution should be applied when using [LENIENT], as the policy can swallow type errors which should have been dealt with
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

            public long used;
            public long committed;
            public long max;
            public short percent;
        }
    
        public static class JvmMemoryNonHeapObj {
            public long used;
            public long committed;
            public long max;
            public short percent;
        }
    
        public static class JvmPoolObj {
            public String key;
            public long count;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/math/tan.go

    package math
    
    /*
    	Floating-point tangent.
    */
    
    // The original C code, the long comment, and the constants
    // below were from http://netlib.sandia.gov/cephes/cmath/sin.c,
    // available from http://www.netlib.org/cephes/cmath.tgz.
    // The go code is a simplified version of the original C.
    //
    //      tan.c
    //
    //      Circular tangent
    //
    // SYNOPSIS:
    //
    // double x, y, tan();
    // y = tan( x );
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 08 17:27:54 UTC 2022
    - 3.7K bytes
    - Viewed (0)
Back to top