Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 133 for expiring (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/tf2xla/api/v2/tf_dialect_to_executor.cc

      return absl::OkStatus();
    }
    
    mlir::PassPipelineRegistration<> tf_dialect_to_executor_pipeline(
        "tf-dialect-to-executor-v2",
        "Run passes to convert from TF Dialect to Executor in preparation for "
        "exporting module back to TF Graph.",
        AddTfDialectToExecutorPasses);
    
    }  // namespace v2
    }  // namespace tf2xla
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 23:22:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. pkg/test/csrctrl/authority/policies.go

    )
    
    // SigningPolicy validates a CertificateRequest before it's signed by the
    // CertificateAuthority. It may default or otherwise mutate a certificate
    // template.
    type SigningPolicy interface {
    	// not-exporting apply forces signing policy implementations to be internal
    	// to this package.
    	apply(template *x509.Certificate) error
    }
    
    // PermissiveSigningPolicy is the signing policy historically used by the local
    // signer.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 03 17:06:22 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/InterruptibleTaskTest.java

       */
      /*
       * This test hangs (or maybe is just *very* slow) under Android.
       *
       * TODO(b/218700094): Ideally, get this to pass under Android. Failing that, convince ourselves
       * that the test isn't exposing a real problem with InterruptibleTask, one that could matter in
       * prod.
       */
      @AndroidIncompatible
      public void testInterruptIsSlow() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/InterruptibleTaskTest.java

       */
      /*
       * This test hangs (or maybe is just *very* slow) under Android.
       *
       * TODO(b/218700094): Ideally, get this to pass under Android. Failing that, convince ourselves
       * that the test isn't exposing a real problem with InterruptibleTask, one that could matter in
       * prod.
       */
      @AndroidIncompatible
      public void testInterruptIsSlow() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v1/tf_dialect_to_executor.cc

    // form.
    mlir::PassPipelineRegistration<> tf_dialect_to_executor_pipeline(
        "tf-dialect-to-executor-v1",
        "Run passes to convert from TF Dialect to Executor in preparation for "
        "exporting module back to TF Graph.",
        AddTfDialectToExecutorPasses);
    
    }  // namespace v1
    }  // namespace tf2xla
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 03:41:02 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultSharedLibraryBinarySpecTest.groovy

            binary.sharedLibraryLinkFile = sharedLibraryLinkFile
            def lifecycleTask = Stub(Task)
            binary.setBuildTask(lifecycleTask)
            binary.builtBy(Stub(Task))
    
            and: "has at least one header exporting source set"
            final headerDir = tmpDir.createDir("headerDir")
            def headerDirSet = Stub(SourceDirectorySet) {
                getSrcDirs() >> [headerDir]
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. pkg/controller/job/tracking_utils.go

    // observe tracking finalizer deletions.
    type uidTrackingExpectations struct {
    	store cache.Store
    }
    
    // GetUIDs is a convenience method to avoid exposing the set of expected uids.
    // The returned set is not thread safe, all modifications must be made holding
    // the uidStoreLock.
    func (u *uidTrackingExpectations) getSet(controllerKey string) *uidSet {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 14 05:40:02 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top