Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 340 for DecInt (0.19 sec)

  1. pkg/test/envoy/binary.go

    // FindBinary searches for an Envoy debug binary under TARGET_OUT. If the TARGET_OUT environment variable
    // is not set, the default location under GOPATH is assumed. If TARGET_OUT contains multiple debug binaries,
    // the most recent file is used.
    func FindBinary() (string, error) {
    	binPaths, err := findBinaries()
    	if err != nil {
    		return "", err
    	}
    
    	if len(binPaths) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 18 22:00:05 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/ArtifactRepositoryMetadata.java

             * which repository provides which version so the metadata manager must not restrict the artifact resolution to
             * the repository with the most recent updates.
             */
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/ConcurrentGroupingQueueTest.kt

    import java.util.concurrent.CountDownLatch
    import java.util.concurrent.TimeUnit
    
    import kotlin.concurrent.thread
    
    
    class ConcurrentGroupingQueueTest {
    
        @Test
        fun `groups similar requests ordered by most recent`() {
    
            val requestsInGroup1 = (0..1).map { Request(1, it) }
            val requestsInGroup2 = (0..1).map { Request(2, it) }
    
            val subject = ConcurrentGroupingQueue<Request> { group == it.group }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/fiat/README

    The code in this package was autogenerated by the fiat-crypto project
    at version v0.0.9 from a formally verified model, and by the addchain
    project at a recent tip version.
    
        docker build -t fiat-crypto:v0.0.9 .
        go install github.com/mmcloughlin/addchain/cmd/addchain@v0.3.1-0.20211027081849-6a7d3decbe08
        ../../../../../bin/go run generate.go
    
    fiat-crypto code comes under the following license.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. test/recover4.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that if a slice access causes a fault, a deferred func
    // sees the most recent value of the variables it accesses.
    // This is true today; the role of the test is to ensure it stays true.
    //
    // In the test, memcopy is the function that will fault, during dst[i] = src[i].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/trace/gstate.go

    	// startRunning is the most recent event that caused a goroutine to
    	// transition to GoRunning.
    	startRunningTime trace.Time
    
    	// startSyscall is the most recent event that caused a goroutine to
    	// transition to GoSyscall.
    	syscall struct {
    		time   trace.Time
    		stack  trace.Stack
    		active bool
    	}
    
    	// startBlockReason is the StateTransition.Reason of the most recent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/util/internal/DistributionLocatorIntegrationTest.groovy

        }
    
        /**
         * If this test fails, it means that the snapshot in `released-versions.json` is no longer available.
         * You need to update that entry with a recent snapshot by hand.
         */
        def "locates snapshot versions"() {
            expect:
            urlExist(locator.getDistributionFor(distributions.mostRecentReleaseSnapshot.version))
        }
    
        void urlExist(URI url) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 06:57:00 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Automated.h

     */
    
    CU_EXPORT CU_ErrorCode CU_list_tests_to_file(void);
    /**< 
     *  Generates an xml file containing a list of all tests in all suites 
     *  in the active registry.  The output file will be named according to 
     *  the most recent call to CU_set_output_filename(), or a default if 
     *  not previously set.
     *
     *  @return An error code indicating the error status.
     */
    
    CU_EXPORT void CU_set_output_filename(const char* szFilenameRoot);
    /**< 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. pkg/proxy/healthcheck/proxier_health.go

    		// time the proxier sync loop ran, even if nothing had changed. To
    		// preserve compatibility, we use the same semantics: the returned
    		// lastUpdated value is "recent" if the server is healthy. The kube-proxy
    		// metrics provide more detailed information.
    		lastUpdated = currentTime
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 10:41:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/queue/MultiChannelQueueTest.groovy

            endpoint1.take(messages1)
            endpoint2.take(messages2)
    
            then:
            messages1 == [message1, message2]
            messages2 == [message2]
        }
    
        def "forwards most recent stateful broadcast messages to all new queues"() {
            def id1 = new ChannelIdentifier("channel1")
            def message1 = broadcast()
            def message2 = broadcast()
            def message3 = new EndOfStream()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top