Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 677 for overlap (0.33 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pilot/pkg/credentials/kube/secrets_test.go

    		GenericScrtCaCert: "generic-mtls-split-ca",
    	}, corev1.SecretTypeTLS)
    	overlapping = makeSecret("overlap", map[string]string{
    		GenericScrtCert: "cert", GenericScrtKey: "key", GenericScrtCaCert: "main-ca",
    	}, corev1.SecretTypeTLS)
    	overlappingCa = makeSecret("overlap-cacert", map[string]string{
    		GenericScrtCaCert: "split-ca",
    	}, corev1.SecretTypeTLS)
    	tlsCert = makeSecret("tls", map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/generate.go

    	buf := append(out[:0], 2)
    	buf[0] |= y.Bytes()[{{.p}}ElementLength-1] & 1
    	buf = append(buf, x.Bytes()...)
    	return buf
    }
    
    // Add sets q = p1 + p2, and returns q. The points may overlap.
    func (q *{{.P}}Point) Add(p1, p2 *{{.P}}Point) *{{.P}}Point {
    	// 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: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. src/runtime/memmove_amd64.s

    tail:
    	// move_129through256 or smaller work whether or not the source and the
    	// destination memory regions overlap because they load all data into
    	// registers before writing it back.  move_256through2048 on the other
    	// hand can be used only when the memory regions don't overlap or the copy
    	// direction is forward.
    	//
    	// BSR+branch table make almost all memmove/memclr benchmarks worse. Not worth doing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 10 15:52:08 UTC 2022
    - 12.5K bytes
    - Viewed (0)
Back to top