Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,177 for runGet (0.16 sec)

  1. src/cmd/go/internal/modget/get.go

    	return err
    }
    
    func (b *dFlag) String() string { return "" }
    
    func init() {
    	work.AddBuildFlags(CmdGet, work.OmitModFlag)
    	CmdGet.Run = runGet // break init loop
    	CmdGet.Flag.Var(&getD, "d", "")
    	CmdGet.Flag.Var(&getU, "u", "")
    }
    
    func runGet(ctx context.Context, cmd *base.Command, args []string) {
    	switch getU.version {
    	case "", "upgrade", "patch":
    		// ok
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/runlit.cfg.py

    # limitations under the License.
    """Lit runner configuration."""
    
    import os
    import platform
    import sys
    import lit.formats
    from lit.llvm import llvm_config
    from lit.llvm.subst import ToolSubst
    
    # Lint for undefined variables is disabled as config is not defined inside this
    # file, instead config is injected by way of evaluating runlit.cfg.py from
    # runlit.site.cfg.py which in turn is evaluated by lit.py. The structure is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 18:52:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    	// path of the phase in the workflow managed by the Runner.
    	generatedName string
    
    	// use is the phase usage string that will be printed in the workflow help.
    	// It corresponds to the relative path of the phase in the workflow managed by the Runner.
    	use string
    }
    
    // NewRunner return a new runner for composable kubeadm workflows.
    func NewRunner() *Runner {
    	return &Runner{
    		Phases: []Phase{},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/runlit.site.cfg.py

    # 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.
    """Lit runner site configuration."""
    
    import os
    import platform
    import lit.llvm
    
    # Handle the test srcdir for platforms. On windows, things are weird with bazel.
    if platform.system() == 'Windows':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 21:33:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/cover.go

    func BuildActionCoverMetaFile(runAct *Action) (string, error) {
    	p := runAct.Package
    	for i := range runAct.Deps {
    		pred := runAct.Deps[i]
    		if pred.Mode != "build" || pred.Package == nil {
    			continue
    		}
    		if pred.Package.ImportPath == p.ImportPath {
    			metaFile := pred.Objdir + covcmd.MetaFileForPackage(p.ImportPath)
    			f, err := os.Open(metaFile)
    			if err != nil {
    				return "", err
    			}
    			defer f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/glob_lit_test.bzl

    # Test definitions for Lit, the LLVM test runner.
    #
    # This is reusing the LLVM Lit test runner in the interim until the new build
    # rules are upstreamed.
    # TODO(b/136126535): remove this custom rule.
    """Lit runner globbing test
    """
    
    load("@bazel_skylib//lib:paths.bzl", "paths")
    
    # Default values used by the test runner.
    _default_test_file_exts = ["mlir", ".pbtxt", ".td"]
    _default_driver = "@llvm-project//mlir:run_lit.sh"
    _default_size = "small"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 19:29:19 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BNDSmokeTest.groovy

    }
    
    """
    
            file(pathToBndrun) << """
    -runfw: org.eclipse.osgi
    -runee: JavaSE-17
    
    -runbundles: bnd-smoke-test
    
    -runproperties:
    
    -runtrace: true
    """
    
            file(pathToBndbnd) << """
    -sources: true
    Bundle-Activator: com.example.Activator
    """
    
            expect:
            def result = runner(":run")
                    .forwardOutput()
                    .build()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    File); private void MaxCore(java.io.File); public org.junit.runner.Result run(Class); public org.junit.runner.Result run(org.junit.runner.Request); public org.junit.runner.Result run(org.junit.runner.Request, org.junit.runner.JUnitCore); public org.junit.runner.Request sortRequest(org.junit.runner.Request); private org.junit.runner.Request constructLeafRequest(java.util.List); private org.junit.runner.Runner buildRunner(org.junit.runner.Description); private Class getMalformedTestClas(org.junit....
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  9. src/regexp/onepass.go

    			if syntax.Flags(inst.Arg)&syntax.FoldCase != 0 {
    				r0 := inst.Rune[0]
    				runes = append(runes, r0, r0)
    				for r1 := unicode.SimpleFold(r0); r1 != r0; r1 = unicode.SimpleFold(r1) {
    					runes = append(runes, r1, r1)
    				}
    				slices.Sort(runes)
    			} else {
    				runes = append(runes, inst.Rune[0], inst.Rune[0])
    			}
    			onePassRunes[pc] = runes
    			inst.Next = make([]uint32, len(onePassRunes[pc])/2+1)
    			for i := range inst.Next {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/expressionInfoProvider/FirIdeNormalAnalysisSourceModuleIsUsedAsExpressionTestGenerated.java

      }
    
      @Test
      @TestMetadata("annotatedExpr.kt")
      public void testAnnotatedExpr() {
        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/annotatedExpr.kt");
      }
    
      @Test
      @TestMetadata("annotatedExprAnnotation.kt")
      public void testAnnotatedExprAnnotation() {
        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/annotatedExprAnnotation.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 08 19:07:43 UTC 2024
    - 76.4K bytes
    - Viewed (0)
Back to top