Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 459 for rary (0.06 sec)

  1. maven-core/src/test/java/org/apache/maven/toolchain/DefaultToolchainManagerPrivateTest.java

            List<ToolchainModel> rareToolchains = new ArrayList<>();
            ToolchainModel rareToolchainModel = new ToolchainModel();
            rareToolchainModel.setType("rare");
            rareToolchains.add(rareToolchainModel);
            groupedToolchains.put("rare", rareToolchains);
    
            // execute
            ToolchainPrivate[] toolchains = toolchainManager.getToolchainsForType("basic", session);
    
            // verify
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/http2/hpack/static_table.go

    		"server":                      54,
    		"set-cookie":                  55,
    		"strict-transport-security":   56,
    		"transfer-encoding":           57,
    		"user-agent":                  58,
    		"vary":                        59,
    		"via":                         60,
    		"www-authenticate":            61,
    	},
    	byNameValue: map[pairNameValue]uint64{
    		{name: ":authority", value: ""}:                   1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  3. src/net/http/sniff_test.go

    	// Archive types
    	{"RAR v1.5-v4.0", []byte("Rar!\x1A\x07\x00"), "application/x-rar-compressed"},
    	{"RAR v5+", []byte("Rar!\x1A\x07\x01\x00"), "application/x-rar-compressed"},
    	{"Incorrect RAR v1.5-v4.0", []byte("Rar \x1A\x07\x00"), "application/octet-stream"},
    	{"Incorrect RAR v5+", []byte("Rar \x1A\x07\x01\x00"), "application/octet-stream"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 16:53:14 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  4. docs/az/docs/fastapi-people.md

    ## Ən çox rəy verənlər
    
    Bu istifadəçilər **ən çox rəy verənlər**dir.
    
    ### Tərcümələr üçün rəylər
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    	// A response via different Accept encodings (eg: protobuf, json) will
    	// yield the same etag. This is okay because Accept is part of the Vary header.
    	// Per RFC7231 a client must only cache a response etag pair if the header field
    	// matches as indicated by the Vary field. Thus, protobuf and json and other Accept
    	// encodings will not be cached as the same response despite having the same etag.
    	cachedResponseETag string
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/math/MathBenchmarking.java

     */
    
    package com.google.common.math;
    
    import java.math.BigInteger;
    import java.util.Random;
    
    /**
     * Utilities for benchmarks.
     *
     * <p>In many cases, we wish to vary the order of magnitude of the input as much as we want to vary
     * the input itself, so most methods which generate values use an exponential distribution varying
     * the order of magnitude of the generated values uniformly at random.
     *
     * @author Louis Wasserman
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_issue35317.txt

    # Regression test for golang.org/issue/35317:
    # 'go get' with multiple module-only arguments was racy.
    
    env GO111MODULE=on
    [short] skip
    
    go mod init example.com
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 244 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/mlir2exec/BUILD

    # Description:
    #   Integration tests of converter & interpreter.
    #
    # There should be few tests in here and it should be rare where the execution
    # tests are not tested by unit tests already. This is useful for verifying some
    # runtime behavior, but the majority of runtime tests should be TFLite side and
    # invariants only verified in the converter/compiler.
    
    load("//tensorflow:tensorflow.default.bzl", "filegroup")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. cmd/os-reliable.go

    package cmd
    
    import (
    	"fmt"
    	"os"
    	"path"
    )
    
    // Wrapper functions to os.RemoveAll, which calls reliableRemoveAll
    // this is to ensure that if there is a racy parent directory
    // create in between we can simply retry the operation.
    func removeAll(dirPath string) (err error) {
    	if dirPath == "" {
    		return errInvalidArgument
    	}
    
    	if err = checkPathLength(dirPath); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 22 17:49:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. src/net/mail/message_test.go

    		in: `From: John Doe <******@****.***e>
    To: Mary Smith <mary@example.net>
    Subject: Saying Hello
    Date: Fri, 21 Nov 1997 09:55:06 -0600
    Message-ID: <******@****.***e>
    
    This is a message just to say hello.
    So, "Hello".
    `,
    		header: Header{
    			"From":       []string{"John Doe <******@****.***e>"},
    			"To":         []string{"Mary Smith <mary@example.net>"},
    			"Subject":    []string{"Saying Hello"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
Back to top