Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for nondeterministic (0.23 sec)

  1. src/cmd/compile/internal/ssa/stackalloc.go

    	} else {
    		s.names = make([]LocalSlot, n)
    	}
    	names := s.names
    	empty := LocalSlot{}
    	for _, name := range f.Names {
    		// Note: not "range f.NamedValues" above, because
    		// that would be nondeterministic.
    		for _, v := range f.NamedValues[*name] {
    			if v.Op == OpArgIntReg || v.Op == OpArgFloatReg {
    				aux := v.Aux.(*AuxNameOffset)
    				// Never let an arg be bound to a differently named thing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. pilot/pkg/model/config.go

    func sortByCreationComparator(configs []config.Config) func(i, j int) bool {
    	return func(i, j int) bool {
    		// If creation time is the same, then behavior is nondeterministic. In this case, we can
    		// pick an arbitrary but consistent ordering based on name and namespace, which is unique.
    		// CreationTimestamp is stored in seconds, so this is not uncommon.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/testing/sub_test.go

    		for i := 0; i < 2; i++ {
    			i := i
    			go func() {
    				t.Cleanup(func() {
    					// Although the calls to Cleanup are concurrent, the functions passed
    					// to Cleanup should be called sequentially, in some nondeterministic
    					// order based on when the Cleanup calls happened to be scheduled.
    					// So these assignments to the cleanups variable should not race.
    					cleanups |= 1 << i
    				})
    				wg.Done()
    			}()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Streams.java

       * href="http://gee.cs.oswego.edu/dl/html/StreamParallelGuidance.html">efficiently splittable</a>
       * streams.
       *
       * <p>If the stream has nondeterministic order, this has equivalent semantics to {@link
       * Stream#findAny} (which you might as well use).
       *
       * @see Stream#findFirst()
       * @throws NullPointerException if the last element of the stream is null
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    			})
    		}
    		return versionOk
    	}
    
    	r.loadPackages(ctx, []string{"all"}, findPackage)
    
    	// Since we built up the candidate lists concurrently, they may be in a
    	// nondeterministic order. We want 'go get' to be fully deterministic,
    	// including in which errors it chooses to report, so sort the candidates
    	// into a deterministic-but-arbitrary order.
    	for _, q := range r.patternAllQueries {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    	slices.SortStableFunc(services, func(a, b *Service) int {
    		if r := a.CreationTime.Compare(b.CreationTime); r != 0 {
    			return r
    		}
    		// If creation time is the same, then behavior is nondeterministic. In this case, we can
    		// pick an arbitrary but consistent ordering based on name and namespace, which is unique.
    		// CreationTimestamp is stored in seconds, so this is not uncommon.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    		} else {
    			r.markRemoved()
    		}
    		delete(need, r.Mod.Path)
    	}
    
    	// Add new entries in the last block of the file for any paths that weren't
    	// already present.
    	//
    	// This step is nondeterministic, but the final result will be deterministic
    	// because we will sort the block.
    	for path, e := range need {
    		f.AddNewRequire(path, e.version, e.indirect)
    	}
    
    	f.SortBlocks()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  8. src/cmd/link/link_test.go

    		if k == -1 {
    			t.Fatalf("no newline after host link, output:\n%s", out)
    		}
    		out = out[:k]
    
    		// filter out output file name, which is passed by the go
    		// command and is nondeterministic.
    		fs := bytes.Fields(out)
    		for i, f := range fs {
    			if bytes.Equal(f, []byte(`"-o"`)) && i+1 < len(fs) {
    				fs[i+1] = []byte("a.out")
    				break
    			}
    		}
    		out = bytes.Join(fs, []byte{' '})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    If `indices` contains duplicates, the associated `updates` are accumulated
    (summed) into the output tensor.
    
    **WARNING**: For floating-point data types, the output may be nondeterministic.
    This is because the order in which the updates are applied is nondeterministic
    and when floating-point numbers are added in different orders the resulting
    numerical approximation error can be slightly different. However, the output
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    						// 2. reopen the container log
    						// 3. if #2 fails, rename rotated log file back to container log
    						//
    						// There is small but indeterministic amount of time during which log file doesn't exist (between steps #1 and #2, between #1 and #3).
    						// Hence the symlink may be deemed unhealthy during that period.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top