Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 729 for overlap (0.21 sec)

  1. src/internal/types/testdata/examples/constraints.go

    	_ interface{int|any}
    	_ interface{int|~string|union}
    	_ interface{int|~string|interface{int}}
    	_ interface{union|int}   // interfaces (here: union) are ignored when checking for overlap
    	_ interface{union|union} // ditto
    
    	// For now we do not permit interfaces with methods in unions.
    	_ interface{~ /* ERROR "invalid use of ~" */ any}
    	_ interface{int|interface /* ERRORx `cannot use .* in union` */ { m() }}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. src/runtime/memclr_arm.s

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    #include "textflag.h"
    
    #define TO	R8
    #define TOE	R11
    #define N	R12
    #define TMP	R12				/* N and TMP don't overlap */
    
    // See memclrNoHeapPointers Go doc for important implementation constraints.
    
    // func memclrNoHeapPointers(ptr unsafe.Pointer, n uintptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 19 00:41:03 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AnsiConsole.java

                flushable.flush();
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
        private void redraw() {
            // Calculate how many rows of the status area overlap with the text area
            int numberOfOverlappedRows = buildStatusArea.getWritePosition().row - buildOutputArea.getWritePosition().row;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. src/slices/slices.go

    func rotateLeft[E any](s []E, r int) {
    	Reverse(s[:r])
    	Reverse(s[r:])
    	Reverse(s)
    }
    func rotateRight[E any](s []E, r int) {
    	rotateLeft(s, len(s)-r)
    }
    
    // overlaps reports whether the memory ranges a[0:len(a)] and b[0:len(b)] overlap.
    func overlaps[E any](a, b []E) bool {
    	if len(a) == 0 || len(b) == 0 {
    		return false
    	}
    	elemSize := unsafe.Sizeof(a[0])
    	if elemSize == 0 {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. src/cmd/trace/pprof.go

    	for _, i := range intervals {
    		if o := i.overlap(sample); o > 0 {
    			overlapping += o
    		}
    	}
    	return overlapping
    }
    
    // interval represents a time interval in the trace.
    type interval struct {
    	start, end trace.Time
    }
    
    func (i interval) duration() time.Duration {
    	return i.end.Sub(i.start)
    }
    
    func (i1 interval) overlap(i2 interval) time.Duration {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p384.go

    	buf := append(out[:0], 2)
    	buf[0] |= y.Bytes()[p384ElementLength-1] & 1
    	buf = append(buf, x.Bytes()...)
    	return buf
    }
    
    // Add sets q = p1 + p2, and returns q. The points may overlap.
    func (q *P384Point) Add(p1, p2 *P384Point) *P384Point {
    	// Complete addition formula for a = -3 from "Complete addition formulas for
    	// prime order elliptic curves" (https://eprint.iacr.org/2015/1060), §A.2.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 18K bytes
    - Viewed (0)
  7. src/runtime/testdata/testprogcgo/stackswitch.c

    		perror("swapcontext");
    		exit(1);
    	}
    
    	free(stack1);
    
    	return NULL;
    }
    
    static void *stackSwitchThread2(void *arg) {
    	// New thread. Use stack bounds that partially overlap the previous
    	// bounds. needm should refresh the stack bounds anyway since this is a
    	// new thread.
    
    	// N.B. since we used a custom stack with makecontext,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 15:17:33 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/integTest/groovy/org/gradle/internal/operations/BuildOperationExecutorIntegrationTest.groovy

        }
    
        // This is the current behavior:
        // We need to make sure that the build operation ids of nested builds started by a GradleBuild task do not overlap.
        // Since we currently have no specific scope for "one build and the builds it started via GradleBuild tasks", we use the global scope.
        @Issue("https://github.com/gradle/gradle/issues/2622")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 12:12:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/mergepatch/util.go

    	if err != nil {
    		return "", fmt.Errorf("yaml marshal failed:%v\n%v\n", err, dump.Pretty(v))
    	}
    
    	return string(y), nil
    }
    
    // HasConflicts returns true if the left and right JSON interface objects overlap with
    // different values in any key. All keys are required to be strings. Since patches of the
    // same Type have congruent keys, this is valid for multiple patch types. This method
    // supports JSON merge patch semantics.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. src/runtime/memmove_plan9_386.s

    /*
     * check and set for backwards
     */
    	CMPL	SI, DI
    	JLS	back
    
    /*
     * forward copy loop
     */
    forward:
    	MOVL	BX, CX
    	SHRL	$2, CX
    	ANDL	$3, BX
    
    	REP;	MOVSL
    	JMP	tail
    /*
     * check overlap
     */
    back:
    	MOVL	SI, CX
    	ADDL	BX, CX
    	CMPL	CX, DI
    	JLS	forward
    /*
     * whole thing backwards has
     * adjusted addresses
     */
    
    	ADDL	BX, DI
    	ADDL	BX, SI
    	STD
    
    /*
     * copy
     */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 3.1K bytes
    - Viewed (0)
Back to top