Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 397 for plan (0.3 sec)

  1. cmd/kubeadm/app/apis/kubeadm/types.go

    	Diff UpgradeDiffConfiguration
    
    	// Node holds a list of options that are specific to the "kubeadm upgrade node" command.
    	Node UpgradeNodeConfiguration
    
    	// Plan holds a list of options that are specific to the "kubeadm upgrade plan" command.
    	Plan UpgradePlanConfiguration
    
    	// Timeouts holds various timeouts that apply to kubeadm commands.
    	Timeouts *Timeouts
    }
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

    import org.gradle.api.internal.tasks.TaskLocalStateInternal
    import org.gradle.api.specs.Spec
    import org.gradle.internal.cc.base.serialize.IsolateOwners
    import org.gradle.execution.plan.LocalTaskNode
    import org.gradle.execution.plan.TaskNodeFactory
    import org.gradle.internal.configuration.problems.PropertyKind
    import org.gradle.internal.configuration.problems.PropertyTrace
    import org.gradle.internal.cc.base.serialize.getProject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. src/os/file.go

    //
    // On Unix systems, it returns $TMPDIR if non-empty, else /tmp.
    // On Windows, it uses GetTempPath, returning the first non-empty
    // value from %TMP%, %TEMP%, %USERPROFILE%, or the Windows directory.
    // On Plan 9, it returns /tmp.
    //
    // The directory is neither guaranteed to exist nor have accessible
    // permissions.
    func TempDir() string {
    	return tempDir()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  4. src/runtime/os_plan9.go

    	var buf [2048]byte
    	var pos int
    	fd := open(&devswap[0], _OREAD, 0)
    	if fd < 0 {
    		// There's not much we can do if /dev/swap doesn't
    		// exist. However, nothing in the memory manager uses
    		// this on Plan 9, so it also doesn't really matter.
    		return minPhysPageSize
    	}
    	for pos < len(buf) {
    		n := read(fd, unsafe.Pointer(&buf[pos]), int32(len(buf)-pos))
    		if n <= 0 {
    			break
    		}
    		pos += int(n)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/Codecs.kt

    import org.gradle.api.model.ObjectFactory
    import org.gradle.api.tasks.util.PatternSet
    import org.gradle.composite.internal.BuildTreeWorkGraphController
    import org.gradle.execution.plan.OrdinalGroupFactory
    import org.gradle.execution.plan.TaskNodeFactory
    import org.gradle.internal.Factory
    import org.gradle.internal.build.BuildStateRegistry
    import org.gradle.internal.execution.InputFingerprinter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  6. src/net/conf.go

    	switch runtime.GOOS {
    	// Historically on Windows and Plan 9 we prefer the
    	// cgo resolver (which doesn't use the cgo tool) rather than
    	// the go resolver. This is because originally these
    	// systems did not support the go resolver.
    	// Keep it this way for better compatibility.
    	// Perhaps we can revisit this some day.
    	case "windows", "plan9":
    		return true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    	return t
    }
    
    func (r *tileHashReader) ReadHashes(indexes []int64) ([]Hash, error) {
    	h := r.tr.Height()
    
    	tileOrder := make(map[Tile]int) // tileOrder[tileKey(tiles[i])] = i
    	var tiles []Tile
    
    	// Plan to fetch tiles necessary to recompute tree hash.
    	// If it matches, those tiles are authenticated.
    	stx := subTreeIndex(0, r.tree.N, nil)
    	stxTileOrder := make([]int, len(stx))
    	for i, x := range stx {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.execution.plan;
    
    import org.gradle.api.file.FileTreeElement;
    import org.gradle.api.internal.TaskInternal;
    import org.gradle.api.internal.file.FileCollectionInternal;
    import org.gradle.api.internal.file.FileCollectionStructureVisitor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/upgrade/apply.go

    // - Enforces all version skew policies
    // - Asks the user if they really want to upgrade
    // - Makes sure the control plane images are available locally on the control-plane(s)
    // - Upgrades the control plane components
    // - Applies the other resources that'd be created with kubeadm init as well, like
    //   - Uploads the newly used configuration to the cluster ConfigMap
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestExecutionListener.java

            // For tests in default method of interface,
            // we might not be able to get the implementation class directly.
            // In this case, we need to retrieve test plan to get the real implementation class.
            TestIdentifier current = testIdentifier;
            while (current != null) {
                if (isTestClassIdentifier(current)) {
                    return current;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:25 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top