Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 263 for Function1 (0.16 sec)

  1. src/html/template/exec_test.go

    	// Issue 31810: Parenthesized first element of pipeline with arguments.
    	// See also TestIssue31810.
    	{"unparenthesized non-function", "{{1 2}}", "", nil, false},
    	{"parenthesized non-function", "{{(1) 2}}", "", nil, false},
    	{"parenthesized non-function with no args", "{{(1)}}", "1", nil, true}, // This is fine.
    
    	// Method calls.
    	{".Method0", "-{{.Method0}}-", "-M0-", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	// inFlightClaim is the one claim which is expected to be tracked as
    	// in flight, nil if none.
    	inFlightClaim *resourcev1alpha2.ResourceClaim
    }
    
    // change contains functions for modifying objects of a certain type. These
    // functions will get called for all objects of that type. If they needs to
    // make changes only to a particular instance, then it must check the name.
    type change struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  3. src/runtime/mgcmark.go

    			gp.inMarkAssist = false
    		}
    	}
    }
    
    // gcAssistAlloc1 is the part of gcAssistAlloc that runs on the system
    // stack. This is a separate function to make it easier to see that
    // we're not capturing anything from the user stack, since the user
    // stack may move while we're in this function.
    //
    // gcAssistAlloc1 indicates whether this assist completed the mark
    // phase by setting gp.param to non-nil. This can't be communicated on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/helpers.go

    type multiSorter struct {
    	pods []*v1.Pod
    	cmp  []cmpFunc
    }
    
    // Sort sorts the argument slice according to the less functions passed to OrderedBy.
    func (ms *multiSorter) Sort(pods []*v1.Pod) {
    	ms.pods = pods
    	sort.Sort(ms)
    }
    
    // OrderedBy returns a Sorter that sorts using the cmp functions, in order.
    // Call its Sort method to sort the data.
    func orderedBy(cmp ...cmpFunc) *multiSorter {
    	return &multiSorter{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		return 1
    	}
    
    	return 0
    }
    
    // For detection of capabilities on a system.
    // Is function descriptor f a valid function?
    func isValidLeFunc(f uintptr) error {
    	ret := funcptrtest(f, "")
    	if ret != 0 {
    		return fmt.Errorf("Bad pointer, not an LE function ")
    	}
    	return nil
    }
    
    // Retrieve function name from descriptor
    func getLeFuncName(f uintptr) (string, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            resolveFragmentOfCall: Boolean,
        ): List<KaCallCandidateInfo> {
            // If a function call is resolved to an implicit invoke call, the FirImplicitInvokeCall will have the `invoke()` function as the
            // callee and the variable as the explicit receiver. To correctly get all candidates, we need to get the original function
            // call's explicit receiver (if there is any) and callee (i.e., the variable).
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    				b.Values[j] = v
    			}
    			j++
    		}
    		if pendingLines.get(b.Pos) == int32(b.ID) {
    			b.Pos = b.Pos.WithIsStmt()
    			pendingLines.remove(b.Pos)
    		}
    		b.truncateValues(j)
    	}
    }
    
    // Common functions called from rewriting rules
    
    func is64BitFloat(t *types.Type) bool {
    	return t.Size() == 8 && t.IsFloat()
    }
    
    func is32BitFloat(t *types.Type) bool {
    	return t.Size() == 4 && t.IsFloat()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. src/cmd/internal/testdir/testdir_test.go

    	// The assembly output contains the concatenated dump of multiple functions.
    	// the first line of each function begins at column 0, while the rest is
    	// indented by a tabulation. These data structures help us index the
    	// output by function.
    	functionMarkers := make([]int, 1)
    	lineFuncMap := make(map[string]int)
    
    	lines := strings.Split(outStr, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/obj.go

    	rs1    uint32    // Source register 1
    	rs2    uint32    // Source register 2
    	rs3    uint32    // Source register 3
    	imm    int64     // Immediate
    	funct3 uint32    // Function 3
    	funct7 uint32    // Function 7 (or Function 2)
    }
    
    func (ins *instruction) String() string {
    	if ins.p == nil {
    		return ins.as.String()
    	}
    	var suffix string
    	if ins.p.As != ins.as {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  10. configure.py

        var_name: (String) string for name of environment variable, e.g. "TF_MYVAR".
        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 (1)
Back to top