Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for unreadable (0.28 sec)

  1. 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)
  2. src/cmd/link/internal/ld/data.go

    	case ctxt.IsPPC64():
    		return n * 16 // Trampolines in PPC64 are 4 instructions.
    	case ctxt.IsRISCV64():
    		return n * 8 // Trampolines in RISCV64 are 2 instructions.
    	}
    	panic("unreachable")
    }
    
    // Detect too-far jumps in function s, and add trampolines if necessary.
    // ARM, PPC64, PPC64LE and RISCV64 support trampoline insertion for internal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/go/alldocs.go

    //	    (for example, -fuzzminimizetime 100x).
    //
    //	-json
    //	    Log verbose output and test results in JSON. This presents the
    //	    same information as the -v flag in a machine-readable format.
    //
    //	-list regexp
    //	    List tests, benchmarks, fuzz tests, or examples matching the regular
    //	    expression. No tests, benchmarks, fuzz tests, or examples will be run.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top