Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 327 for expiring (0.18 sec)

  1. src/cmd/go/testdata/script/test_fuzz_io_error.txt

    ! stdout 'communicating with fuzzing process'
    ! exists testdata
    
    # If the I/O error occurs after F.Fuzz is called (unlikely), just exit.
    # It's hard to distinguish this case from the worker being interrupted by ^C
    # or exiting with status 0 (which it should do when interrupted by ^C).
    ! go test -fuzz=FuzzClosePipeAfter -parallel=1
    stdout '^\s*communicating with fuzzing process: invalid character ''!'' looking for beginning of value$'
    ! exists testdata
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. src/internal/fuzz/minimize.go

    	// then the vals slice in (*workerServer).minimizeInput will point to
    	// tmp. Since tmp is altered while making new candidates, we need to
    	// make sure that it is equal to the correct value, v, before exiting
    	// this function.
    	defer copy(tmp, v)
    
    	// First, try to cut the tail.
    	for n := 1024; n != 0; n /= 2 {
    		for len(v) > n {
    			if shouldStop() {
    				return
    			}
    			candidate := v[:len(v)-n]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 07 21:15:51 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/continuous/ContinuousBuildActionExecutorTest.groovy

        }
    
        def "exits if there are no file system inputs"() {
            given:
            continuousBuildEnabled()
    
            when:
            executeBuild()
            then:
            lastLogLine == "{failure}Exiting continuous build as Gradle did not detect any file system inputs.{normal}"
        }
    
        def "exits if Gradle is not watching anything"() {
            given:
            continuousBuildEnabled()
            buildDeclaresInputs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/tac_module.h

        // purpose.
        bool debug_mode = false;
        // Whether to enable inliner passes or not.
        bool enable_inliner = false;
        // Whether to legalize ops to TFLite ops before exporting.
        bool legalize_to_tflite_ops = false;
      };
    
      virtual ~TacModule() = default;
    
      explicit TacModule(const Options& options) : options_(options) {}
    
      void SetImporter(std::unique_ptr<TacImporter> importer) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheConfigurationBuildOperationIntegrationTest.groovy

            then:
            def config = result().remote.config
            config.url == safeUri.toString() + '/'
            config.authenticated == "true"
        }
    
        def "--offline wins over DSL configuration when exposing remote enabled configuration"() {
            given:
            httpBuildCacheServer.start()
            def url = "${httpBuildCacheServer.uri}/"
            settingsFile << """
                buildCache {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. src/runtime/os_windows.go

    	var fn any = ctrlHandler
    	ctrlHandlerPC := compileCallback(*efaceOf(&fn), true)
    	stdcall2(_SetConsoleCtrlHandler, ctrlHandlerPC, 1)
    
    	monitorSuspendResume()
    }
    
    // exiting is set to non-zero when the process is exiting.
    var exiting uint32
    
    //go:nosplit
    func exit(code int32) {
    	// Disallow thread suspension for preemption. Otherwise,
    	// ExitProcess and SuspendThread can race: SuspendThread
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/go/terminal_test.go

    		os.Stdout.WriteString("1")
    	} else {
    		os.Stdout.WriteString("X")
    	}
    	if term.IsTerminal(2) {
    		os.Stdout.WriteString("2")
    	} else {
    		os.Stdout.WriteString("X")
    	}
    
    	// Before exiting, wait for the parent process to read the PTY output,
    	// at which point it will close stdin.
    	io.Copy(io.Discard, os.Stdin)
    
    	os.Exit(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 07 18:18:50 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/static_range_ptq.cc

          CreateExportedModel(signature_keys, tags, quantization_config,
                              PostCalibrationComponent::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: Wed Apr 24 12:49:45 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top