Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,880 for current$ (0.2 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/FailureUtils.kt

            }
        }
    
        fun collectFrom(current: LanguageTreeElement) {
            when (current) {
                is ErroneousStatement -> addExpanded(current.failingResult)
                is Block -> current.content.forEach(::collectFrom)
                is Assignment -> {
                    collectFrom(current.lhs)
                    collectFrom(current.rhs)
                }
    
                is FunctionCall -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 12:28:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java

         * @param message the message to append
         * @return the current builder
         */
        @Nonnull
        default MessageBuilder trace(Object message) {
            return style(".trace:-bold,f:magenta", message);
        }
    
        /**
         * Append message content in debug style.
         * By default, bold cyan
         *
         * @param message the message to append
         * @return the current builder
         */
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 08 10:37:09 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/AbstractProjectAccessorsSourceGenerator.java

            writeLn();
        }
    
        protected static String rootProjectName(ProjectDescriptor descriptor) {
            ProjectDescriptor current = descriptor;
            while (current.getParent() != null) {
                current = current.getParent();
            }
            return current.getName();
        }
    
        protected void writeProjectAccessor(String name, ProjectDescriptor descriptor) throws IOException {
            writeLn("    /**");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/AbstractFingerprintCompareStrategy.java

                return previous.getNormalizedPath().equals(current.getNormalizedPath());
            }
    
            @Override
            public boolean hasSameContent(FileSystemLocationFingerprint previous, FileSystemLocationFingerprint current) {
                return previous.getNormalizedContentHash().equals(current.getNormalizedContentHash());
            }
        };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/crossVersionTest/groovy/org/gradle/integtests/wrapper/WrapperOldJavaCrossVersionIntegrationTest.groovy

            when:
            GradleExecuter executor = prepareWrapperExecuter(previous, current).withJavaHome(jdk.javaHome)
    
            then:
            def result = executor.usingExecutable('gradlew').withArgument('help').runWithFailure()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. pkg/registry/flowcontrol/ensurer/prioritylevelconfiguration_test.go

    			indexer := toolscache.NewIndexer(toolscache.MetaNamespaceKeyFunc, toolscache.Indexers{})
    			if test.current != nil {
    				client.Create(context.TODO(), test.current, metav1.CreateOptions{})
    				indexer.Add(test.current)
    			}
    
    			boot := newPLConfiguration(test.bootstrapName).Object()
    			boots := []*flowcontrolv1.PriorityLevelConfiguration{boot}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/cpp/tests/nativeComponentReport.out

            flavor: flavor 'default'
            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/hello/shared/libhello.dylib
        Static library 'hello:staticLibrary'
            build using task: :helloStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_tidy_diff.txt

    ! exists go.mod
    ! exists go.sum
    ! stdout 'diff current/go.mod tidy/go.mod'
    ! stdout 'diff current/go.sum tidy/go.sum'
    stderr 'go.mod file not found'
    
    # Missing go.mod and existing go.sum should fail and not display diff.
    cp go.sum.orig go.sum
    ! exists go.mod
    exists go.sum
    ! go mod tidy -diff
    ! exists go.mod
    ! stdout 'diff current/go.mod tidy/go.mod'
    ! stdout 'diff current/go.sum tidy/go.sum'
    stderr 'go.mod file not found'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2beta1/types_swagger_doc_generated.go

    var map_PodsMetricStatus = map[string]string{
    	"":                    "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).",
    	"metricName":          "metricName is the name of the metric in question",
    	"currentAverageValue": "currentAverageValue is the current value of the average of the metric across all relevant pods (as a quantity)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  10. pkg/collateral/metrics/otel_test.go

    	AttributesTotal = monitoring.NewGauge(
    		"mixer/config/attributes_total",
    		"The number of known attributes in the current config.",
    	)
    
    	// HandlersTotal is a measure of the number of known handlers.
    	HandlersTotal = monitoring.NewSum(
    		"mixer/config/handler_configs_total",
    		"The number of known handlers in the current config.",
    	)
    
    	// InstancesTotal is a measure of the number of known instances.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top