Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 84 for noArgs (0.11 sec)

  1. src/cmd/compile/internal/ssa/check.go

    		for _, v := range b.Values {
    			// Check to make sure argument count makes sense (argLen of -1 indicates
    			// variable length args)
    			nArgs := opcodeTable[v.Op].argLen
    			if nArgs != -1 && int32(len(v.Args)) != nArgs {
    				f.Fatalf("value %s has %d args, expected %d", v.LongString(),
    					len(v.Args), nArgs)
    			}
    
    			// Check to make sure aux values make sense.
    			canHaveAux := false
    			canHaveAuxInt := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. .idea/kotlinTestDataPluginTestDataPaths.xml

            <option value="$PROJECT_DIR$/plugins/kapt3/kapt3-cli/testData" />
            <option value="$PROJECT_DIR$/plugins/kapt3/kapt3-compiler/testData" />
            <option value="$PROJECT_DIR$/plugins/noarg/testData" />
            <option value="$PROJECT_DIR$/plugins/parcelize/parcelize-compiler/testData" />
            <option value="$PROJECT_DIR$/plugins/lombok/testData" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 15:09:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/types/InstrumentedTypesResourceGeneratorTest.groovy

                    .generatedFile(CLASS_OUTPUT, "META-INF/gradle/instrumentation/instrumented-classes.txt")
                    .contentsAsString(StandardCharsets.UTF_8)
                    .isEqualTo("org/gradle/api/Rule\norg/gradle/api/Task")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/writebarrier.go

    	args = append(args, mem)
    
    	// issue call
    	argTypes := make([]*types.Type, nargs, 3) // at most 3 args; allows stack allocation
    	for i := 0; i < nargs; i++ {
    		argTypes[i] = typ
    	}
    	call := b.NewValue0A(pos, OpStaticCall, types.TypeResultMem, StaticAuxCall(fn, b.Func.ABIDefault.ABIAnalyzeTypes(argTypes, nil)))
    	call.AddArgs(args...)
    	call.AuxInt = int64(nargs) * typ.Size()
    	return b.NewValue1I(pos, OpSelectN, types.TypeMem, 0, call)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

       * Having a public suffix is equivalent to having a registry suffix, because all registry suffixes
       * are public suffixes, and all public suffixes have registry suffixes.
       */
      private static final ImmutableSet<String> NO_RS = NO_PS;
    
      private static final ImmutableSet<String> NON_PS =
          ImmutableSet.of(
              "foo.bar.com",
              "foo.ca",
              "foo.bar.ca",
              "foo.blogspot.com",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. hack/verify-flags-underscore.py

    # limitations under the License.
    
    import argparse
    import os
    import re
    import sys
    
    parser = argparse.ArgumentParser()
    parser.add_argument("filenames", help="list of files to check, all files if unspecified", nargs='*')
    args = parser.parse_args()
    
    # Cargo culted from http://stackoverflow.com/questions/898669/how-can-i-detect-if-a-file-is-binary-non-text-in-python
    def is_binary(pathname):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractGradleceptionSmokeTest.groovy

            new TestFile("build/gradleBuildCurrent").copyTo(testProjectDir)
    
            and:
            def buildJavaHome = AvailableJavaHomes.getAvailableJdks(new GradleBuildJvmSpec()).last().javaHome
            file("gradle.properties") << "\norg.gradle.java.home=${buildJavaHome}\n"
        }
    
        SmokeTestGradleRunner.SmokeTestBuildResult getResult() {
            if (result == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AndroidTestProject.groovy

            }
    
            @Override
            void beforeScenario(ScenarioContext context) {
                def gradleProps = new File(invocation.projectDir, "gradle.properties")
                gradleProps << "\norg.gradle.java.home=${buildJavaHome.absolutePath.replace("\\", "/")}\n"
                gradleProps << "\nsystemProp.javaVersion=${javaVersion.majorVersion}\n"
            }
        }
    
        @Override
        String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinPrecompiledScriptPluginsSmokeTest.groovy

            def pluginPublishJavaHome = AvailableJavaHomes.getAvailableJdks(JavaVersion.VERSION_1_8).last().javaHome
            def pluginRepo = new MavenFileRepository(file('plugin-repo'))
            file("plugin-build/gradle.properties") << "\norg.gradle.java.home=${pluginPublishJavaHome}\n"
            file("plugin-build/settings.gradle.kts") << """rootProject.name = "undertest" """
            file("plugin-build/build.gradle.kts") << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

    }
    
    private void setMaxHeap(File projectDirectory, String maxHeap) {
        new File(projectDirectory, "gradle.properties") << "\norg.gradle.jvmargs=-Xmx${maxHeap}\n"
    
    }
    
    private void setParallel(File projectDirectory, boolean parallel) {
        new File(projectDirectory, "gradle.properties") << "\norg.gradle.parallel=${parallel}\n"
    
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top