Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 83 for pouch (0.09 sec)

  1. src/cmd/link/internal/ld/elf_test.go

    }
    
    func example(a A, b B) describer {
    	if b == 1 {
    		return &a
    	}
    	return &b
    }
    
    func ouch(a any, what string) string {
    	cv := reflect.ValueOf(a).MethodByName(what).Call(nil)
    	return cv[0].String()
    }
    
    func main() {
    	println(example("", 1).What())
    	println(ouch(example("", 1), "What"))
    }
    
    `
    
    func TestRelroSectionOverlapIssue67261(t *testing.T) {
    	t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTest.groovy

        private Test test
    
        def setup() {
            classesDir = temporaryFolder.createDir("classes")
            File classfile = new File(classesDir, "FileTest.class")
            FileUtils.touch(classfile)
            resultsDir = temporaryFolder.createDir("testResults")
            binResultsDir = temporaryFolder.createDir("binResults")
            reportDir = temporaryFolder.createDir("report")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiIntegrationTest.groovy

            // When adding support for a new JDK version, the previous release might not work with it yet.
            Assume.assumeTrue(otherVersion.worksWith(Jvm.current()))
    
            settingsFile.touch()
        }
    
        void setupLoggingTest() {
            propertiesFile << "org.gradle.logging.level=quiet"
            buildFile << LOG_LEVEL_TEST_SCRIPT
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultExecutionPlan.java

                    // The task for a node can be attached lazily
                    // Ensure the task is available if the caller happens to need it.
                    // It would be better for callers to not touch nodes directly, but instead take some immutable snapshot here
                    ((TaskNode) node).getTask();
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ConcurrentToolingApiIntegrationSpec.groovy

        final ToolingApi toolingApi = new ToolingApi(dist, temporaryFolder)
    
        int threads = 3
    
        def setup() {
            concurrent.shortTimeout = 180000
            settingsFile.touch()
        }
    
        def "handles the same target gradle version concurrently"() {
            buildFile << "apply plugin: 'java'"
    
            when:
            threads.times {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  6. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

            } catch (IOException e) {
                throw new RuntimeException(String.format("Could not move test file '%s' to directory '%s'", this, target), e);
            }
        }
    
        public TestFile touch() {
            try {
                FileUtils.touch(this);
            } catch (IOException e) {
                throw new RuntimeException(e);
            }
            assertIsFile();
            return this;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateXcodeProjectFileTask.java

                + "SUFFIXES=(swiftdoc swiftmodule h)\n"
                + "for ARCH in \"${ARCH_ARRAY[@]}\"\n"
                + "do\n"
                + "  for SUFFIX in \"${SUFFIXES[@]}\"\n"
                + "  do\n"
                + "    touch \"$OBJECT_FILE_DIR_normal/$ARCH/$PRODUCT_NAME.$SUFFIX\"\n"
                + "  done\n"
                + "done");
    
            PBXShellScriptBuildPhase gradleBuildPhase = new PBXShellScriptBuildPhase();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

        }
    
        def "wrong input file type registered via TaskInputs.#method is not allowed"() {
            enableProblemsApiCheck()
            expectReindentedValidationMessage()
            file("input-file.txt").touch()
    
            def inputDir = file("input-dir")
            inputDir.createDir()
            buildFile """
                task test {
                    inputs.${method}({ "$path" }) withPropertyName "input"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. docs/pt/docs/async.md

    Ao invés disso, sendo um sistema "assíncrono", uma vez finalizada, a tarefa pode esperar um pouco (alguns microssegundos) para que o computador / programa finalize o que quer que esteja fazendo,e então volte para pegar o resultado e continue trabalhando com ele.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  10. pilot/pkg/status/distribution/reporter.go

    	key := GenStatusReporterMapKey(conID, distributionType)
    	r.deleteKeyFromReverseMap(key)
    	var version string
    	if len(nonce) > 12 {
    		version = nonce[:xds.VersionLen]
    	} else {
    		version = nonce
    	}
    	// touch
    	r.status[key] = version
    	sets.InsertOrNew(r.reverseStatus, version, key)
    }
    
    // This is a helper function for keeping our reverseStatus map in step with status.
    // must have write lock before calling.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top