Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,776 for seem (0.04 sec)

  1. src/crypto/ed25519/ed25519_test.go

    			t.Errorf("recreating key pair gave different public key on line %d: %x vs %x", lineNo, pubKey, pubKey2)
    		}
    
    		if seed := priv2.Seed(); !bytes.Equal(priv[:32], seed) {
    			t.Errorf("recreating key pair gave different seed on line %d: %x vs %x", lineNo, priv[:32], seed)
    		}
    	}
    
    	if err := scanner.Err(); err != nil {
    		t.Fatalf("error reading test data: %s", err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/hash/Hashing.java

        hashFunctions[0] = Murmur3_128HashFunction.GOOD_FAST_HASH_128;
        int seed = GOOD_FAST_HASH_SEED;
        for (int i = 1; i < hashFunctionsNeeded; i++) {
          seed += 1500450271; // a prime; shouldn't matter
          hashFunctions[i] = murmur3_128(seed);
        }
        return new ConcatenatedHashFunction(hashFunctions);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. src/internal/poll/fd_windows.go

    		}
    	}
    }
    
    // Seek wraps syscall.Seek.
    func (fd *FD) Seek(offset int64, whence int) (int64, error) {
    	if fd.kind == kindPipe {
    		return 0, syscall.ESPIPE
    	}
    	if err := fd.incref(); err != nil {
    		return 0, err
    	}
    	defer fd.decref()
    
    	fd.l.Lock()
    	defer fd.l.Unlock()
    
    	return syscall.Seek(fd.Sysfd, offset, whence)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. src/debug/dwarf/entry.go

    func (r *Reader) ByteOrder() binary.ByteOrder {
    	return r.b.order
    }
    
    // Seek positions the [Reader] at offset off in the encoded entry stream.
    // Offset 0 can be used to denote the first entry.
    func (r *Reader) Seek(off Offset) {
    	d := r.d
    	r.err = nil
    	r.lastChildren = false
    	if off == 0 {
    		if len(d.unit) == 0 {
    			return
    		}
    		u := &d.unit[0]
    		r.unit = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/fsys/fsys_test.go

    	}
    
    	for i := 0; i < len(seen) && i < len(wantSeen); i++ {
    		if seen[i] != wantSeen[i] {
    			t.Errorf("path #%v seen walking tree: want %q, got %q", i, seen[i], wantSeen[i])
    		}
    	}
    }
    
    func TestWalkSkipAll(t *testing.T) {
    	initOverlay(t, `
    {
    	"Replace": {
    		"dir/subdir1/foo1": "dummy.txt",
    		"dir/subdir1/foo2": "dummy.txt",
    		"dir/subdir1/foo3": "dummy.txt",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  6. src/internal/xcoff/file.go

    	if _, err := s.sr.Seek(int64(stoff), io.SeekStart); err != nil {
    		return nil, err
    	}
    	st := make([]byte, stlen)
    	if _, err := io.ReadFull(s.sr, st); err != nil {
    		return nil, err
    	}
    
    	// Read imported libraries
    	libs, err := f.readImportIDs(s)
    	if err != nil {
    		return nil, err
    	}
    
    	// Read loader symbol table
    	if _, err := s.sr.Seek(int64(symoff), io.SeekStart); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. src/io/io_test.go

    			brOff, brErr := br.Seek(offset, whence)
    			srOff, srErr := sr.Seek(offset, whence)
    			if (brErr != nil) != (srErr != nil) || brOff != srOff {
    				t.Errorf("For whence %d, offset %d: bytes.Reader.Seek = (%v, %v) != SectionReader.Seek = (%v, %v)",
    					whence, offset, brOff, brErr, srErr, srOff)
    			}
    		}
    	}
    
    	// And verify we can just seek past the end and get an EOF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:04:41 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. pkg/proxy/metrics/metrics.go

    			Help:           "Pending proxy rules Endpoint changes",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	// EndpointChangesTotal is the number of endpoint changes that the proxy
    	// has seen.
    	EndpointChangesTotal = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Subsystem:      kubeProxySubsystem,
    			Name:           "sync_proxy_rules_endpoint_changes_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

                        println "Action hash: ${contentHash}"
                        if (!seen.add(contentHash)) {
                           throw new AssertionError("Expected a unique hash, but found duplicate: ${o.contentHash} in $seen")
                        }
                    }
    
                    Set<String> seen = []
    
                    assertScriptOrigin(this, seen)
    
                    task one {
                        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loadpe/ldpe.go

    			continue
    		}
    
    		if sect.Characteristics&(pe.IMAGE_SCN_CNT_CODE|pe.IMAGE_SCN_CNT_INITIALIZED_DATA|pe.IMAGE_SCN_CNT_UNINITIALIZED_DATA) == 0 {
    			// This has been seen for .idata sections, which we
    			// want to ignore. See issues 5106 and 5273.
    			continue
    		}
    
    		name := fmt.Sprintf("%s(%s)", pkg, sect.Name)
    		s := state.l.LookupOrCreateCgoExport(name, localSymVersion)
    		bld := l.MakeSymbolUpdater(s)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
Back to top