Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 158 for parare (0.49 sec)

  1. src/cmd/compile/internal/rangefunc/rewrite.go

    				as.SetPos(x.Pos())
    				setPos(as.Rhs, x.Pos())
    				bodyFunc.Body.List = append(bodyFunc.Body.List, as)
    			}
    		}
    		params = append(params, paramVar)
    	}
    
    	tv := syntax.TypeAndValue{
    		Type: types2.NewSignatureType(nil, nil, nil,
    			types2.NewTuple(params...),
    			types2.NewTuple(results...),
    			false),
    	}
    	tv.SetIsValue()
    	bodyFunc.SetTypeInfo(tv)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    		return "", false
    	}
    
    	params := name.FuncType.Params
    	args := call.Call.Args
    	end := call.Call.End()
    
    	// Avoid a crash if the number of arguments doesn't match
    	// the number of parameters.
    	// This will be caught when the generated file is compiled.
    	if len(args) != len(params) {
    		return "", false
    	}
    
    	any := false
    	for i, param := range params {
    		if p.needsPointerCheck(f, param.Go, args[i]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. deps.xml

    		<mkdir dir="${thumbnail.dir}/lib" />
    		<!-- javax.annotation-api -->
    		<antcall target="install.env.jar">
    			<param name="repo.url" value="${maven.release.repo.url}" />
    			<param name="jar.groupId" value="javax/annotation" />
    			<param name="jar.artifactId" value="javax.annotation-api" />
    			<param name="jar.version" value="1.3.2" />
    			<param name="file.version" value="1.3.2" />
    		</antcall>
    		<!-- kopf -->
    		<get dest="${target.dir}/kopf.zip">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:59:50 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/prettyPrintResults.kt

    import org.gradle.internal.declarativedsl.language.This
    import org.gradle.internal.declarativedsl.language.UnsupportedConstruct
    import org.gradle.internal.declarativedsl.parsing.ParseTestUtil.Parser.parse
    
    
    fun prettyPrintLanguageTreeResult(languageTreeResult: LanguageTreeResult): String {
        val languageResults = languageTreeResult.imports.map { Element(it) } + languageTreeResult.topLevelBlock.content.map { Element(it) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

                )
            """.trimIndent()
    
            results.assert(expected)
        }
    
        @Test
        fun `parse infix function call with regular arguments`() {
            val results = parse(
                """
                f("a") g("b")
                """.trimIndent()
            )
    
            val expected = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                    final SearchForm params = new SearchForm() {
                        @Override
                        public int getPageSize() {
                            return 0;
                        }
    
                        @Override
                        public int getStartPosition() {
                            return 0;
                        }
                    };
                    params.q = query;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompilerFacility.kt

            }
    
            // The IR backend will try to regenerate object literals defined in inline functions from generated class files during inlining.
            // Hence, we need to be aware of which object declarations are defined in the relevant inline functions.
            val inlineObjectDeclarations = inlineAnalyzer.inlineObjectDeclarations()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

            withDependencies {
                add(project.dependencies.create(project(defaultDependency)))
            }
        }
    
    fun consumableVariant(name: String, elements: String, bundling: String, extends: List<Configuration>, vararg artifacts: Any) =
        configurations.create("${name}Elements") {
            attributes {
                attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.JAVA_RUNTIME))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/predicates.go

    				if !c.identical(xtparam.bound, ybound, p) {
    					return false
    				}
    			}
    
    			yparams = check.subst(nopos, y.params, smap, nil, ctxt).(*Tuple)
    			yresults = check.subst(nopos, y.results, smap, nil, ctxt).(*Tuple)
    		}
    
    		return x.variadic == y.variadic &&
    			c.identical(x.params, yparams, p) &&
    			c.identical(x.results, yresults, p)
    
    	case *Union:
    		if y, _ := y.(*Union); y != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/LifecycleConfiguration.java

        /**
         * Method removeLifecycle.
         *
         * @param lifecycle a lifecycle object.
         */
        public void removeLifecycle(Lifecycle lifecycle) {
            getLifecycles().remove(lifecycle);
        } // -- void removeLifecycle( Lifecycle )
    
        /**
         * Set the lifecycles field.
         *
         * @param lifecycles a lifecycles object.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top