Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 187 for arguments_ (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    Gradle provides a _hook_ that allows the build author to control the exact set of arguments passed to a tool chain executable. This enables the build author to work around any limitations in Gradle, or assumptions that Gradle makes. The arguments hook should be seen as a 'last-resort' mechanism, with preference given to truly modelling the underlying domain.
    
    === Example: Reconfigure tool arguments
    
    [source.multi-language-sample,groovy]
    .build.gradle
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. src/text/template/exec_test.go

    			}
    			t.Errorf("%s: expected error:\n%s\ngot:\n%s", tc.name, tc.wantErr, err)
    		}
    	}
    }
    
    // Issue 31810. Check that a parenthesized first argument behaves properly.
    func TestIssue31810(t *testing.T) {
    	// A simple value with no arguments is fine.
    	var b strings.Builder
    	const text = "{{ (.)  }}"
    	tmpl, err := New("").Parse(text)
    	if err != nil {
    		t.Error(err)
    	}
    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/runtime/traceback.go

    		// Add cgo frames (if we're done skipping over the requested number of
    		// Go frames).
    		if skip == 0 {
    			n += copy(pcBuf[n:], cgoBuf[:cgoN])
    		}
    	}
    	return n
    }
    
    // printArgs prints function arguments in traceback.
    func printArgs(f funcInfo, argp unsafe.Pointer, pc uintptr) {
    	p := (*[abi.TraceArgsMaxLen]uint8)(funcdata(f, abi.FUNCDATA_ArgInfo))
    	if p == nil {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    	$.fn.jstree = function (settings) {
    		var isMethodCall = (typeof settings == 'string'), // is this a method call like $().jstree("open_node")
    			args = Array.prototype.slice.call(arguments, 1),
    			returnValue = this;
    
    		// if a method call execute the method on all selected instances
    		if(isMethodCall) {
    			if(settings.substring(0, 1) == '_') { return returnValue; }
    			this.each(function() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  5. src/cmd/cgo/out.go

    		fmt.Fprintf(fgcc, "\tsize_t _cgo_ctxt = _cgo_wait_runtime_init_done();\n")
    		// The results part of the argument structure must be
    		// initialized to 0 so the write barriers generated by
    		// the assignments to these fields in Go are safe.
    		//
    		// We use a local static variable to get the zeroed
    		// value of the argument type. This avoids including
    		// string.h for memset, and is also robust to C++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    `into()` is straightforward, requiring a directory path as its argument in any form supported by the link:{groovyDslPath}/org.gradle.api.Project.html#org.gradle.api.Project:file(java.lang.Object)[Project.file(java.lang.Object)] method.
    The `from()` configuration is far more flexible.
    
    Not only does `from()` accept multiple arguments, it also allows several different types of argument.
    For example, some of the most common types are:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. src/cmd/go/go_test.go

    		if re.Match(ln) {
    			return true
    		}
    	}
    	return false
    }
    
    // doGrep looks for a regular expression in a buffer and fails if it
    // is not found. The name argument is the name of the output we are
    // searching, "output" or "error". The msg argument is logged on
    // failure.
    func (tg *testgoData) doGrep(match string, b *bytes.Buffer, name, msg string) {
    	tg.t.Helper()
    	if !tg.doGrepMatch(match, b) {
    		tg.t.Log(msg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                fakeFirQualifiedAccess = buildFunctionCall {
                    annotations.addAll(functionCall.annotations)
    
                    /**
                     * It is important to avoid passing type arguments when they are implicit type arguments.
                     * For example,
                     *   package a.b.c
                     *   fun <T, E> foo(a: T, b: E) {}      // A
                     *   fun test() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/expr.go

    			panic("unreachable")
    		}
    		return
    
    	case *syntax.CallExpr:
    		// Resulting in an untyped constant (e.g., built-in complex).
    		// The respective calls take care of calling updateExprType
    		// for the arguments if necessary.
    
    	case *syntax.Name, *syntax.BasicLit, *syntax.SelectorExpr:
    		// An identifier denoting a constant, a constant literal,
    		// or a qualified identifier (imported untyped constant).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/type.go

    	}
    	t.rparams = &rparams
    	// HasShape should be set if any type argument is or has a shape type.
    	for _, rparam := range rparams {
    		if rparam.HasShape() {
    			t.SetHasShape(true)
    			break
    		}
    	}
    }
    
    // IsFullyInstantiated reports whether t is a fully instantiated generic type; i.e. an
    // instantiated generic type where all type arguments are non-generic or fully
    // instantiated generic types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top