Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 724 for Trailing (0.12 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    const (
    	maxNoteSize        = 1 << 20 // in bytes
    	noteTypeGNUBuildID = 3
    )
    
    // elfNote is the payload of a Note Section in an ELF file.
    type elfNote struct {
    	Name string // Contents of the "name" field, omitting the trailing zero byte.
    	Desc []byte // Contents of the "desc" field.
    	Type uint32 // Contents of the "type" field.
    }
    
    // parseNotes returns the notes from a SHT_NOTE section or PT_NOTE segment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/generate/generate.go

    		if non-empty, specifies a regular expression to select
    		directives whose full original source text (excluding
    		any trailing spaces and final newline) matches the
    		expression.
    
    	-skip=""
    		if non-empty, specifies a regular expression to suppress
    		directives whose full original source text (excluding
    		any trailing spaces and final newline) matches the
    		expression. If a directive matches both the -run and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. src/math/big/ftoa.go

    			d.round(prec)
    		}
    	}
    
    	// 3) read digits out and format
    	switch fmt {
    	case 'e', 'E':
    		return fmtE(buf, fmt, prec, d)
    	case 'f':
    		return fmtF(buf, prec, d)
    	case 'g', 'G':
    		// trim trailing fractional zeros in %e format
    		eprec := prec
    		if eprec > len(d.mant) && len(d.mant) >= d.exp {
    			eprec = len(d.mant)
    		}
    		// %e is used if the exponent from the conversion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  4. src/net/http/cookiejar/jar.go

    // golang.org/x/net/publicsuffix.
    type PublicSuffixList interface {
    	// PublicSuffix returns the public suffix of domain.
    	//
    	// TODO: specify which of the caller and callee is responsible for IP
    	// addresses, for leading and trailing dots, for case sensitivity, and
    	// for IDN/Punycode.
    	PublicSuffix(domain string) string
    
    	// String returns a description of the source of this public suffix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. src/path/filepath/path.go

    	}
    	names, err := f.Readdirnames(-1)
    	f.Close()
    	if err != nil {
    		return nil, err
    	}
    	slices.Sort(names)
    	return names, nil
    }
    
    // Base returns the last element of path.
    // Trailing path separators are removed before extracting the last element.
    // If the path is empty, Base returns ".".
    // If the path consists entirely of separators, Base returns a single separator.
    func Base(path string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top