Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for reachable (0.28 sec)

  1. src/cmd/link/internal/ld/data.go

    func (state *dodataState) dynreloc(ctxt *Link) {
    	if ctxt.HeadType == objabi.Hwindows {
    		return
    	}
    	// -d suppresses dynamic loader format, so we may as well not
    	// compute these sections or mark their symbols as reachable.
    	if *FlagD {
    		return
    	}
    
    	for _, s := range ctxt.Textp {
    		dynrelocsym(ctxt, s)
    	}
    	for _, syms := range state.data {
    		for _, s := range syms {
    			dynrelocsym(ctxt, s)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

      detect-master
    
      echo "Waiting up to ${KUBE_CLUSTER_INITIALIZATION_TIMEOUT} seconds for cluster initialization."
      echo
      echo "  This will continually check to see if the API for kubernetes is reachable."
      echo "  This may time out if there was some uncaught error during start up."
      echo
    
      # curl in mavericks is borked.
      secure=""
      if which sw_vers >& /dev/null; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // arguments as a list of modules and finds a path to any package in each
    // of the modules.
    //
    // By default, why queries the graph of packages matched by "go list all",
    // which includes tests for reachable packages. The -vendor flag causes why
    // to exclude tests of dependencies.
    //
    // The output is a sequence of stanzas, one for each package or module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    		vetFlags = []string{"-unsafeptr=false"}
    
    		// Also turn off -unreachable checks during go test.
    		// During testing it is very common to make changes
    		// like hard-coded forced returns or panics that make
    		// code unreachable. It's unreasonable to insist on files
    		// not having any unreachable code during "go test".
    		// (buildall.bash still has -unreachable enabled
    		// for the overall whole-tree scan.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers.go

    // human-readable approximation.
    func translateMicroTimestampSince(timestamp metav1.MicroTime) string {
    	if timestamp.IsZero() {
    		return "<unknown>"
    	}
    
    	return duration.HumanDuration(time.Since(timestamp.Time))
    }
    
    // translateTimestampSince returns the elapsed time since timestamp in
    // human-readable approximation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      }];
    
      let constructor = "tf_executor::CreateTFExecutorCheckControlDependenciesPass()";
    }
    
    def ExecutorGraphPruningPass : Pass<"tf-executor-graph-pruning", "mlir::func::FuncOp"> {
      let summary = "Prunes unreachable ops in a tf_executor.graph";
    
      let description = [{
        This pass removes ops from a `tf_executor.graph` that are not transitively, via
        data or control dependencies, connected to the associated `tf_executor.fetch`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. src/net/http/server.go

    		}
    
    		if d := c.server.idleTimeout(); d > 0 {
    			c.rwc.SetReadDeadline(time.Now().Add(d))
    		} else {
    			c.rwc.SetReadDeadline(time.Time{})
    		}
    
    		// Wait for the connection to become readable again before trying to
    		// read the next request. This prevents a ReadHeaderTimeout or
    		// ReadTimeout from starting until the first bytes of the next request
    		// have been received.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top