Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of about 10,000 for lost (0.44 sec)

  1. guava/src/com/google/common/collect/ComparisonChain.java

       * comparable</a>. If you pass objects that are not mutually comparable, this method may throw an
       * exception. (The reason for this decision is lost to time, but the reason <i>might</i> be that
       * we wanted to support legacy classes that implement the raw type {@code Comparable} (instead of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 21 17:28:11 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  2. src/runtime/profbuf.go

    	clear(data[2+i : 2+b.hdrsize])
    	for i, pc := range stk {
    		data[2+b.hdrsize+uintptr(i)] = uint64(pc)
    	}
    
    	for {
    		// Commit write.
    		// Racing with reader setting flag bits in b.w, to avoid lost wakeups.
    		old := b.w.load()
    		new := old.addCountsAndClearFlags(skip+2+len(stk)+int(b.hdrsize), 1)
    		if !b.w.cas(old, new) {
    			continue
    		}
    		// If there was a reader, wake it up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. src/log/syslog/syslog_test.go

    	}
    
    	// count all the messages arriving
    	count := make(chan int, 1)
    	go func() {
    		ct := 0
    		for range done {
    			ct++
    			// we are looking for 500 out of 1000 events
    			// here because lots of log messages are lost
    			// in buffers (kernel and/or bufio)
    			if ct > N*M/2 {
    				break
    			}
    		}
    		count <- ct
    	}()
    
    	var wg sync.WaitGroup
    	wg.Add(N)
    	for i := 0; i < N; i++ {
    		go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 12 16:09:24 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/deadcode.go

    				v.resetArgs()
    				if v.Pos.IsStmt() == src.PosIsStmt && reachable[b.ID] {
    					pendingLines.set(v.Pos, int32(i)) // TODO could be more than one pos for a line
    				}
    			}
    		}
    	}
    
    	// Find new homes for lost lines -- require earliest in data flow with same line that is also in same block
    	for i := len(order) - 1; i >= 0; i-- {
    		w := order[i]
    		if j := pendingLines.get(w.Pos); j > -1 && f.Blocks[j] == w.Block {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/IvyComponentParser.java

         */
        private static class ParsedVariantDependencyResult {
            private final String name;
            private final List<IvyDependency> dependencies;
            private final VariantWarningCollector warnings;
    
            public ParsedVariantDependencyResult(
                String name,
                List<IvyDependency> dependencies,
                VariantWarningCollector warnings
            ) {
                this.name = name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. src/internal/godebug/godebug.go

    	if v, ok := cache.Load(name); ok {
    		return v.(*setting)
    	}
    	s := new(setting)
    	s.info = godebugs.Lookup(name)
    	s.value.Store(&empty)
    	if v, loaded := cache.LoadOrStore(name, s); loaded {
    		// Lost race: someone else created it. Use theirs.
    		return v.(*setting)
    	}
    
    	return s
    }
    
    // setUpdate is provided by package runtime.
    // It calls update(def, env), where def is the default GODEBUG setting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/nilcheck.go

    					if v.Pos.IsStmt() != src.PosNotStmt && !isPoorStatementOp(v.Op) && pendingLines.contains(v.Pos) {
    						v.Pos = v.Pos.WithIsStmt()
    						pendingLines.remove(v.Pos)
    					}
    				}
    			}
    			// This reduces the lost statement count in "go" by 5 (out of 500 total).
    			for j := range b.Values { // is this an ordering problem?
    				v := b.Values[j]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/binder_test.go

    			test:            testSyncClaim,
    		},
    
    		// [Unit test set 3] Syncing bound claim
    		{
    			// syncClaim with claim  bound and its claim.Spec.VolumeName is
    			// removed. Check it's marked as Lost.
    			name:            "3-1 - bound claim with missing VolumeName",
    			initialVolumes:  novolumes,
    			expectedVolumes: novolumes,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  9. src/runtime/runtime.go

    	// If we are panicking, don't return the old FD to runtime/debug for
    	// closing. writeErrData may have already read the old FD from crashFD
    	// before the swap and closing it would cause the write to be lost [1].
    	// The old FD will never be closed, but we are about to crash anyway.
    	//
    	// On the writeErrData thread, panicking.Add(1) happens-before
    	// crashFD.Load() [2].
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. cmd/format-erasure_test.go

    	for i := range newFormats {
    		for j := range newFormats[i] {
    			if newFormats[i][j] == nil {
    				continue
    			}
    			if newFormats[i][j].ID != quorumFormat.ID {
    				t.Fatal("Deployment id in the new format is lost")
    			}
    		}
    	}
    }
    
    func BenchmarkInitStorageDisks256(b *testing.B) {
    	benchmarkInitStorageDisksN(b, 256)
    }
    
    func BenchmarkInitStorageDisks1024(b *testing.B) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 08:25:46 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top