Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for argsFor (0.07 sec)

  1. src/cmd/asm/internal/lex/input.go

    			continue
    		}
    		tokens = append(tokens, substitution...)
    	}
    	in.Push(NewSlice(in.Base(), in.Line(), tokens))
    }
    
    // argsFor returns a map from formal name to actual value for this argumented macro invocation.
    // The opening parenthesis has been absorbed.
    func (in *Input) argsFor(macro *Macro) map[string][]Token {
    	var args [][]Token
    	// One macro argument per iteration. Collect them all and check counts afterwards.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Sep 06 13:17:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. cmd/api-resources_test.go

    			encodingType: "gzip",
    		},
    	}
    
    	for i, testCase := range testCases {
    		prefix, marker, delimiter, maxKeys, encodingType, argsErr := getListObjectsV1Args(testCase.values)
    		if argsErr != ErrNone {
    			t.Errorf("Test %d: argument parsing failed, got %v", i+1, argsErr)
    		}
    		if prefix != testCase.prefix {
    			t.Errorf("Test %d: Expected %s, got %s", i+1, testCase.prefix, prefix)
    		}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  3. RELEASE.md

        *   Add meta-distribution BatchReshape which reshapes batch dimensions.
        *   `tf.contrib.layers.recompute_grad` works for explicit gradient
            checkpointing on TPU.
        *   Add `tf.contrib.framework.argsort`.
        *   Allow `DNNBoostedTreeCombinedEstimator` to work with core versions of
            feature columns and losses.
        *   Add non-linear image warping ops: `tf.contrib.image.sparse_image_warp`,
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Oct 22 14:33:53 UTC 2024
    - 735.3K bytes
    - Viewed (0)
Back to top