Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 529 for plans (0.08 sec)

  1. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      // they are placed right after the `LegalizeTFXlaCallModuleToStablehloPass`
      // because the quantization patterns should be identified before any
      // optimizations kick in.
      //
      // There are future plans to make the framework to directly produce StableHLO
      // uniform quantized ops and deprecate `ComposeUniformQuantizedTypePass`. If
      // no quantization patterns are found, it is a no-op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core/src/test/groovy/org/gradle/internal/build/DefaultBuildLifecycleControllerTest.groovy

            controller.prepareToScheduleTasks()
            def plan1 = controller.newWorkGraph()
            controller.populateWorkGraph(plan1) { b -> b.addRequestedTasks() }
            controller.finalizeWorkGraph(plan1)
            def executionResult = controller.executeTasks(plan1)
            executionResult.failures.empty
    
            controller.prepareToScheduleTasks()
            def plan2 = controller.newWorkGraph()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. pkg/test/framework/components/cluster/cluster.go

    	// IsPrimary returns true if this is a primary cluster, containing an instance
    	// of the Istio control plane.
    	IsPrimary() bool
    
    	// IsConfig returns true if this is a config cluster, used as the source of
    	// Istio config for one or more control planes.
    	IsConfig() bool
    
    	// IsRemote returns true if this is a remote cluster, which uses a control plane
    	// residing in another cluster.
    	IsRemote() bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/types.go

    	// KubernetesVersion is the target version of the control plane.
    	KubernetesVersion string
    
    	// CIKubernetesVersion is the target CI version of the control plane.
    	// Useful for running kubeadm with CI Kubernetes version.
    	// +k8s:conversion-gen=false
    	CIKubernetesVersion string
    
    	// ControlPlaneEndpoint sets a stable IP address or DNS name for the control plane; it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istio/kube.go

    		return nil, err
    	}
    
    	// Populate the revisions for the control plane.
    	var revisions resource.RevVerMap
    	if !cfg.DeployIstio {
    		// Using a pre-installed control plane. Get the revisions from the
    		// command-line.
    		revisions = ctx.Settings().Revisions
    	} else if len(iop.Spec.Revision) > 0 {
    		// Use revisions from the default control plane operator.
    		revisions = resource.RevVerMap{
    			iop.Spec.Revision: "",
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top