Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for NORMALIZED (0.26 sec)

  1. platforms/jvm/language-jvm/src/main/java/org/gradle/api/internal/tasks/compile/daemon/AbstractDaemonCompiler.java

            merged.setMemoryMaximumSize(mergeHeapSize(left.getMemoryMaximumSize(), right.getMemoryMaximumSize()));
            Set<String> mergedJvmArgs = normalized(left.getJvmArgs());
            mergedJvmArgs.addAll(normalized(right.getJvmArgs()));
            merged.setJvmArgs(Lists.newArrayList(mergedJvmArgs));
            return merged;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/math/big/bits_test.go

    //
    // The order of slice elements is not significant. Negative elements may be
    // used to form fractions. A Bits value is normalized if each b[i] occurs at
    // most once. For instance Bits{0, 0, 1} is not normalized but represents the
    // same floating-point number as Bits{2}, which is normalized. The zero (nil)
    // value of Bits is a ready to use Bits value and represents the value 0.
    type Bits []int
    
    func (x Bits) add(y Bits) Bits {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

        }
    
    fun configureDistribution(name: String, distributionSpec: CopySpec, buildDistLifecycleTask: TaskProvider<Task>, normalized: Boolean = false) {
        val disDir = if (normalized) "normalized-distributions" else "distributions"
        val zipRootFolder = if (normalized) {
            moduleIdentity.version.map { "gradle-${it.baseVersion.version}" }
        } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/typeparams/coretype.go

    // "normalized" form of the embeddings. A structural restriction is normalized
    // if it is a single union containing no interface terms, and is minimal in the
    // sense that removing any term changes the set of types satisfying the
    // constraint. It is left as a proof for the reader that, modulo sorting, there
    // is exactly one such normalized form.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/lib/lib-grid.libsonnet

            rowPanels
          );
    
        local uncollapsed = panelUtil.resolveCollapsedFlagOnRows(panelsBeforeRowsWithX + rowPanelsWithX);
    
        local normalized = panelUtil.normalizeY(uncollapsed);
    
        std.map(function(p) p + { gridPos+: { y+: startY } }, normalized),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

                StringBuilder normalized = new StringBuilder();
                for (int i = 0; i < path.segmentCount(); i++) {
                    if (!StringUtils.isBlank(path.segment(i))) {
                        if (isAbsolute || normalized.length() > 0) {
                            normalized.append(":");
                        }
                        normalized.append(path.segment(i));
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/clientinput/DaemonClientInputForwarder.java

                            maybeClosed();
                            break;
                        } else {
                            String normalized = normalizer.normalize(input);
                            if (normalized != null) {
                                dispatch.dispatch(new UserResponse(normalized));
                                break;
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/NonNormalizedIdentityImmutableTransformExecution.java

            // capturing the normalized path and the snapshot of the raw contents, so we are using these to determine the identity.
            // We do this because external artifact transforms typically need to identify themselves redundantly many times during a build.
            // Once we migrate to all-scheduled transforms we should consider if we can avoid having this optimization and use only normalized inputs.
            //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. src/math/big/int_test.go

    			t.Errorf("#%d Quo: %v is not normalized", i, *q1)
    		}
    		if !isNormalized(r1) {
    			t.Errorf("#%d Rem: %v is not normalized", i, *r1)
    		}
    		if q1.Cmp(q) != 0 || r1.Cmp(r) != 0 {
    			t.Errorf("#%d QuoRem: got (%s, %s), want (%s, %s)", i, q1, r1, q, r)
    		}
    
    		q2, r2 := new(Int).QuoRem(x, y, new(Int))
    		if !isNormalized(q2) {
    			t.Errorf("#%d Quo: %v is not normalized", i, *q2)
    		}
    		if !isNormalized(r2) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  10. pkg/test/framework/resource/flags.go

    	if s.SkipTProxy {
    		s.SkipWorkloadClasses = append(s.SkipWorkloadClasses, "tproxy")
    	}
    	// Allow passing a single CSV flag as well
    	normalized := make(ArrayFlags, 0)
    	for _, sk := range s.SkipWorkloadClasses {
    		normalized = append(normalized, strings.Split(sk, ",")...)
    	}
    	s.SkipWorkloadClasses = normalized
    
    	if s.Image.Hub == "" {
    		s.Image.Hub = env.HUB.ValueOrDefault("gcr.io/istio-testing")
    	}
    
    	if s.Image.Tag == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top