Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for scriptId (0.25 sec)

  1. src/cmd/go/alldocs.go

    // See https://golang.org/ref/mod#version-queries for more about version queries.
    //
    // # Edit go.mod from tools or scripts
    //
    // Usage:
    //
    //	go mod edit [editing flags] [-fmt|-print|-json] [go.mod]
    //
    // Edit provides a command-line interface for editing go.mod,
    // for use primarily by tools or scripts. It reads only go.mod;
    // it does not look up information about the modules involved.
    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. cluster/gce/gci/configure-helper.sh

        mount -t tmpfs tmpfs /var/lib/kubelet/pki
    }
    
    # Override for GKE custom master setup scripts (no-op outside of GKE).
    function gke-master-start {
      if [[ -e "${KUBE_HOME}/bin/gke-internal-configure-helper.sh" ]]; then
        echo "Running GKE internal configuration script"
        . "${KUBE_HOME}/bin/gke-internal-configure-helper.sh"
        gke-internal-master-start
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	if utilfeature.DefaultFeatureGate.Enabled(features.EventedPLEG) {
    		kl.eventedPleg.Start()
    	}
    
    	kl.syncLoop(ctx, updates, kl)
    }
    
    // SyncPod is the transaction script for the sync of a single pod (setting up)
    // a pod. This method is reentrant and expected to converge a pod towards the
    // desired state of the spec. The reverse (teardown) is handled in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    			p.Error = &load.PackageError{Err: err}
    		}
    	}()
    	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")
    	}
    
    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. src/cmd/link/internal/ld/data.go

    	}
    
    	if ctxt.IsAIX() && ctxt.IsExternal() {
    		// On AIX, normally we won't generate direct calls to external symbols,
    		// except in one test, cmd/go/testdata/script/link_syso_issue33139.txt.
    		// That test doesn't make much sense, and I'm not sure it ever works.
    		// Just generate trampoline for now (which will turn a direct call to
    		// an indirect call, which at least builds).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

        PREFERRED_REGION=( "${PREFERRED_REGION[0]}" )
      fi
    }
    
    # Take the local tar files and upload them to Google Storage.  They will then be
    # downloaded by the master as part of the start up script for the master.
    #
    # Assumed vars:
    #   PROJECT
    #   SERVER_BINARY_TAR
    #   KUBE_MANIFESTS_TAR
    #   ZONE
    # Vars set:
    #   SERVER_BINARY_TAR_URL
    #   SERVER_BINARY_TAR_HASH
    #   NODE_BINARY_TAR_URL
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top