Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 94 for expiring (0.31 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/graph_optimization_pass.cc

      LayoutOptimizationPipelineOptions layout_optimization_options;
      CreateLayoutOptimizationPipeline(pm.nest<func::FuncOp>(),
                                       layout_optimization_options);
    
      // Prepare IR for exporting.
      pm.addPass(CreateBreakUpIslandsPass());
    
      // In case of failure, the `diag_handler` converts MLIR errors emitted to the
      // MLIRContext into a tensorflow::Status.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/generators/go122-syscall-steal-proc-gen-boundary-reacquire-new-proc.go

    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g := t.Generation(1)
    
    	// One goroutine is exiting with a syscall. It already
    	// acquired a new P.
    	b0 := g.Batch(trace.ThreadID(0), 0)
    	b0.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoSyscall)
    	b0.Event("ProcStatus", trace.ProcID(1), go122.ProcIdle)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/operations/TestListenerBuildOperationAdapterTest.groovy

                assert generatedDescriptor == it[0] // started and finished descriptors are the same
                assert it[1].startTime == 0
                assert it[1].endTime == 500
                assert it[1].failure == null // not exposing test failures as operation failures
                assert it[1].result.result == testResult
            }
            1 * clock.currentTime >> 500
            0 * buildOperationIdFactory.nextId()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/stablehlo/quantization.h

    namespace tensorflow {
    
    // Runs quantization on `module_op`. `saved_model_bundle` is required to
    // retrieve information about the original model (e.g. signature def mapping)
    // because quantization requires exporting the intermediate `ModuleOp` back to
    // SavedModel for calibration. Similarly, `saved_model_dir` is required to
    // access the assets of the original model. `saved_model_tags` uniquely
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 02:44:03 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. hack/update-generated-docs.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This file is not intended to be run automatically. It is meant to be run
    # immediately before exporting docs. We do not want to check these documents in
    # by default.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/api/internal/DocumentationRegistry.java

        public static final String KOTLIN_DSL_URL_FORMAT = "%s/kotlin-dsl/gradle/%s";
        public static final String LEARN_MORE_STRING = "Learn more about Gradle by exploring our Samples at ";
    
        /**
         * Returns the location of the documentation for the given feature, referenced by id. The location may be local or remote.
         */
        public String getDocumentationFor(String id) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 14:14:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. cmd/signals.go

    		return true
    	}
    
    	for {
    		select {
    		case err := <-globalHTTPServerErrorCh:
    			shutdownLogIf(context.Background(), err)
    			exit(stopProcess())
    		case osSignal := <-globalOSSignalCh:
    			logger.Info("Exiting on signal: %s", strings.ToUpper(osSignal.String()))
    			daemon.SdNotify(false, daemon.SdNotifyStopping)
    			exit(stopProcess())
    		case signal := <-globalServiceSignalCh:
    			switch signal {
    			case serviceRestart:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 17:57:52 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. src/database/sql/doc.txt

      an *sql.DB, it should be possible to share that instance between
      multiple goroutines, without any extra synchronization.
    
    * Push complexity, where necessary, down into the sql+driver packages,
      rather than exposing it to users. Said otherwise, the sql package
      should expose an ideal database that's not finicky about how it's
      accessed, even if that's not true.
    
    * Provide optional interfaces in sql/driver for drivers to implement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 06:48:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/runtime/testdata/testprogcgo/threadprof.go

    		if i != 0 {
    			fmt.Println("pthread_create failed:", i)
    			// Exit with 0 because parent expects us to crash.
    			return
    		}
    
    		// We should crash immediately, but give it plenty of
    		// time before failing (by exiting 0) in case we are
    		// running on a slow system.
    		time.Sleep(5 * time.Second)
    		return
    	}
    
    	cmd := exec.Command(os.Args[0], "CgoExternalThreadSignal", "crash")
    	cmd.Dir = os.TempDir() // put any core file in tempdir
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 22:43:54 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/GenerationPlanBuilder.java

                            grammarMetadata.getImportVocab());
                    if (importVocabGrammarFileMetadata == null) {
                        LOGGER.warn("unable to locate grammar exporting specified import vocab ["
                                + grammarMetadata.getImportVocab() + "]");
                    } else if (!importVocabGrammarFileMetadata.getFilePath().equals(grammarFileMetadata.getFilePath())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top