Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 516 for beginning (0.17 sec)

  1. pilot/pkg/networking/core/envoyfilter/rc_patch.go

    					}
    					return false, nil
    				},
    			)
    		} else if rp.Operation == networking.EnvoyFilter_Patch_INSERT_BEFORE {
    			// insert before without a route match is same as insert in the beginning
    			if !hasRouteMatch(rp) {
    				virtualHost.Routes = append([]*route.Route{proto.Clone(rp.Value).(*route.Route)}, virtualHost.Routes...)
    				continue
    			}
    			virtualHost.Routes, applied = insertBeforeFunc(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/PropertiesUtils.java

         *
         * <p>There are a number of differences compared to {@link java.util.Properties#store(java.io.Writer, String)}:</p>
         * <ul>
         *     <li>no timestamp comment is generated at the beginning of the file</li>
         *     <li>the lines in the resulting files are separated by a pre-set separator instead of the system default line separator</li>
         *     <li>the properties are sorted alphabetically</li>
         * </ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 14:17:21 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemSpec.java

        /**
         * Declares that this problem is in a file at a certain global position with a given length.
         *
         * @param path the file location
         * @param offset the zero-indexed global offset from the beginning of the file
         * @param length the length of the text
         * @return this
         * @since 8.6
         */
        ProblemSpec offsetInFileLocation(String path, int offset, int length);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Strings.java

       * @param minLength the minimum length the resulting string must have. Can be zero or negative, in
       *     which case the input string is always returned.
       * @param padChar the character to insert at the beginning of the result until the minimum length
       *     is reached
       * @return the padded string
       */
      public static String padStart(String string, int minLength, char padChar) {
        checkNotNull(string); // eager for GWT.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 17 20:47:03 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/base/goflags.go

    )
    
    var goflags []string // cached $GOFLAGS list; can be -x or --x form
    
    // GOFLAGS returns the flags from $GOFLAGS.
    // The list can be assumed to contain one string per flag,
    // with each string either beginning with -name or --name.
    func GOFLAGS() []string {
    	InitGOFLAGS()
    	return goflags
    }
    
    // InitGOFLAGS initializes the goflags list from $GOFLAGS.
    // If goflags is already initialized, it does nothing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. src/go/parser/resolver_test.go

    // file, and use labels must refer to an existing declaration label. It's OK
    // for a comment to denote both the declaration and use of a label (e.g.
    // '=@foo'). Leading and trailing whitespace is ignored. Any comment not
    // beginning with '=' or '@' is ignored.
    func TestResolution(t *testing.T) {
    	dir := filepath.Join("testdata", "resolution")
    	fis, err := os.ReadDir(dir)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	for _, fi := range fis {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 17:46:07 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  7. src/runtime/mranges_test.go

    		a.Add(dRange)
    		expectedRanges = append(expectedRanges, dRange)
    		validateAddrRanges(t, &a, expectedRanges...)
    	}
    
    	// Push a bunch of independent ranges to the beginning to try and force growth.
    	var bottomRanges []AddrRange
    	for i := uintptr(0); i < 63; i++ {
    		dRange := MakeAddrRange(8+i*8, 8+i*8+4)
    		a.Add(dRange)
    		bottomRanges = append(bottomRanges, dRange)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 23 23:01:52 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  8. cmd/dummy-data-generator_test.go

    // bytes from the infinite stream consisting of repeated
    // concatenations of `alphabets`.
    //
    // The skipOffset (generally = 0) can be used to skip a given number
    // of bytes from the beginning of the infinite stream. This is useful
    // to compare such streams of bytes that may be split up, because:
    //
    // Given the function:
    //
    //	f := func(r io.Reader) string {
    //	          b, _ := io.ReadAll(r)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/PrecompiledScriptPlugin.kt

            // are the shebang line and file annotations.
            //
            // If neither of them is there, then we know that the package statement is
            // right at the beginning of the script, if present at all, so we can do a
            // very simple and cheap search for it.
            //
            // Otherwise, we must do a bit more involved searching.
    
            skipWhiteSpaceAndComments()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/asmb.go

    	if is64Bit {
    		buf.Write32b(uint32(entry &^ 0x80000000))
    	} else {
    		buf.Write32b(uint32(entry))
    	}
    	buf.Write32b(uint32(spSize))
    	buf.Write32b(uint32(lcSize))
    	// amd64 includes the entry at the beginning of the symbol table.
    	if is64Bit {
    		buf.Write64b(uint64(entry))
    	}
    }
    
    // asmbPlan9 assembles a plan 9 binary.
    func asmbPlan9(ctxt *Link) {
    	if !*FlagS {
    		*FlagS = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 09:22:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top