Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for printsp (0.63 sec)

  1. src/cmd/go/alldocs.go

    //		symbols, methods, and fields.
    //
    // # Print Go environment information
    //
    // Usage:
    //
    //	go env [-json] [-changed] [-u] [-w] [var ...]
    //
    // Env prints Go environment information.
    //
    // By default env prints information as a shell script
    // (on Windows, a batch file). If one or more variable
    // names is given as arguments, env prints the value of
    // each named variable on its own line.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    	tests := []struct {
    		name    string
    		printer func() ([]metav1.TableRow, error)
    	}{
    		{
    			name: "Pod",
    			printer: func() ([]metav1.TableRow, error) {
    				return printPod(&api.Pod{}, printers.GenerateOptions{})
    			},
    		},
    		{
    			name: "PodTemplate",
    			printer: func() ([]metav1.TableRow, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

      local os="$2"
      local file="$3"
    
      rm -f "${file}"
      {
        print-common-kubelet-config
        if [[ "${master}" == "true" ]]; then
          print-master-kubelet-config
        else
          print-common-node-kubelet-config
          if [[ "${os}" == "linux" ]]; then
            print-linux-node-kubelet-config
          elif [[ "${os}" == "windows" ]]; then
            print-windows-node-kubelet-config
          else
            echo "Unknown OS ${os}" >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers.go

    			lastTimestamp,
    			obj.Type,
    			obj.Reason,
    			target,
    			strings.TrimSpace(obj.Message),
    		)
    	}
    
    	return []metav1.TableRow{row}, nil
    }
    
    // Sorts and prints the EventList in a human-friendly format.
    func printEventList(list *api.EventList, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	rows := make([]metav1.TableRow, 0, len(list.Items))
    	for i := range list.Items {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        op.
      }];
      let constructor = "TFTPU::CreateColocateTPUCopyWithDynamicShapePass()";
    }
    
    def PrintPass : Pass<"tf-print", "ModuleOp"> {
      let summary = "Prints the current module.";
      let description = [{
        This prints the current module (by default, to stderr). The module is
        otherwise piped through without changes.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    		}
    	}()
    	if cfg.BuildN {
    		// In -n mode, print a banner between packages.
    		// The banner is five lines so that when changes to
    		// different sections of the bootstrap script have to
    		// be merged, the banners give patch something
    		// to use to find its context.
    		sh.Print("\n#\n# " + p.ImportPath + "\n#\n\n")
    	}
    
    	if cfg.BuildV {
    		sh.Print(p.ImportPath + "\n")
    	}
    
    	if p.Error != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    				}
    			}
    			n++
    		}
    	}
    
    	ldr.SetSymValue(s, 0)
    	for sub := s; sub != 0; sub = ldr.SubSym(sub) {
    		ldr.SetSymValue(sub, ldr.SymValue(sub)+int64(va))
    		if ctxt.Debugvlog > 2 {
    			fmt.Println("assign text address:", ldr.SymName(sub), ldr.SymValue(sub))
    		}
    	}
    
    	va += funcsize
    
    	return sect, n, va
    }
    
    func resetAddress(ctxt *Link, s loader.Sym) {
    	ldr := ctxt.loader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top