Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 90 for toves (0.13 sec)

  1. src/encoding/base64/base64_test.go

    	{URLEncoding.Strict(), urlRef},
    	{RawStdEncoding.Strict(), rawRef},
    	{RawURLEncoding.Strict(), rawURLRef},
    	{funnyEncoding.Strict(), funnyRef},
    }
    
    var bigtest = testpair{
    	"Twas brillig, and the slithy toves",
    	"VHdhcyBicmlsbGlnLCBhbmQgdGhlIHNsaXRoeSB0b3Zlcw==",
    }
    
    func testEqual(t *testing.T, msg string, args ...any) bool {
    	t.Helper()
    	if args[len(args)-2] != args[len(args)-1] {
    		t.Errorf(msg, args...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  2. cmd/kube-proxy/app/server_test.go

    	*/
    
    	testCases := []struct {
    		name    string
    		config  string
    		expErr  string
    		checkFn func(err error) bool
    	}{
    		{
    			name:   "Decode error test",
    			config: "Twas bryllyg, and ye slythy toves",
    			expErr: "could not find expected ':'",
    		},
    		{
    			name:   "Bad config type test",
    			config: "kind: KubeSchedulerConfiguration",
    			expErr: "no kind",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. src/encoding/base32/base32_test.go

    	{"su", "ON2Q===="},
    	{"leasure.", "NRSWC43VOJSS4==="},
    	{"easure.", "MVQXG5LSMUXA===="},
    	{"asure.", "MFZXK4TFFY======"},
    	{"sure.", "ON2XEZJO"},
    }
    
    var bigtest = testpair{
    	"Twas brillig, and the slithy toves",
    	"KR3WC4ZAMJZGS3DMNFTSYIDBNZSCA5DIMUQHG3DJORUHSIDUN53GK4Y=",
    }
    
    func testEqual(t *testing.T, msg string, args ...any) bool {
    	t.Helper()
    	if args[len(args)-2] != args[len(args)-1] {
    		t.Errorf(msg, args...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

        }
    
        /**
         * Moves the cursor up. If the parameter y is negative it moves the cursor down.
         *
         * @param y the number of lines to move up
         * @return this Ansi instance
         */
        public Ansi cursorUp(final int y) {
            return y > 0 ? appendEscapeSequence('A', y) : y < 0 ? cursorDown(-y) : this;
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/conversion_test.go

    						{Name: "v2", Served: false, Storage: false},
    					},
    					PreserveUnknownFields: ptr.To(false),
    				},
    			},
    		},
    		// Validation
    		{
    			Name: "internal to v1, top-level validation moves to per-version",
    			In: &apiextensions.CustomResourceDefinition{
    				Spec: apiextensions.CustomResourceDefinitionSpec{
    					Version:    "v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

        // Specifically requesting the GradleUserHomeTemporaryFileProvider to ensure that the temporary files are created on the same file system as the target directory
        // This is a prerequisite for atomic moves in most cases, which are used in the provisionFromArchive method
        private final GradleUserHomeTemporaryFileProvider temporaryFileProvider;
    
        @Inject
        public DefaultJdkCacheDirectory(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. test/typeparam/list2.go

    }
    
    // MoveToFront moves element e to the front of list l.
    // If e is not an element of l, the list is not modified.
    // The element must not be nil.
    func (l *_List[T]) MoveToFront(e *_Element[T]) {
    	if e.list != l || l.root.next == e {
    		return
    	}
    	// see comment in _List.Remove about initialization of l
    	l.move(e, &l.root)
    }
    
    // MoveToBack moves element e to the back of list l.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

    }
    
    def XlaBroadcastPass : Pass<"tf-xla-broadcast", "mlir::func::FuncOp"> {
      let summary = "Moves a broadcast from host into XLA, encoded as XlaAllReduce";
    
      let description = [{
        This pass moves brodcasts from host TF ops into XLA. This enables use of
        the inter-device network, which is faster than the inter-host network.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // replace mixed-type convolution and matmul cast hacks by XLA Conv2DOp and
    // MatmulOp.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateReplaceCastHacksWithTFXLAOpsPass();
    
    // Creates a pass that moves & merges initializer function's ops into the @main
    // function. This pass should be run on a valid tf_executor dialect. The control
    // output of the initializer function for non-variable resource initialization
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

    //   ordering constraint.
    constexpr std::array<StringRef, 2> kInitializerTypesByMergeOrder = {
        kTfSavedModelInitializerRestoreType, kTfSavedModelInitializerInitType};
    
    // This pass moves all ops from initializer functions to the main function. A
    // new `tf.NoOp` that has control dependency to the initializer function for
    // non-variable resources will be created. The control output of the new
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top