Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 385 for sing (0.06 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/-RequestBodyCommon.kt

      return object : RequestBody() {
        override fun contentType() = contentType
    
        override fun contentLength() = byteCount.toLong()
    
        override fun writeTo(sink: BufferedSink) {
          sink.write(this@commonToRequestBody, offset, byteCount)
        }
      }
    }
    
    @Suppress("unused")
    fun RequestBody.commonContentLength(): Long = -1L
    
    @Suppress("unused")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. cluster/gce/windows/smoke-test.sh

      local service_port
      service_port=$($kubectl get service --namespace kube-system $service \
        -o jsonpath='{.spec.ports[?(@.protocol=="TCP")].port}')
      echo "curl-ing $service address from Linux pod: $service_ip:$service_port"
    
      # curl-ing the metrics-server service downloads 14 bytes of unprintable binary
      # data and sets a return code of success (0).
      if ! $kubectl exec "$linux_command_pod" -- \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. docs/vi/docs/index.md

        * Completion.
        * Kiểm tra kiểu dữ liệu.
    * Kiểm tra kiểu dữ liệu:
        * Tự động sinh lỗi rõ ràng khi dữ liệu không hợp lệ .
        * Kiểm tra JSON lồng nhau .
    * <abbr title="cũng được biết tới như: serialization, parsing, marshalling">Chuyển đổi</abbr> dữ liệu đầu vào: tới từ network sang dữ liệu kiểu Python. Đọc từ:
        * JSON.
        * Các tham số trong đường dẫn.
        * Các tham số trong query string.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. test/fixedbugs/issue67255.go

    		// This allocation pattern leaves the next object in the class
    		// unallocated, which we need to reproduce the bug.
    		objs = append(objs, make([]*byte, i))
    	}
    	sink = objs // force heap allocation
    
    	// Bug will happen as soon as the write barrier turns on.
    	for range 10000 {
    		sink = make([]*byte, 1024)
    		for _, s := range objs {
    			s = append(s, make([]*byte, zero)...)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 922 bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/FormatSupport.java

                // This is a workaround for https://github.com/gradle/gradle-private/issues/1690
                return new BigDecimal(0);
            }
    
            double sign = Math.signum(getDifferencePercentage(baseline, current).doubleValue());
            return new BigDecimal(sign * 100.0 * confidenceInDifference(baseline.getTotalTime(), current.getTotalTime())).setScale(2, RoundingMode.HALF_UP);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/convert/StringConversionUtil.java

        /** MINUS SIGN */
        public static final char MINUS_SIGN = '\u2212';
    
        /** FULLWIDTH HYPHEN-MINUS */
        public static final char FULLWIDTH_HYPHEN_MINUS = '\uFF0D';
    
        /** CENT SIGN */
        public static final char CENT_SIGN = '\u00A2';
    
        /** FULLWIDTH CENT SIGN */
        public static final char FULLWIDTH_CENT_SIGN = '\uFFE0';
    
        /** POUND SIGN */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. src/fmt/format.go

    		for digits > 0 {
    			num = append(num, '0')
    			digits--
    		}
    		num = append(num, tail...)
    	}
    	// We want a sign if asked for and if the sign is not positive.
    	if f.plus || num[0] != '+' {
    		// If we're zero padding to the left we want the sign before the leading zeros.
    		// Achieve this by writing the sign out and then padding the unsigned number.
    		// Zero padding is allowed only to the left.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

                    }
                }
    
                abstract class Ping extends DefaultTask {
    
                    Ping() { outputs.upToDateWhen { false } }
    
                    @Inject
                    protected abstract WorkerExecutor getWorkerExecutor()
    
                    @TaskAction
                    void ping() {
                        def taskPath = path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

          val source = this.source!!
          val sink = this.sink!!
          val tunnelCodec =
            Http1ExchangeCodec(
              // No client for CONNECT tunnels:
              client = null,
              carrier = this,
              source = source,
              sink = sink,
            )
          source.timeout().timeout(readTimeoutMillis.toLong(), TimeUnit.MILLISECONDS)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest.groovy

            javaLibrary()
            uncheckedModule("org", "foo", "1.0") {
                withSignature {
                    keyring.sign(it, [(keyring.secretKey): keyring.password])
                }
            }
            uncheckedModule("org", "bar", "1.0") {
                withSignature {
                    keyring2.sign(it, [(keyring2.secretKey): keyring2.password])
                }
            }
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 29.5K bytes
    - Viewed (0)
Back to top