Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 89 of 89 for pats (0.04 sec)

  1. src/cmd/internal/obj/loong64/asm.go

    			p.Pc = pc
    			o = c.oplook(p)
    
    			// Prepend a PCALIGN $loopAlign to each of the loop heads
    			// that need padding, if not already done so (because this
    			// pass may execute more than once).
    			//
    			// This needs to come before any pass that look at pc,
    			// because pc will be adjusted if padding happens.
    			if p.Mark&branchLoopHead != 0 && pc&(loopAlign-1) != 0 &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    		if i > 0 {
    			prev := rootModules[i-1]
    			if prev.Path > m.Path || (prev.Path == m.Path && gover.ModCompare(m.Path, prev.Version, m.Version) > 0) {
    				panic(fmt.Sprintf("newRequirements called with unsorted roots: %v", rootModules))
    			}
    		}
    
    		if v, ok := rs.maxRootVersion[m.Path]; ok && gover.ModCompare(m.Path, v, m.Version) >= 0 {
    			continue
    		}
    		rs.maxRootVersion[m.Path] = m.Version
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Sets.java

       *
       * <p><b>Note:</b> The returned view performs slightly better when {@code set1} is the smaller of
       * the two sets. If you have reason to believe one of your sets will generally be smaller than the
       * other, pass it first. Unfortunately, since this method sets the generic type of the returned
       * set based on the type of the first set passed, this could in rare cases force you to make a
       * cast, for example:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ppc64/ssa.go

    	case ssa.OpArgIntReg, ssa.OpArgFloatReg:
    		// The assembler needs to wrap the entry safepoint/stack growth code with spill/unspill
    		// The loop only runs once.
    		for _, a := range v.Block.Func.RegArgs {
    			// Pass the spill/unspill information along to the assembler, offset by size of
    			// the saved LR slot.
    			addr := ssagen.SpillSlotAddr(a, ppc64.REGSP, base.Ctxt.Arch.FixedFrameSize)
    			s.FuncInfo().AddSpill(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. tests/integration/ambient/baseline_test.go

        to:
        - operation:
            paths: ["/denied-identity"]
            methods: ["GET"]
      - to:
        - operation:
            methods: ["GET"]
            paths: ["/allowed-wildcard*"]
      - to:
        - operation:
            methods: ["GET"]
            paths: ["/headers"]
        when:
        - key: request.headers[x-test-header]
          values: ["match"]
          notValues: ["do-not-match"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    func modkey(m module.Version) module.Version {
    	return module.Version{Path: m.Path, Version: m.Version + "/go.mod"}
    }
    
    func suggestModulePath(path string) string {
    	var m string
    
    	i := len(path)
    	for i > 0 && ('0' <= path[i-1] && path[i-1] <= '9' || path[i-1] == '.') {
    		i--
    	}
    	url := path[:i]
    	url = strings.TrimSuffix(url, "/v")
    	url = strings.TrimSuffix(url, "/")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		// because we don't expect concurrent modifications while the claim is not allocated
    		// yet. If there are any, we want to fail.
    		//
    		// If we were interrupted in the past, it might already be set and we simply continue.
    		if !slices.Contains(claim.Finalizers, resourcev1alpha2.Finalizer) {
    			claim := state.claims[index].DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    // removed if it exists.
    func (tg *testgoData) creatingTemp(path string) {
    	tg.t.Helper()
    	if filepath.IsAbs(path) && !strings.HasPrefix(path, tg.tempdir) {
    		tg.t.Fatalf("internal testsuite error: creatingTemp(%q) with absolute path not in temporary directory", path)
    	}
    	tg.must(robustio.RemoveAll(path))
    	tg.temps = append(tg.temps, path)
    }
    
    // makeTempdir makes a temporary directory for a run of testgo. If
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	if len(st.str) < add {
    		panic("internal error")
    	}
    	st.str = st.str[add:]
    	st.off += add
    }
    
    // checkChar requires that the next character in the string be c, and
    // advances past it.
    func (st *state) checkChar(c byte) {
    	if len(st.str) == 0 || st.str[0] != c {
    		panic("internal error")
    	}
    	st.advance(1)
    }
    
    // A demangleErr is an error at a specific offset in the mangled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top