Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,089 for Trailing (0.33 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. src/cmd/go/internal/modload/search.go

    		_, span := trace.StartSpan(ctx, "walkPkgs "+root)
    		defer span.Done()
    
    		// If the root itself is a symlink to a directory,
    		// we want to follow it (see https://go.dev/issue/50807).
    		// Add a trailing separator to force that to happen.
    		root = str.WithFilePathSeparator(filepath.Clean(root))
    		err := fsys.Walk(root, func(pkgDir string, fi fs.FileInfo, err error) error {
    			if err != nil {
    				m.AddError(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/math/big/float.go

    // the slice may (but doesn't have to) be shorter if the mantissa contains
    // trailing 0 bits. x.mant is normalized if the msb of x.mant == 1 (i.e.,
    // the msb is shifted all the way "to the left"). Thus, if the mantissa has
    // trailing 0 bits or x.prec is not a multiple of the Word size _W,
    // x.mant[0] has trailing zero bits. The msb of the mantissa corresponds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  10. src/internal/poll/fd_wasip1.go

    		size, ok := direntReclen(b)
    		if !ok {
    			break
    		}
    		if size > uint64(len(b)) {
    			break
    		}
    		fd.Dircookie = syscall.Dircookie(next)
    		b = b[size:]
    	}
    
    	// Trim a potentially incomplete trailing entry; this is necessary because
    	// the code in src/os/dir_unix.go does not deal well with partial values in
    	// calls to direntReclen, etc... and ends up causing an early EOF before all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:14:02 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top