Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 113 for newD (0.08 sec)

  1. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    	for level := uint(0); newTreeSize>>(H*level) > 0; level++ {
    		oldN := oldTreeSize >> (H * level)
    		newN := newTreeSize >> (H * level)
    		if oldN == newN {
    			continue
    		}
    		for n := oldN >> H; n < newN>>H; n++ {
    			tiles = append(tiles, Tile{H: h, L: int(level), N: n, W: 1 << H})
    		}
    		n := newN >> H
    		if w := int(newN - n<<H); w > 0 {
    			tiles = append(tiles, Tile{H: h, L: int(level), N: n, W: w})
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. src/fmt/print.go

    func parsenum(s string, start, end int) (num int, isnum bool, newi int) {
    	if start >= end {
    		return 0, false, end
    	}
    	for newi = start; newi < end && '0' <= s[newi] && s[newi] <= '9'; newi++ {
    		if tooLarge(num) {
    			return 0, false, end // Overflow; crazy long number most likely.
    		}
    		num = num*10 + int(s[newi]-'0')
    		isnum = true
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  3. buildscripts/rewrite-old-new.sh

    Harshavardhana <******@****.***> 1716837466 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. src/runtime/mgcwork.go

    			}
    			// Record the new span in the busy list.
    			lock(&work.wbufSpans.lock)
    			work.wbufSpans.busy.insert(s)
    			unlock(&work.wbufSpans.lock)
    		}
    		// Slice up the span into new workbufs. Return one and
    		// put the rest on the empty list.
    		for i := uintptr(0); i+_WorkbufSize <= workbufAlloc; i += _WorkbufSize {
    			newb := (*workbuf)(unsafe.Pointer(s.base() + i))
    			newb.nobj = 0
    			lfnodeValidate(&newb.node)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/RegularImmutableMap.java

       * @param newN the expected number of entries once duplicates are removed
       * @param duplicates a map of canonical {@link Entry} objects for each duplicate key. This map
       *     will be updated by the method, setting each value to false as soon as the {@link Entry} has
       *     been included in the new entry array.
       * @return an array of {@code newN} entries where no key appears more than once.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. pilot/pkg/xds/auth.go

    		id, err := checkConnectionIdentity(con.proxy, identities)
    		if err != nil {
    			log.Warnf("Unauthorized XDS: %v with identity %v: %v", con.Peer(), identities, err)
    			return status.Newf(codes.PermissionDenied, "authorization failed: %v", err).Err()
    		}
    		con.proxy.VerifiedIdentity = id
    	}
    	return nil
    }
    
    func checkConnectionIdentity(proxy *model.Proxy, identities []string) (*spiffe.Identity, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/builder/testdata/multi-rules-new-chain-v6.golden

    Leonardo Sarra <******@****.***> 1718116194 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 117 bytes
    - Viewed (0)
  8. src/go/doc/reader.go

    	// copy existing receiver field list and set new receiver field
    	newFieldList := *f.Decl.Recv
    	newFieldList.List = []*ast.Field{&newField}
    
    	// copy existing function declaration and set new receiver field list
    	newFuncDecl := *f.Decl
    	newFuncDecl.Recv = &newFieldList
    
    	// copy existing function documentation and set new declaration
    	newF := *f
    	newF.Decl = &newFuncDecl
    	newF.Recv = recvString(typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/main/resources/footer.html

                </div>
            </section>
            <section class="site-footer__subscribe-newsletter" id="newsletter-form-container">
                <header class="newsletter-form__header"><h5>Stay <code>UP-TO-DATE</code> on new features and news</h5></header>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. src/runtime/sys_solaris_amd64.s

    	MOVL	0(AX), AX
    	MOVQ	AX, libcall_err(DI)
    
    skiperrno2:
    	RET
    
    // uint32 tstart_sysvicall(M *newm);
    TEXT runtime·tstart_sysvicall(SB),NOSPLIT,$0
    	// DI contains first arg newm
    	MOVQ	m_g0(DI), DX		// g
    
    	// Make TLS entries point at g and m.
    	get_tls(BX)
    	MOVQ	DX, g(BX)
    	MOVQ	DI, g_m(DX)
    
    	// Layout new m scheduler stack on os stack.
    	MOVQ	SP, AX
    	MOVQ	AX, (g_stack+stack_hi)(DX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top