Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 780 for consistency (0.18 sec)

  1. manifests/charts/gateway/README.md

    These can be set with `--set profile=<profile>`.
    For example, the `demo` profile offers a preset configuration to try out Istio in a test environment, with additional features enabled and lowered resource requirements.
    
    For consistency, the same profiles are used across each chart, even if they do not impact a given chart.
    
    Explicitly set values have highest priority, then profile settings, then chart defaults.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/size.go

    		for _, t1 := range m.Type.AllMethods() {
    			f := NewField(m.Pos, t1.Sym, t1.Type)
    			addMethod(f, false)
    
    			// Clear position after typechecking, for consistency with types2.
    			f.Pos = src.NoXPos
    		}
    
    		// Clear position after typechecking, for consistency with types2.
    		m.Pos = src.NoXPos
    	}
    
    	sort.Sort(MethodsByName(methods))
    
    	if int64(len(methods)) >= MaxWidth/int64(PtrSize) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AggregateFutureState.java

           * pass.
           *
           * 2. We would probably choose to compare exceptions using == instead of equals() (for
           * consistency with how weak references are cleared). That's a behavior change -- arguably the
           * removal of a feature.
           *
           * Fortunately, exceptions rarely contain references to expensive resources.
           */
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/internal/testenv/testenv_test.go

    			// be skipped.
    			t.Logf("HasGoBuild is false on %s", b)
    			return
    		}
    
    		t.Fatalf("HasGoBuild unexpectedly false on %s", b)
    	}
    
    	t.Logf("HasGoBuild is true; checking consistency with other functions")
    
    	hasExec := false
    	hasExecGo := false
    	t.Run("MustHaveExec", func(t *testing.T) {
    		testenv.MustHaveExec(t)
    		hasExec = true
    	})
    	t.Run("MustHaveExecPath", func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 23:12:44 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. src/encoding/pem/pem.go

    		// See RFC 1421, section 4.6.1.1
    		if hasProcType {
    			if err := writeHeader(out, procType, b.Headers[procType]); err != nil {
    				return err
    			}
    		}
    		// For consistency of output, write other headers sorted by key.
    		slices.Sort(h)
    		for _, k := range h {
    			if err := writeHeader(out, k, b.Headers[k]); err != nil {
    				return err
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. src/runtime/map_faststr.go

    	if h.flags&hashWriting != 0 {
    		fatal("concurrent map writes")
    	}
    	key := stringStructOf(&s)
    	hash := t.Hasher(noescape(unsafe.Pointer(&s)), uintptr(h.hash0))
    
    	// Set hashWriting after calling t.hasher for consistency with mapassign.
    	h.flags ^= hashWriting
    
    	if h.buckets == nil {
    		h.buckets = newobject(t.Bucket) // newarray(t.bucket, 1)
    	}
    
    again:
    	bucket := hash & bucketMask(h.B)
    	if h.growing() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdPlugin.java

            Configuration pmdAdditionalAuxDepsConfiguration = configurations.getByName(PMD_ADDITIONAL_AUX_DEPS_CONFIGURATION);
    
            // TODO: Consider checking if the resolution consistency is enabled for compile/runtime.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. src/net/interface.go

    // interface information. It is used for reducing the cost of IPv6
    // addressing scope zone resolution.
    //
    // Multiple names sharing the index are managed by first-come
    // first-served basis for consistency.
    type ipv6ZoneCache struct {
    	sync.RWMutex                // guard the following
    	lastFetched  time.Time      // last time routing information was fetched
    	toIndex      map[string]int // interface name to its index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableSet.java

        return CollectCollectors.toImmutableSet();
      }
    
      /**
       * Returns the empty immutable set. Preferred over {@link Collections#emptySet} for code
       * consistency, and because the return type conveys the immutability guarantee.
       *
       * <p><b>Performance note:</b> the instance returned is a singleton.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_builds.adoc

    So, while the physical project layout is the same, the logical results are different.
    
    [[sec:naming_recommendations]]
    == Naming recommendations
    
    As your project grows, naming and consistency get increasingly more important.
    To keep your builds maintainable, we recommend the following:
    
    1. *Keep default project names for subprojects*:
    It is possible to configure custom project names in the settings file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:33:43 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top