Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for task_info (0.13 sec)

  1. src/runtime/race/race_darwin_amd64.go

    //go:cgo_import_dynamic stat$INODE64 stat$INODE64 ""
    //go:cgo_import_dynamic sysconf sysconf ""
    //go:cgo_import_dynamic sysctl sysctl ""
    //go:cgo_import_dynamic sysctlbyname sysctlbyname ""
    //go:cgo_import_dynamic task_info task_info ""
    //go:cgo_import_dynamic tcgetattr tcgetattr ""
    //go:cgo_import_dynamic tcsetattr tcsetattr ""
    //go:cgo_import_dynamic unlink unlink ""
    //go:cgo_import_dynamic unlockpt unlockpt ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:29:22 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. src/runtime/race/race_darwin_arm64.go

    //go:cgo_import_dynamic stat stat ""
    //go:cgo_import_dynamic sysconf sysconf ""
    //go:cgo_import_dynamic sysctl sysctl ""
    //go:cgo_import_dynamic sysctlbyname sysctlbyname ""
    //go:cgo_import_dynamic task_info task_info ""
    //go:cgo_import_dynamic tcgetattr tcgetattr ""
    //go:cgo_import_dynamic tcsetattr tcsetattr ""
    //go:cgo_import_dynamic unlink unlink ""
    //go:cgo_import_dynamic unlockpt unlockpt ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:29:22 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. src/runtime/mem_darwin.go

    	if err != 0 {
    		return nil
    	}
    	return v
    }
    
    func sysUnusedOS(v unsafe.Pointer, n uintptr) {
    	// MADV_FREE_REUSABLE is like MADV_FREE except it also propagates
    	// accounting information about the process to task_info.
    	madvise(v, n, _MADV_FREE_REUSABLE)
    }
    
    func sysUsedOS(v unsafe.Pointer, n uintptr) {
    	// MADV_FREE_REUSE is necessary to keep the kernel's accounting
    	// accurate. If called on any memory region that hasn't been
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/AbstractTask.java

        private LoggingManagerInternal loggingManager;
    
        protected AbstractTask() {
            this(taskInfo());
        }
    
        private static TaskInfo taskInfo() {
            return NEXT_INSTANCE.get();
        }
    
        private AbstractTask(TaskInfo taskInfo) {
            if (taskInfo == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

            0 * _
        }
    
        def cachesClassMetaInfo() {
            given:
            def taskInfo1 = taskClassInfoStore.getTaskClassInfo(TaskWithInputFile)
            def taskInfo2 = taskClassInfoStore.getTaskClassInfo(TaskWithInputFile)
    
            expect:
            taskInfo1.is(taskInfo2)
        }
    
        def "fails for #type.simpleName"() {
            when:
            expectTaskCreated(type)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/debug/debug_test.cc

      mlir::OwningOpRef<mlir::ModuleOp> module_;
    
     private:
      std::string GetOutputPath() {
        const auto* const test_info =
            testing::UnitTest::GetInstance()->current_test_info();
        return tsl::io::JoinPath(
            getenv("TEST_UNDECLARED_OUTPUTS_DIR"),
            absl::StrCat(test_info->test_suite_name(), ".", test_info->name()));
      }
    };
    
    TEST_F(InitPassManagerTest, CrashReproducer) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 11:15:16 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

        return test_info->is_reportable() && test_info->is_disabled_;
      }
    
      // Returns true iff test is disabled.
      static bool TestDisabled(const TestInfo* test_info) {
        return test_info->is_disabled_;
      }
    
      // Returns true iff this test will appear in the XML report.
      static bool TestReportable(const TestInfo* test_info) {
        return test_info->is_reportable();
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    a|
    [source,kotlin]
    ----
    plugins {
      id("org.barfuin.gradle.taskinfo") version "2.1.0"
    }
    ----
    
    |<<#sec:buildsrc_plugins_dsl,2>>
    |Apply common *core*, *community* or *local* plugin to multiple subprojects.
    |<<#sec:buildsrc_plugins_dsl,A build script in the `buildSrc` directory>>
    a|
    [source,kotlin]
    ----
    plugins {
        id("org.barfuin.gradle.taskinfo") version "2.1.0"
    }
    repositories {
        mavenCentral()
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

        return test_info->is_reportable() && test_info->is_disabled_;
      }
    
      // Returns true iff test is disabled.
      static bool TestDisabled(const TestInfo* test_info) {
        return test_info->is_disabled_;
      }
    
      // Returns true iff this test will appear in the XML report.
      static bool TestReportable(const TestInfo* test_info) {
        return test_info->is_reportable();
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

              test_case_name = instantiation_name + "/";
            test_case_name += test_info->test_case_base_name;
    
            int i = 0;
            for (typename ParamGenerator<ParamType>::iterator param_it =
                     generator.begin();
                 param_it != generator.end(); ++param_it, ++i) {
              Message test_name_stream;
              test_name_stream << test_info->test_base_name << "/" << i;
              MakeAndRegisterTestInfo(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
Back to top