Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,085 for Trailing (0.42 sec)

  1. pkg/collateral/control.go

    __istio_type() {
    	# -t is not supported by zsh
    	if [ "$1" == "-t" ]; then
    		shift
    		# fake Bash 4 to disable "complete -o nospace". Instead
    		# "compopt +-o nospace" is used in the code to toggle trailing
    		# spaces. We don't support that, but leave trailing spaces on
    		# all the time
    		if [ "$1" = "__istio_compopt" ]; then
    			echo builtin
    			return 0
    		fi
    	fi
    	type "$@"
    }
    __istio_compgen() {
    	local completions w
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. src/go/ast/ast.go

    }
    
    // Text returns the text of the comment.
    // Comment markers (//, /*, and */), the first space of a line comment, and
    // leading and trailing empty lines are removed.
    // Comment directives like "//line" and "//go:noinline" are also removed.
    // Multiple empty lines are reduced to one, and trailing space on lines is trimmed.
    // Unless the result is empty, it is newline-terminated.
    func (g *CommentGroup) Text() string {
    	if g == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  3. cmd/object-api-utils.go

    }
    
    // pathsJoinPrefix - like pathJoin retains trailing SlashSeparator
    // for all elements, prepends them with 'prefix' respectively.
    func pathsJoinPrefix(prefix string, elem ...string) (paths []string) {
    	paths = make([]string, len(elem))
    	for i, e := range elem {
    		paths[i] = pathJoin(prefix, e)
    	}
    	return paths
    }
    
    // pathJoin - like path.Join() but retains trailing SlashSeparator of the last element
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. integration-tests/gradle/gradlew

    # Attempt to set APP_HOME
    
    # Resolve links: $0 may be a link
    app_path=$0
    
    # Need this for daisy-chained symlinks.
    while
        APP_HOME=${app_path%"${app_path##*/}"}  # leaves a trailing /; empty if no leading path
        [ -h "$app_path" ]
    do
        ls=$( ls -ld "$app_path" )
        link=${ls#*' -> '}
        case $link in             #(
          /*)   app_path=$link ;; #(
          *)    app_path=$APP_HOME$link ;;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. cni/pkg/repair/repair_test.go

    			},
    			makeDetectPod(
    				"TerminationMessageMatchTrue",
    				"Termination Message",
    				0),
    			true,
    		},
    		{
    			"Check termination message match true for trailing and leading space",
    			config.RepairConfig{
    				SidecarAnnotation:  "sidecar.istio.io/status",
    				InitContainerName:  constants.ValidationContainerName,
    				InitTerminationMsg: "            Termination Message",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_test.cc

      EXPECT_TRUE(statistics.has_value());
      EXPECT_EQ(statistics.value().histogram_statistics().lower_bound(), 0.f);
      EXPECT_EQ(statistics.value().histogram_statistics().bin_width(), 2.f);
      // Trailing zeros should be removed.
      EXPECT_THAT(statistics.value().histogram_statistics().hist_freq(),
                  ElementsAre(1, 0, 3, 5, 7, 6, 5));
    }
    
    TEST(HistogramStatisticsCollectorTest, AggregateSameBatchSize) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 16 04:33:52 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. src/cmd/cover/cover_test.go

    	out, err := c.CombinedOutput()
    	if err == nil {
    		return fmt.Sprintf("unexpected pass for %+v", c.Args)
    	}
    	return string(out)
    }
    
    // Test instrumentation of package that ends before an expected
    // trailing newline following package clause. Issue #58370.
    func testMissingTrailingNewlineIssue58370(t *testing.T, toolexecArg string) {
    	testenv.MustHaveGoBuild(t)
    	dir := tempDir(t)
    
    	t.Parallel()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/emitter.go

    	//   "1":{"name":"main.main:30"},
    	//   "10":{"name":"pkg.NewSession:173","parent":9},
    	//
    	// The parent is omitted if 0. The trailing comma is omitted from the
    	// last entry, but we don't need that much precision.
    	const (
    		baseSize = len(`"`) + len(`":{"name":"`) + len(`"},`)
    
    		// Don't count the trailing quote on the name, as that is
    		// counted in baseSize.
    		parentBaseSize = len(`,"parent":`)
    	)
    
    	size := baseSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  9. src/fmt/doc.go

    For floating-point values, width sets the minimum width of the field and
    precision sets the number of places after the decimal, if appropriate,
    except that for %g/%G precision sets the maximum number of significant
    digits (trailing zeros are removed). For example, given 12.345 the format
    %6.3f prints 12.345 while %.3g prints 12.3. The default precision for %e, %f
    and %#g is 6; for %g it is the smallest number of digits necessary to identify
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. src/net/parse.go

    // lowerASCII returns the ASCII lowercase version of b.
    func lowerASCII(b byte) byte {
    	if 'A' <= b && b <= 'Z' {
    		return b + ('a' - 'A')
    	}
    	return b
    }
    
    // trimSpace returns x without any leading or trailing ASCII whitespace.
    func trimSpace(x string) string {
    	for len(x) > 0 && isSpace(x[0]) {
    		x = x[1:]
    	}
    	for len(x) > 0 && isSpace(x[len(x)-1]) {
    		x = x[:len(x)-1]
    	}
    	return x
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top