Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 93 for consistency (0.43 sec)

  1. staging/src/k8s.io/api/apps/v1beta2/types.go

    // DEPRECATED - This group version of StatefulSet is deprecated by apps/v1/StatefulSet. See the release notes for
    // more information.
    // StatefulSet represents a set of pods with consistent identities.
    // Identities are defined as:
    //   - Network: A single stable DNS and hostname.
    //   - Storage: As many VolumeClaims as requested.
    //
    // The StatefulSet guarantees that a given network identity will always
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  2. src/go/build/build.go

    // It uses the GOARCH, GOOS, GOROOT, and GOPATH environment variables
    // if set, or else the compiled code's GOARCH, GOOS, and GOROOT.
    var Default Context = defaultContext()
    
    // Keep consistent with cmd/go/internal/cfg.defaultGOPATH.
    func defaultGOPATH() string {
    	env := "HOME"
    	if runtime.GOOS == "windows" {
    		env = "USERPROFILE"
    	} else if runtime.GOOS == "plan9" {
    		env = "home"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    }
    
    func expectProxyTargets(t testing.TB, sd *Controller, expected []model.ServiceTarget, ip string) {
    	t.Helper()
    	// The system is eventually consistent, so add some retries
    	retry.UntilSuccessOrFail(t, func() error {
    		instances := sd.GetProxyServiceTargets(&model.Proxy{IPAddresses: []string{ip}, Metadata: &model.NodeMetadata{}})
    		sortServiceTargets(instances)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    				// package with the same path as the main module, found in a module
    				// with a prefix of the main module's path”.
    				//
    				// However, neither of those behaviors would be consistent with the
    				// plain meaning of the query. To try to reduce confusion, reject the
    				// query explicitly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. src/sync/atomic/atomic_test.go

    				if (my != i && my != i-1) || (his != i && his != i-1) {
    					t.Errorf("invalid values: %d/%d (%d)", my, his, i)
    					break
    				}
    				if my != i && his != i {
    					t.Errorf("store/load are not sequentially consistent: %d/%d (%d)", my, his, i)
    					break
    				}
    				StoreInt32(&ack[me][(i-1)%3], -1)
    			}
    			c <- true
    		}(p)
    	}
    	<-c
    	<-c
    }
    
    func TestStoreLoadSeqCst64(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    		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.
    		an := a.Attributes.Name + "." + a.Attributes.Namespace
    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/asm/internal/asm/testdata/ppc64.s

    	XOR $1234567, R5                // 6ca5001268a5d687
    	XOR $1234567, R5, R3            // 6ca300126863d687
    	XORIS $15, R3, R4               // 6c64000f
    	XOR   $983040, R3, R4           // 6c64000f
    
    	// TODO: cleanup inconsistency of printing CMPx opcodes with explicit CR arguments.
    	CMP R3, R4                      // 7c232000
    	CMP R3, R0                      // 7c230000
    	CMP R3, R0, CR1                 // CMP R3,CR1,R0   // 7ca30000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    		gcController.heapReleased.add(-int64(scav))
    	}
    	// Update stats.
    	gcController.heapFree.add(-int64(nbytes - scav))
    	if typ == spanAllocHeap {
    		gcController.heapInUse.add(int64(nbytes))
    	}
    	// Update consistent stats.
    	stats := memstats.heapStats.acquire()
    	atomic.Xaddint64(&stats.committed, int64(scav))
    	atomic.Xaddint64(&stats.released, -int64(scav))
    	switch typ {
    	case spanAllocHeap:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      /**
       * Returns the comparator that orders the keys, which is {@link Ordering#natural()} when the
       * natural ordering of the keys is used. Note that its behavior is not consistent with {@link
       * TreeMap#comparator()}, which returns {@code null} to indicate natural ordering.
       */
      @Override
      public Comparator<? super K> comparator() {
        return keySet().comparator();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Iterators.java

       *
       * <p>Note: If the given iterator is already a {@code PeekingIterator}, it <i>might</i> be
       * returned to the caller, although this is neither guaranteed to occur nor required to be
       * consistent. For example, this method <i>might</i> choose to pass through recognized
       * implementations of {@code PeekingIterator} when the behavior of the implementation is known to
       * meet the contract guaranteed by this method.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top