Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 459 for rary (0.04 sec)

  1. src/cmd/compile/internal/noder/lex_test.go

    		tests = append(tests, []testStruct{
    			{`go:cgo_import_dynamic local remote "library"`, []string{`cgo_import_dynamic`, `local`, `remote`, `library`}},
    			{`go:cgo_import_dynamic local' remote' "lib rary"`, []string{`cgo_import_dynamic`, `local'`, `remote'`, `lib rary`}},
    		}...)
    	} else {
    		// cgo_import_dynamic with a library is slightly different on AIX
    		// as the library field must follow the pattern [libc.a/object.o].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:39:06 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  2. src/math/rand/default_test.go

    package rand_test
    
    import (
    	"fmt"
    	"internal/race"
    	"internal/testenv"
    	. "math/rand"
    	"os"
    	"runtime"
    	"strconv"
    	"sync"
    	"testing"
    )
    
    // Test that racy access to the default functions behaves reasonably.
    func TestDefaultRace(t *testing.T) {
    	// Skip the test in short mode, but even in short mode run
    	// the test if we are using the race detector, because part
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 07 23:39:35 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. src/runtime/race/testdata/rangefunc_test.go

    // ofSliceIndex returns a Seq over the elements of s. It is equivalent
    // to range s, except that it splits s into two halves and iterates
    // in two separate goroutines.  This is racy if yield is racy, and yield
    // will be racy if it contains an early exit.
    func ofSliceIndex[T any, S ~[]T](s S) Seq2[int, T] {
    	return func(yield func(int, T) bool) {
    		c := make(chan bool, 2)
    		var done atomic.Bool
    		go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/toolchain/DefaultToolchainManagerTest.java

            toolchainModels.put("rare", Collections.singletonList(new ToolchainModel()));
            executionRequest.setToolchains(toolchainModels);
            when(session.getRequest()).thenReturn(executionRequest);
    
            List<Toolchain> toolchains = toolchainManager.getToolchains(session, "rare", null);
    
            assertEquals(1, toolchains.size());
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Apr 16 12:54:16 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. docs/metrics/healthcheck/README.md

    ```
    curl http://minio1:9001/minio/health/cluster
    HTTP/1.1 503 Service Unavailable
    Accept-Ranges: bytes
    Content-Length: 0
    Server: MinIO
    Vary: Origin
    X-Amz-Bucket-Region: us-east-1
    X-Minio-Write-Quorum: 3
    X-Amz-Request-Id: 16239D6AB80EBECF
    X-Xss-Protection: 1; mode=block
    Date: Tue, 21 Jul 2020 00:36:14 GMT
    ```
    
    ### Cluster-readable probe
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jul 06 16:18:38 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/RarLifecycleMappingProvider.java

    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    /**
     * {@code rar} packaging plugins bindings provider for {@code default} lifecycle.
     */
    @Named("rar")
    @Singleton
    public final class RarLifecycleMappingProvider extends AbstractLifecycleMappingProvider {
        // START SNIPPET: rar
        @SuppressWarnings("checkstyle:linelength")
        private static final String[] BINDINGS = {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  7. pkg/cache/ttlCache.go

    	// Doing it here provides enough precision for our needs and tends to have
    	// much lower call frequency.
    	n := t.UnixNano()
    	atomic.StoreInt64(&c.baseTimeNanos, n)
    
    	// This loop is inherently racy. As we iterate through the
    	// key/value pairs, the value assigned to a particular key may
    	// change at any point. So when we find an expired entry and
    	// delete it, it's possible that a concurrent update assigned a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. samples/guide/src/main/java/okhttp3/recipes/kt/AccessHeaders.kt

          if (!response.isSuccessful) throw IOException("Unexpected code $response")
    
          println("Server: ${response.header("Server")}")
          println("Date: ${response.header("Date")}")
          println("Vary: ${response.headers("Vary")}")
        }
      }
    }
    
    fun main() {
      AccessHeaders().run()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/net/http/sniff.go

    	// However, RAR Labs correctly defines it at:
    	//    https://www.rarlab.com/technote.htm#rarsign
    	// so we use the definition from RAR Labs.
    	// TODO: do whatever the spec ends up doing.
    	&exactSig{[]byte("Rar!\x1A\x07\x00"), "application/x-rar-compressed"},     // RAR v1.5-v4.0
    	&exactSig{[]byte("Rar!\x1A\x07\x01\x00"), "application/x-rar-compressed"}, // RAR v5+
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 21:51:06 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  10. samples/guide/src/main/java/okhttp3/recipes/AccessHeaders.java

          System.out.println("Server: " + response.header("Server"));
          System.out.println("Date: " + response.header("Date"));
          System.out.println("Vary: " + response.headers("Vary"));
        }
      }
    
      public static void main(String... args) throws Exception {
        new AccessHeaders().run();
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun May 22 01:29:42 UTC 2016
    - 1.6K bytes
    - Viewed (0)
Back to top