Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for 99$ (0.04 sec)

  1. maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/OperatingSystemProfileActivatorTest.java

                    .arch("aarch64")
                    .version("99"));
    
            assertActivation(false, profile, newContext(null, newProperties("linux", "6.5.0-1014-aws", "amd64")));
            assertActivation(false, profile, newContext(null, newProperties("windows", "1", "aarch64")));
            assertActivation(false, profile, newContext(null, newProperties("windows", "99", "amd64")));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 05 14:16:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. doc/README.md

    API, and should be named after the issue number of the API proposal.
    For example, if the directory `6-stdlib/99-minor` is present,
    then an `api/next` file with the line
    
        pkg net/http, function F #12345
    
    should have a corresponding file named `doc/next/6-stdlib/99-minor/net/http/12345.md`.
    At a minimum, that file should contain either a full sentence or a TODO,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    			watchCacheResourceVersion:       99,
    			expectedBookmarkResourceVersion: 0,
    		},
    		{
    			name:                            "RV=0, allowWatchBookmarks=true, sendInitialEvents=true",
    			opts:                            listOptions(true, pointer.Bool(true), "0"),
    			requiredResourceVersion:         0,
    			watchCacheResourceVersion:       99,
    			expectedBookmarkResourceVersion: 99,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

        }
    
        def assertReceivingSocketEmpty() {
            try {
                Executors.newSingleThreadExecutor().submit {
                    DatagramPacket packet = new DatagramPacket(new byte[9], 9)
                    receivingSocket.receive(packet)
                }.get(1, TimeUnit.SECONDS)
            } catch (TimeoutException e) {
                return true
            }
            return false
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

        assertInterrupted();
      }
    
      // Semaphore.tryAcquire() tests
      public void testTryAcquireWithNoWait() {
        Stopwatch stopwatch = Stopwatch.createStarted();
        Semaphore semaphore = new Semaphore(99);
        assertTrue(tryAcquireUninterruptibly(semaphore, 0, MILLISECONDS));
        assertTrue(tryAcquireUninterruptibly(semaphore, -42, MILLISECONDS));
        assertTrue(tryAcquireUninterruptibly(semaphore, LONG_DELAY_MS, MILLISECONDS));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 16:06:39 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  6. cmd/apierrorcode_string.go

    	_ = x[ErrMalformedCredentialDate-94]
    	_ = x[ErrMalformedExpires-95]
    	_ = x[ErrNegativeExpires-96]
    	_ = x[ErrAuthHeaderEmpty-97]
    	_ = x[ErrExpiredPresignRequest-98]
    	_ = x[ErrRequestNotReadyYet-99]
    	_ = x[ErrUnsignedHeaders-100]
    	_ = x[ErrMissingDateHeader-101]
    	_ = x[ErrInvalidQuerySignatureAlgo-102]
    	_ = x[ErrInvalidQueryParams-103]
    	_ = x[ErrBucketAlreadyOwnedByYou-104]
    	_ = x[ErrInvalidDuration-105]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. test/codegen/bits.go

    // check bitsets
    func bitSetPowerOf2Test(x int) bool {
    	// amd64:"BTL\t[$]3"
    	return x&8 == 8
    }
    
    func bitSetTest(x int) bool {
    	// amd64:"ANDL\t[$]9, AX"
    	// amd64:"CMPQ\tAX, [$]9"
    	return x&9 == 9
    }
    
    // mask contiguous one bits
    func cont1Mask64U(x uint64) uint64 {
    	// s390x:"RISBGZ\t[$]16, [$]47, [$]0,"
    	return x & 0x0000ffffffff0000
    }
    
    // mask contiguous zero bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	{95, "ENOTSUP", "operation not supported"},
    	{96, "EPFNOSUPPORT", "protocol family not supported"},
    	{97, "EAFNOSUPPORT", "address family not supported by protocol"},
    	{98, "EADDRINUSE", "address already in use"},
    	{99, "EADDRNOTAVAIL", "cannot assign requested address"},
    	{100, "ENETDOWN", "network is down"},
    	{101, "ENETUNREACH", "network is unreachable"},
    	{102, "ENETRESET", "network dropped connection on reset"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. pkg/test/framework/suite.go

    	_ = s.mRun(ctx)
    
    	// Return success.
    	return 0
    }
    
    func (s *suiteImpl) run() (errLevel int) {
    	tc, shutdown, err := tracing.InitializeFullBinary(s.testID)
    	if err != nil {
    		return 99
    	}
    	defer shutdown()
    	if err := initRuntime(s); err != nil {
    		scopes.Framework.Errorf("Error during test framework init: %v", err)
    		return exitCodeInitError
    	}
    	rt.context.traceContext = tc
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	{95, "ENOTSUP", "operation not supported"},
    	{96, "EPFNOSUPPORT", "protocol family not supported"},
    	{97, "EAFNOSUPPORT", "address family not supported by protocol"},
    	{98, "EADDRINUSE", "address already in use"},
    	{99, "EADDRNOTAVAIL", "cannot assign requested address"},
    	{100, "ENETDOWN", "network is down"},
    	{101, "ENETUNREACH", "network is unreachable"},
    	{102, "ENETRESET", "network dropped connection on reset"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top