Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 203 for vols (0.04 sec)

  1. cmd/kube-scheduler/app/server.go

    	fs := cmd.Flags()
    	for _, f := range nfs.FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    	cols, _, _ := term.TerminalSize(cmd.OutOrStdout())
    	cliflag.SetUsageAndHelpFunc(cmd, *nfs, cols)
    
    	if err := cmd.MarkFlagFilename("config", "yaml", "yml", "json"); err != nil {
    		klog.Background().Error(err, "Failed to mark flag filename")
    	}
    
    	return cmd
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        if not values:
          return
    
        if isinstance(values, list):
          vals, tys = zip(*values)
        else:
          vals = values[0]
          tys = values[1]
    
        if isinstance(tys, list) or isinstance(tys, tuple):
          tys = [str(t) for t in tys]
          self._emit_with_loc('{} : {}'.format(', '.join(vals), ', '.join(tys)),
                              node)
        elif tys != TFRTypes.NONE:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/test_report_aggregation_plugin.adoc

    [[sec:dependency_management]]
    == Dependency management
    The Test Report Aggregation plugin adds the following dependency configurations:
    
    .Test Report Aggregation plugin - dependency configurations
    [cols="a,a", options="header"]
    |===
    | Name
    | Meaning
    
    | `testReportAggregation`
    | The configuration used to declare all project dependencies having test result data to be aggregated.
    | `aggregateTestReportResults`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/script/engine.go

    			}
    		}
    	}
    
    	return nil
    }
    
    func wrapLine(w io.Writer, line string, cols int, indent string) error {
    	line = strings.TrimLeft(line, " ")
    	for len(line) > cols {
    		bestSpace := -1
    		for i, r := range line {
    			if r == ' ' {
    				if i <= cols || bestSpace < 0 {
    					bestSpace = i
    				}
    				if i > cols {
    					break
    				}
    			}
    		}
    		if bestSpace < 0 {
    			break
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  5. pkg/volume/emptydir/empty_dir_test.go

    	if err != nil {
    		t.Fatalf("can't make a temp dir: %v", err)
    	}
    	defer os.RemoveAll(basePath)
    
    	plug := makePluginUnderTest(t, "kubernetes.io/empty-dir", basePath)
    
    	spec := &v1.Volume{
    		Name: "vol1",
    	}
    	pod := &v1.Pod{ObjectMeta: metav1.ObjectMeta{UID: types.UID("poduid")}}
    	mounter, err := plug.NewMounter(volume.NewSpecFromVolume(spec), pod, volume.VolumeOptions{})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/assignments.go

    	vars := measure(l, "variable")
    	vals := measure(r, "value")
    	rhs0 := rhs[0]
    
    	if len(rhs) == 1 {
    		if call, _ := syntax.Unparen(rhs0).(*syntax.CallExpr); call != nil {
    			check.errorf(rhs0, WrongAssignCount, "assignment mismatch: %s but %s returns %s", vars, call.Fun, vals)
    			return
    		}
    	}
    	check.errorf(rhs0, WrongAssignCount, "assignment mismatch: %s but %s", vars, vals)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/MultiLineBuildProgressAreaTest.groovy

        def setup() {
            progressArea.resizeBuildProgressTo(4);
            newLineListener.beforeNewLineWritten(_, _) >> {
                progressArea.newLineAdjustment();
            }
    
            consoleMetaData.cols >> Integer.MAX_VALUE
    
            progressArea.visible = true
        }
    
        def "scrolls the console with new lines when redrawing an empty work in progress area"() {
            when:
            progressArea.setVisible(true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/checkstyle_plugin.adoc

    [[sec:checkstyle_dependency_management]]
    == Dependency management
    
    The Checkstyle plugin adds the following dependency configurations:
    
    .Checkstyle plugin - dependency configurations
    [cols="a,a", options="header"]
    |===
    | Name
    | Meaning
    
    | `checkstyle`
    | The Checkstyle libraries to use
    |===
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 16:44:32 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    	{VNMUL_EQ_F64, []int{2, 1, 0}, "VNMUL", "NMULD"},
    	{VMLA_EQ_F32, []int{2, 1, 0}, "VMLA", "MULAF"},
    	{VMLA_EQ_F64, []int{2, 1, 0}, "VMLA", "MULAD"},
    	{VMLS_EQ_F32, []int{2, 1, 0}, "VMLS", "MULSF"},
    	{VMLS_EQ_F64, []int{2, 1, 0}, "VMLS", "MULSD"},
    	{VNMLA_EQ_F32, []int{2, 1, 0}, "VNMLA", "NMULAF"},
    	{VNMLA_EQ_F64, []int{2, 1, 0}, "VNMLA", "NMULAD"},
    	{VNMLS_EQ_F32, []int{2, 1, 0}, "VNMLS", "NMULSF"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/DefaultRedrawableLabelTest.groovy

        def ansiExecutor = new DefaultAnsiExecutor(target, colorMap, factory, consoleMetaData, writeCursor, listener)
        def label = new DefaultRedrawableLabel(Cursor.from(writeCursor))
    
        def setup() {
            consoleMetaData.cols >> Integer.MAX_VALUE
        }
    
        def "setting plain text to the label will only write the text to ansi"() {
            given:
            label.text = "text"
    
            when:
            redraw()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top