Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 822 for run1 (0.08 sec)

  1. src/testing/fuzz.go

    		}
    
    		f.corpus = append(f.corpus, c...)
    	}
    
    	// run calls fn on a given input, as a subtest with its own T.
    	// run is analogous to T.Run. The test filtering and cleanup works similarly.
    	// fn is called in its own goroutine.
    	run := func(captureOut io.Writer, e corpusEntry) (ok bool) {
    		if e.Values == nil {
    			// The corpusEntry must have non-nil Values in order to run the
    			// test. If Values is nil, it is a bug in our code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. .github/workflows/build.yml

          - name: Build okcurl
            run: ./gradlew okcurl:nativeImage
    
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v3
    
          - name: Build ConsoleLauncher
            run: ./gradlew -PgraalBuild=true native-image-tests:nativeImage
    
          - name: Run Checks
            run: ./native-image-tests/build/graal/ConsoleLauncher
    
      testandroid:
        runs-on: ubuntu-latest
        timeout-minutes: 30
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. cmd/kube-apiserver/app/server.go

    		fs.AddFlagSet(f)
    	}
    
    	cols, _, _ := term.TerminalSize(cmd.OutOrStdout())
    	cliflag.SetUsageAndHelpFunc(cmd, namedFlagSets, cols)
    
    	return cmd
    }
    
    // Run runs the specified APIServer.  This should never exit.
    func Run(ctx context.Context, opts options.CompletedOptions) error {
    	// To help debugging, immediately log version
    	klog.Infof("Version: %+v", version.Get())
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/RealLifeAndroidBuildPerformanceTest.groovy

        ])
        def "run #tasks"() {
            given:
            AndroidTestProject testProject = androidTestProject
            testProject.configure(runner)
            runner.tasksToRun = tasks.split(' ')
            runner.args.add('-Dorg.gradle.parallel=true')
            runner.warmUpRuns = warmUpRuns
            runner.runs = runs
            if (IncrementalAndroidTestProject.NOW_IN_ANDROID == testProject) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/certs.go

    	eventually re-distribute the renewed certificate in case the file is used elsewhere.
    `)
    
    	allLongDesc = cmdutil.LongDesc(`
        Renew all known certificates necessary to run the control plane. Renewals are run unconditionally, regardless
        of expiration date. Renewals can also be run individually for more control.
    `)
    
    	expirationLongDesc = cmdutil.LongDesc(`
    	Checks expiration for the certificates in the local PKI managed by kubeadm.
    `)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. src/runtime/mpallocbits.go

    			continue
    		}
    
    		// Strategy: shrink all runs of zeros by max. If any runs of zero
    		// remain, then we've identified a larger maximum zero run.
    		p := most    // number of zeros we still need to shrink by.
    		k := uint(1) // current minimum length of runs of ones in x.
    		for {
    			// Shrink all runs of zeros by p places (except the top zeros).
    			for p > 0 {
    				if p <= k {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. istioctl/pkg/dashboard/dashboard.go

    		Short: "Open Prometheus web UI",
    		Long:  `Open Istio's Prometheus dashboard`,
    		Example: `  istioctl dashboard prometheus
    
      # with short syntax
      istioctl dash prometheus
      istioctl d prometheus`,
    		RunE: func(cmd *cobra.Command, args []string) error {
    			client, err := ctx.CLIClientWithRevision(opts.Revision)
    			if err != nil {
    				return fmt.Errorf("failed to create k8s client: %v", err)
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

        ],
    ) -> bool:
      """Runs calibration and adds calibration statistics to exported model.
    
      Args:
        saved_model_path: Path to the SavedModel to run calibration.
        signature_keys: List of signature keys corresponding to SignatureDefs to run
          calibration on.
        tags: A set of tags that identify the MetaGraphDef.
        force_graph_mode_calibration: If True, runs the calibration in graph mode.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    func firstCharsToLower(s string) string {
    	// Use a closure here to remember state.
    	// Hackish but effective. Depends on Map scanning in order and calling
    	// the closure once per rune.
    	prev := '.'
    	return strings.Map(
    		func(r rune) rune {
    			if prev == '.' {
    				prev = r
    				return unicode.ToLower(r)
    			}
    			prev = r
    			return r
    		},
    		s)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

                task log { }
            """
    
            def runs = GradleContextualExecuter.isConfigCache() ? 2 : 1
            runs.times {
                barrier.expectConcurrent("child-build-started", "1-started", "2-started")
                barrier.expectConcurrent("child-build-finished", "1-finished", "2-finished")
            }
    
            when:
            runs.times {
                executer.withArgument("--parallel")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top