Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 63 for expiring (0.33 sec)

  1. 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)
  2. 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)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/weight_only_ptq.cc

          CreateExportedModel(signature_keys, tags, quantization_config,
                              WeightOnlyPtqComponent::kName, *function_aliases,
                              *ctx, *module));
    
      // Remove the `tpu` tag for exporting because the output quantized model is
      // essentially a CPU model.
      tags.erase("tpu");
    
      py_function_library.SaveExportedModel(
          dst_saved_model_path, post_calibrated_exported_model,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_device_compiler_client.cc

        const xla::LocalExecutable& executable) {
      if (executable.executable() == nullptr) {
        return errors::FailedPrecondition(
            "Executable not found for serialization.");
      }
    
      VLOG(1)
          << "Exporting xla::LocalExecutable as an xla::AotCompilationResult and "
             "serializing it to string.";
      xla::Compiler* compiler = client_->backend().compiler();
      auto exported = compiler->Export(executable.executable());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/internal/weak/pointer.go

    semantics of the WeakReference type.
    
    Using go:linkname to access this package and the functions it references
    is explicitly forbidden by the toolchain because the semantics of this
    package have not gone through the proposal process. By exposing this
    functionality, we risk locking in the existing semantics due to Hyrum's Law.
    
    If you believe you have a good use-case for weak references not already
    covered by the standard library, file a proposal issue at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:13:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

      <modelVersion>4.0.0</modelVersion>
      <groupId>com.gradle.tutorial</groupId>
      <artifactId>tutorial</artifactId>
      <version>1.0</version>
      <packaging>pom</packaging>
    </project>
    ----
    
    == Step 5. Exploring Plugins
    Plugins are used to extend build capability and customize Gradle.
    
    Using plugins is the **primary mechanism for organizing build logic**.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/getting_started_eng.adoc

    <<part2_gradle_tasks#part2_begin,Part 2.>> Running Tasks +
    <<part3_gradle_dep_man#part3_begin,Part 3.>> Understanding Dependencies +
    <<part4_gradle_plugins#part4_begin,Part 4.>> Applying Plugins +
    <<part5_gradle_inc_builds#part5_begin,Part 5.>> Exploring Incremental Builds +
    <<part6_gradle_caching#part6_begin,Part 6.>> Enabling the Cache +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/ClasspathWalker.java

                // However, this property is mostly an accident of the way this classpath entry was produced.
                // Exposing it may put unnecessary burden on clients if, for example, they try to keep the compression method
                // while repackaging entries.
                return CompressionMethod.UNDEFINED;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. pkg/envoy/agent.go

    	// When we terminate, we will instead exit immediately
    	a.DisableDraining()
    }
    
    // terminate starts exiting the process.
    func (a *Agent) terminate() {
    	log.Infof("Agent draining Proxy for termination")
    	if a.skipDrain.Load() {
    		log.Infof("Agent already drained, exiting immediately")
    		a.abortCh <- errAbort
    		return
    	}
    	e := a.proxy.Drain(false)
    	if e != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. src/runtime/os_wasm.go

    //go:nosplit
    func sigsave(p *sigset) {
    }
    
    //go:nosplit
    func msigrestore(sigmask sigset) {
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func clearSignalHandlers() {
    }
    
    //go:nosplit
    func sigblock(exiting bool) {
    }
    
    // Called to initialize a new m (including the bootstrap m).
    // Called on the new thread, cannot allocate memory.
    func minit() {
    }
    
    // Called from dropm to undo the effect of an minit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top