Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 516 for beginning (0.14 sec)

  1. src/slices/iter_test.go

    			}
    
    			if len(chunks) == 0 {
    				return
    			}
    
    			// Verify that appending to the end of the first chunk does not
    			// clobber the beginning of the next chunk.
    			s := Clone(tc.s)
    			chunks[0] = append(chunks[0], -1)
    			if !Equal(s, tc.s) {
    				t.Errorf("slice was clobbered: %v, want %v", s, tc.s)
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java

            checkVersionParsing("RELEASE", 0, 0, 0, 0, "RELEASE");
            checkVersionParsing("2.0-1", 2, 0, 0, 1, null);
    
            // 0 at the beginning of a number has a special handling
            checkVersionParsing("02", 0, 0, 0, 0, "02");
            checkVersionParsing("0.09", 0, 0, 0, 0, "0.09");
            checkVersionParsing("0.2.09", 0, 0, 0, 0, "0.2.09");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. src/cmd/internal/buildid/rewrite.go

    		// found an id ending in the final tiny fringe. That's OK.
    		if start < len(buf)-tiny {
    			h.Write(buf[start : len(buf)-tiny])
    			start = len(buf) - tiny
    		}
    
    		// Slide ending tiny-sized fringe to beginning of buffer.
    		copy(buf[0:], buf[bufSize:])
    		start -= bufSize
    		offset += int64(bufSize)
    	}
    	h.Sum(hash[:0])
    	return matches, hash, nil
    }
    
    func Rewrite(w io.WriterAt, pos []int64, id string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/cache/hash.go

    type Hash struct {
    	h    hash.Hash
    	name string        // for debugging
    	buf  *bytes.Buffer // for verify
    }
    
    // hashSalt is a salt string added to the beginning of every hash
    // created by NewHash. Using the Go version makes sure that different
    // versions of the go command (or even different Git commits during
    // work on the development branch) do not address the same cache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 14 16:18:34 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/README

    single-quoted block of text, a repeated single quote indicates a literal single
    quote, as in:
    
        'Don''t communicate by sharing memory.'
    
    A line beginning with # is a comment and conventionally explains what is being
    done or tested at the start of a new section of the script.
    
    Commands are executed one at a time, and errors are checked for each command;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. src/regexp/syntax/parse.go

    	ClassNL                         // allow character classes like [^a-z] and [[:space:]] to match newline
    	DotNL                           // allow . to match newline
    	OneLine                         // treat ^ and $ as only matching at beginning and end of text
    	NonGreedy                       // make repetition operators default to non-greedy
    	PerlX                           // allow Perl extensions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/cache/snapshot.go

    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    // Snapshot is a snapshot of cache NodeInfo and NodeTree order. The scheduler takes a
    // snapshot at the beginning of each scheduling cycle and uses it for its operations in that cycle.
    type Snapshot struct {
    	// nodeInfoMap a map of node name to a snapshot of its NodeInfo.
    	nodeInfoMap map[string]*framework.NodeInfo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. src/os/user/lookup_unix.go

    				break
    			}
    		}
    
    		// There's no spec for /etc/passwd or /etc/group, but we try to follow
    		// the same rules as the glibc parser, which allows comments and blank
    		// space at the beginning of a line.
    		wholeLine = bytes.TrimSpace(wholeLine)
    		if len(wholeLine) == 0 || wholeLine[0] == '#' {
    			continue
    		}
    		v, err = fn(wholeLine)
    		if v != nil || err != nil {
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    					}
    					return false, nil
    				},
    			)
    		} else if lp.Operation == networking.EnvoyFilter_Patch_INSERT_BEFORE {
    			// insert before without a filter match is same as insert in the beginning
    			if !hasListenerFilterMatch(lp) {
    				lis.ListenerFilters = append([]*listener.ListenerFilter{proto.Clone(lp.Value).(*listener.ListenerFilter)}, lis.ListenerFilters...)
    				continue
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  10. test/nosplit.go

    	"strconv"
    	"strings"
    )
    
    const debug = false
    
    var tests = `
    # These are test cases for the linker analysis that detects chains of
    # nosplit functions that would cause a stack overflow.
    #
    # Lines beginning with # are comments.
    #
    # Each test case describes a sequence of functions, one per line.
    # Each function definition is the function name, then the frame size,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top