Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 4,433 for Dead (0.06 sec)

  1. internal/http/dial_linux.go

    				_ = syscall.SetsockoptInt(fd, syscall.IPPROTO_TCP, syscall.TCP_KEEPINTVL, 15)
    			}
    
    			// Set tcp user timeout in addition to the keep-alive - tcp-keepalive is not enough to close a socket
    			// with dead end because tcp-keepalive is not fired when there is data in the socket buffer.
    			//    https://blog.cloudflare.com/when-tcp-sockets-refuse-to-die/
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (3)
  2. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.mlir

        return %0 : tensor<3x11xf32>
      }
    }
    
    // -----
    
    // Tests where StableHLO graph in main has dead end.
    // This test makes sure tracing will include the dead end from the op in the
    // same sub graph:
    // stablehlo.add and %0 along with its dead end branch are in the same sub
    // graph.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/fuse_branchredirect.go

    				}
    				changed = true
    				k--
    				break
    			}
    			ft.restore()
    		}
    		if len(b.Preds) == 0 && b != f.Entry {
    			// Block is now dead.
    			b.Kind = BlockInvalid
    		}
    	}
    	ft.restore()
    	ft.cleanup(f)
    	return changed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

    // of following two conditions:
    // 1: The user is already in the current subgraph.
    // 2: The user will reach a dead end.
    //
    // If the op should be added to the subgraph and there are users who
    // will reach the dead end, add the ops on the dead end to the subgraph as well.
    bool ShouldAddOpToSubgraph(Operation* op,
                               const SetVector<Operation*>& reverse_subgraph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. src/internal/concurrent/hashtriemap_test.go

    			e = e.overflow.Load()
    		}
    		return
    	}
    	i := n.indirect()
    	fmt.Printf("%s%p [Indirect Parent=%p Dead=%t Children=[", prefix, i, i.parent, i.dead.Load())
    	for j := range i.children {
    		c := i.children[j].Load()
    		fmt.Printf("%p", c)
    		if j != len(i.children)-1 {
    			fmt.Printf(", ")
    		}
    	}
    	fmt.Printf("]]\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/DependentComponentsReport.java

        }
    
        @TaskAction
        public void report() {
            // Once we are here, the project lock is held. If we synchronize to avoid cross-project operations, we will have a dead lock.
            getWorkerLeaseService().runAsIsolatedTask(() -> {
                // Output reports per execution, not mixed.
                // Cross-project ModelRegistry operations do not happen concurrently.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. src/runtime/debuglog_test.go

    //
    // 1. Make these tests re-build the runtime test with the debuglog
    // build tag and re-invoke themselves.
    //
    // 2. Always build the whole debuglog infrastructure and depend on
    // linker dead-code elimination to drop it. This is easy for dlog()
    // since there won't be any calls to it. For printDebugLog, we can
    // make panic call a wrapper that is call printDebugLog if the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 16:59:26 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  8. pkg/kubelet/container/runtime.go

    	// specifies whether the runtime returns all containers including those already
    	// exited and dead containers (used for garbage collection).
    	GetPods(ctx context.Context, all bool) ([]*Pod, error)
    	// GarbageCollect removes dead containers using the specified container gc policy
    	// If allSourcesReady is not true, it means that kubelet doesn't have the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/liveness/plive.go

    		// partially live.
    		lv.partLiveArgs[n] = true
    	}
    
    	var effect liveEffect
    	// Read is a read, obviously.
    	//
    	// Addr is a read also, as any subsequent holder of the pointer must be able
    	// to see all the values (including initialization) written so far.
    	// This also prevents a variable from "coming back from the dead" and presenting
    	// stale pointers to the garbage collector. See issue 28445.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. src/compress/gzip/gunzip_test.go

    			"nobly advanced.  It is rather for us to be here dedicated to\n" +
    			"the great task remaining before us — that from these honored\n" +
    			"dead we take increased devotion to that cause for which they\n" +
    			"gave the last full measure of devotion —\n" +
    			"  that we here highly resolve that these dead shall not have\n" +
    			"died in vain — that this nation, under God, shall have a new\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 15:06:07 UTC 2022
    - 19.5K bytes
    - Viewed (0)
Back to top