Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 212 for takes (0.12 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

         * </ul>
         *
         * In case a delegate schema is supplied, the generated class will also have:
         * <ul>
         *     <li>a constructor that also takes a delegate instance</li>
         *     <li>methods that call through to the delegate instance</li>
         * </ul>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  2. src/text/template/exec_test.go

    	c := make(chan string)
    	go func() {
    		for i := 0; i < n; i++ {
    			c <- "abcdefghijklmnop"[i : i+1]
    		}
    		close(c)
    	}()
    	return c
    }
    
    // vfunc takes a *V and a V
    func vfunc(V, *V) string {
    	return "vfunc"
    }
    
    // valueString takes a string, not a pointer.
    func valueString(v string) string {
    	return "value is ignored"
    }
    
    // returnInt returns an int
    func returnInt() int {
    	return 7
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. src/reflect/type.go

    // manipulate objects with arbitrary types. The typical use is to take a value
    // with static type interface{} and extract its dynamic type information by
    // calling TypeOf, which returns a Type.
    //
    // A call to ValueOf returns a Value representing the run-time data.
    // Zero takes a Type and returns a Value representing a zero value
    // for that type.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     *
     * <li>The build file. The project searches for a matching method declared in the build file.</li>
     *
     * <li>The extensions added to the project by the plugins. Each extension is available as a method which takes
     * a closure or {@link org.gradle.api.Action} as a parameter.</li>
     *
     * <li>The convention methods added to the project by the plugins. A plugin can add properties and method to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    	// Clear X15 because Go expects it and we're not calling
    	// through a wrapper, but otherwise avoid setting the G
    	// register in the wrapper and call needm directly. It
    	// takes no arguments and doesn't return any values so
    	// there's no need to handle that. Clear R14 so that there's
    	// a bad value in there, in case needm tries to use it.
    	XORPS	X15, X15
    	XORQ    R14, R14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    // a' = (ADDCC x y)
    // a” = (Select0 a')
    // b  = (CMPconst [0] a”)
    // c  = (OR a z)
    //
    // which makes it impossible to rewrite the second user. Instead the result
    // of this conversion is:
    // a' = (ADDCC x y)
    // a  = (Select0 a')
    // b  = (CMPconst [0] a)
    // c  = (OR a z)
    //
    // Which makes it trivial to rewrite b using a lowering rule.
    func convertPPC64OpToOpCC(op *Value) *Value {
    	ccOpMap := map[Op]Op{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. configure.py

        var_default: (String) default value string.
        ask_for_var: (String) string for how to ask for user input.
        check_success: (Function) function that takes one argument and returns a
          boolean. Should return True if the value provided is considered valid. May
          contain a complex error message if error_msg does not provide enough
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf.go

    )
    
    /*
     * Walk prog table, emit line program and build DIE tree.
     */
    
    func getCompilationDir() string {
    	// OSX requires this be set to something, but it's not easy to choose
    	// a value. Linking takes place in a temporary directory, so there's
    	// no point including it here. Paths in the file table are usually
    	// absolute, in which case debuggers will ignore this value. -trimpath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func UTF16PtrFromString(s string) (*uint16, error) {
    	a, err := UTF16FromString(s)
    	if err != nil {
    		return nil, err
    	}
    	return &a[0], nil
    }
    
    // UTF16PtrToString takes a pointer to a UTF-16 sequence and returns the corresponding UTF-8 encoded string.
    // If the pointer is nil, it returns the empty string. It assumes that the UTF-16 sequence is terminated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    // The test has two checks, first with maxLength unset to check if maxLength can be concluded from enums,
    // second with maxLength set to ensure it takes precedence.
    func genEnumWithRuleAndValues(rule string, values ...string) func(maxLength *int64) *schema.Structural {
    	enums := make([]schema.JSON, 0, len(values))
    	for _, v := range values {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top