Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 299 for 1104 (1.05 sec)

  1. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/TestDataGeneratorTest.groovy

        }
    
        def 'can calculate background color'() {
            expect:
            TestDataGenerator.BackgroundColor.ofConfidence([0, 100]).xaxis == [from: -0.5, to: 0.5]
            TestDataGenerator.BackgroundColor.ofConfidence([1, 100]).xaxis == [from: 0.5, to: 1.5]
    
            TestDataGenerator.BackgroundColor.ofConfidence([0, 100]).color == 'rgba(255,0,0,1.0)'
            TestDataGenerator.BackgroundColor.ofConfidence([0, 90]).color == 'rgba(255,0,0,0.5)'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/Dockerfile

    ENV ClangV=12
    RUN apt-get update && \
            apt-get install --no-install-recommends -y cmake xz-utils wget unzip ca-certificates clang-$ClangV python
    
    # Download, validate, unpack, build, and install Ninja.
    ENV NinjaV=1.10.2
    ENV NinjaH=ce35865411f0490368a8fc383f29071de6690cbadc27704734978221f25e2bed
    RUN \
    	wget https://github.com/ninja-build/ninja/archive/refs/tags/v$NinjaV.tar.gz && \
    	echo "$NinjaH v$NinjaV.tar.gz" >sha && sha256sum -c sha && \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/resource/scale_int_test.go

    		{big.NewInt(500), 3, 0, 1},
    		{big.NewInt(499), 3, 0, 1},
    		{big.NewInt(1), 3, 0, 1},
    		// large scaled value does not lose precision
    		{big.NewInt(0).Sub(maxInt64, bigOne), 1, 0, (math.MaxInt64-1)/10 + 1},
    		// large intermediate result.
    		{big.NewInt(1).Exp(big.NewInt(10), big.NewInt(100), nil), 100, 0, 1},
    
    		// scale up
    		{big.NewInt(0), 0, 3, 0},
    		{big.NewInt(1), 0, 3, 1000},
    		{big.NewInt(1), -3, 0, 1000},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 11 03:04:14 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/testing/toolchains/internal/JUnitPlatformTestToolchain.java

        /**
         * The default version of the JUnit Platform to use for executing tests.
         */
        public static final String DEFAULT_VERSION = "1.10.0";
        private static final String GROUP_NAME = "org.junit.platform:junit-platform-launcher";
    
        @Inject
        protected abstract DependencyFactory getDependencyFactory();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 10:55:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-execution/hashing/src/test/groovy/org/gradle/internal/hash/HashingTest.groovy

            hasher3.putString(value)
            def hash3 = hasher3.hash()
    
            then:
            hash == hash3
        }
    
        def 'hasher can be used from multiple threads'() {
            given:
            def threadRange = 1..100
    
            when:
            def hashes = threadRange.collect {
                supplyAsync({ Hashing.hashString(currentThread().name) }, newFixedThreadPool(threadRange.size()))
            }*.join().toSet()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions.yaml

              - --metrics=15014
              - --cluster=cluster-0
              - --grpc=7070
              - --port=8090
              - --port=8080
              - --port=3333
              - --version=bar
              - --istio-version=1.10.0
              - --crt=/cert.crt
              - --key=/cert.key
            ports:
            - containerPort: 7070
            - containerPort: 8090
            - containerPort: 8080
            - containerPort: 3333
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorTest.groovy

            'openJdk9'       | openJdkJvm('9')          | JavaVersion.VERSION_1_9 | 'OpenJDK JRE 9'              | true
            'AdoptOpenJDK11' | adoptOpenJDK('11.0.3')   | JavaVersion.VERSION_11  | 'AdoptOpenJDK 11'            | false
            'AdoptOpenJDK11' | adoptOpenJDK('11.0.3')   | JavaVersion.VERSION_11  | 'AdoptOpenJDK JRE 11'        | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. test/fixedbugs/issue7746.go

    // errorcheck
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    const (
    	c0   = 1 << 100
    	c1   = c0 * c0
    	c2   = c1 * c1
    	c3   = c2 * c2 // GC_ERROR "overflow"
    	c4   = c3 * c3
    	c5   = c4 * c4
    	c6   = c5 * c5
    	c7   = c6 * c6
    	c8   = c7 * c7
    	c9   = c8 * c8
    	c10  = c9 * c9
    	c11  = c10 * c10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  9. cluster/addons/fluentd-gcp/README.md

    they can be searched, viewed, and analyzed.
    
    Learn more at: https://kubernetes.io/docs/tasks/debug-application-cluster/logging-stackdriver
    
    ## Troubleshooting
    
    In Kubernetes clusters in version 1.10.0 or later, fluentd-gcp DaemonSet can be
    manually scaled. This is useful e.g. when applications running in the cluster
    are sending a large volume of logs (i.e. over 100kB/s), causing fluentd-gcp to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4-javadoc-resources.jar.lastUpdated

    Tamas Cservenak <******@****.***> 1703012935 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 252 bytes
    - Viewed (0)
Back to top