Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,099 for plans (0.76 sec)

  1. src/cmd/compile/internal/ssa/debug_test.go

    type tstring struct {
    	o string
    	e string
    }
    
    func (t tstring) String() string {
    	return t.o + t.e
    }
    
    type pos struct {
    	line uint32
    	file uint8 // Artifact of plans to implement differencing instead of calling out to diff.
    }
    
    type nextHist struct {
    	f2i   map[string]uint8
    	fs    []string
    	ps    []pos
    	texts []string
    	vars  [][]string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/upgrade/plan.go

    	// Generate and print the upgrade plan
    	plan := genUpgradePlan(availUpgrades, configVersionStates)
    	return printer.PrintObj(plan, os.Stdout)
    }
    
    // genUpgradePlan generates upgrade plan from available upgrades and component config version states
    func genUpgradePlan(availUpgrades []upgrade.Upgrade, configVersions []outputapiv1alpha3.ComponentConfigVersionState) *outputapiv1alpha3.UpgradePlan {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    While migrating a project from Maven, don't forget about source sets.
    These often provide a more elegant solution for handling integration tests or generated sources than Maven can provide, so you should factor them into your migration plans.
    
    
    === Ant goals
    
    Many Maven builds rely on the AntRun plugin to customize the build without the overhead of implementing a custom Maven plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// `FileSystem` is never called (see
      /// https://github.com/tensorflow/tensorflow/issues/27535). In turn, this
      /// function will never be called. There are plans to refactor registration
      /// and fix this.
      ///
      /// TODO(b/139060984): After all filesystems are converted, revisit note.
      ///
      /// This operation must be provided. See "REQUIRED OPERATIONS" above.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    		return op + " " + strings.Join(args, ",")
    	case BCA, BCL, BCLA, BCLRL, BCTAR, BCTARL:
    		return op + " " + strings.Join(args, ",")
    	}
    }
    
    // plan9Arg formats arg (which is the argIndex's arg in inst) according to Plan 9 rules.
    //
    // NOTE: because Plan9Syntax is the only caller of this func, and it receives a copy
    // of inst, it's ok to modify inst.Args here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ==== Backward compatibility
    
    Our approach is to only do backwards-breaking Kotlin upgrades on a major Gradle release. We will always clearly document which Kotlin version we ship and announce upgrade plans before a major release.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/cmd/go/go_test.go

    func homeEnvName() string {
    	switch runtime.GOOS {
    	case "windows":
    		return "USERPROFILE"
    	case "plan9":
    		return "home"
    	default:
    		return "HOME"
    	}
    }
    
    func tempEnvName() string {
    	switch runtime.GOOS {
    	case "windows":
    		return "TMP"
    	case "plan9":
    		return "TMPDIR" // actually plan 9 doesn't have one at all but this is fine
    	default:
    		return "TMPDIR"
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  8. pkg/test/framework/resource/config/plan.go

    )
    
    // Plan for configuration that can be applied or deleted as an atomic unit.
    // A Plan is initially created by a Factory, but then can continually be
    // appended to before finally calling Apply or Delete.
    type Plan interface {
    	// Factory for appending to this Config.
    	Factory
    
    	// Copy returns a deep copy of this Plan.
    	Copy() Plan
    
    	// Apply this config.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 27 17:09:00 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.plan9-386.txt

    golang.org/toolchain@v0.0.1-go1.999testmod.plan9-386
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.plan9-386"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/rc
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 294 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.plan9-amd64.txt

    golang.org/toolchain@v0.0.1-go1.999testmod.plan9-amd64
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.plan9-amd64"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/rc
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 298 bytes
    - Viewed (0)
Back to top