Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 677 for overlap (0.12 sec)

  1. src/compress/flate/dict_decoder.go

    		srcPos += len(dd.hist)
    		dstPos += copy(dd.hist[dstPos:endPos], dd.hist[srcPos:])
    		srcPos = 0
    	}
    
    	// Copy possibly overlapping section before destination position.
    	//
    	// This section can overlap if the copy length for this section is larger
    	// than the backwards distance. This is allowed by LZ77 so that repeated
    	// strings can be succinctly represented using (dist, length) pairs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6K bytes
    - Viewed (0)
  2. internal/pubsub/pubsub_test.go

    	}
    	// Mask matches maskString, should get result
    	if err := ps.Subscribe(Mask(1|2), ch2, doneCh, func(entry Maskable) bool { return true }); err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	// Does NOT overlap maskString
    	if err := ps.Subscribe(Mask(2), ch3, doneCh, func(entry Maskable) bool { return true }); err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	val := maskString("hello")
    	ps.Publish(val)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256_asm.go

    	res[2] = (t1[2] & ^t2Mask) | (t2[2] & t2Mask)
    	res[3] = (t1[3] & ^t2Mask) | (t2[3] & t2Mask)
    }
    
    // p256Sqrt sets e to a square root of x. If x is not a square, p256Sqrt returns
    // false and e is unchanged. e and x can overlap.
    func p256Sqrt(e, x *p256Element) (isSquare bool) {
    	t0, t1 := new(p256Element), new(p256Element)
    
    	// Since p = 3 mod 4, exponentiation by (p + 1) / 4 yields a square root candidate.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    					return &p.ProgHeader
    				}
    			}
    		}
    	}
    	return nil
    }
    
    // ProgramHeadersForMapping returns the program segment headers that overlap
    // the runtime mapping with file offset mapOff and memory size mapSz. We skip
    // over segments zero file size because their file offset values are unreliable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/mvs/mvs.go

    //
    // It must be safe to call methods on a Reqs from multiple goroutines simultaneously.
    // Because a Reqs may read the underlying graph from the network on demand,
    // the MVS algorithms parallelize the traversal to overlap network delays.
    type Reqs interface {
    	// Required returns the module versions explicitly required by m itself.
    	// The caller must not modify the returned list.
    	Required(m module.Version) ([]module.Version, error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/chacha20/chacha_generic.go

    	} else {
    		s.counter = counter
    		s.len = 0
    	}
    }
    
    // XORKeyStream XORs each byte in the given slice with a byte from the
    // cipher's key stream. Dst and src must overlap entirely or not at all.
    //
    // If len(dst) < len(src), XORKeyStream will panic. It is acceptable
    // to pass a dst bigger than src, and in that case, XORKeyStream will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/union.go

    				case tset.comparable:
    					check.errorf(tlist[i], InvalidUnion, "cannot use %s in union (%s embeds comparable)", t, t)
    				}
    				continue // terms with interface types are not subject to the no-overlap rule
    			}
    
    			// Report overlapping (non-disjoint) terms such as
    			// a|a, a|~a, ~a|~a, and ~a|A (where under(A) == a).
    			if j := overlappingTerm(terms[:i], t); j >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/named_certificates_test.go

    						host: "test.com",
    					},
    					explicitNames: []string{"test.com"},
    				},
    			},
    			expected: map[string]int{
    				"test.com": 1,
    			},
    		},
    		{
    			// certs with partial overlap; ips are ignored
    			certs: []namedtestCertSpec{
    				{
    					testCertSpec: testCertSpec{
    						host:  "a",
    						names: []string{"a.test.com", "test.com"},
    					},
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 8K bytes
    - Viewed (0)
  9. src/go/types/union.go

    				case tset.comparable:
    					check.errorf(tlist[i], InvalidUnion, "cannot use %s in union (%s embeds comparable)", t, t)
    				}
    				continue // terms with interface types are not subject to the no-overlap rule
    			}
    
    			// Report overlapping (non-disjoint) terms such as
    			// a|a, a|~a, ~a|~a, and ~a|A (where under(A) == a).
    			if j := overlappingTerm(terms[:i], t); j >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PublishedRichVersionConstraintsIntegrationTest.groovy

       Dependency path ':test:unspecified' --> 'org:bar:1.0' (runtime) --> 'org:foo:{strictly 15}' because of the following reason: what not""")
    
        }
    
        void "should pass if strict version ranges overlap using external dependencies"() {
            given:
            repository {
                'org:foo' {
                    '1.0'()
                    '1.1'()
                    '1.2'()
                    '1.3'()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top