Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,637 for current$ (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizerTest.groovy

            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: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java

        while (true) {
          long current = longs.get(i);
          double currentVal = longBitsToDouble(current);
          double nextVal = updaterFunction.applyAsDouble(currentVal);
          long next = doubleToRawLongBits(nextVal);
          if (longs.compareAndSet(i, current, next)) {
            return nextVal;
          }
        }
      }
    
      /**
       * Returns the String representation of the current values of array.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/topologymanager/numa_info_test.go

    		t.Run(tc.description, func(t *testing.T) {
    
    			result := tc.numaInfo.Closest(tc.candidate, tc.current)
    			if result != tc.current && result != tc.candidate {
    				t.Errorf("Expected result to be either 'current' or 'candidate' hint")
    			}
    			if tc.expected == "current" && result != tc.current {
    				t.Errorf("Expected result to be %v, got %v", tc.current, result)
    			}
    			if tc.expected == "candidate" && result != tc.candidate {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:14 UTC 2022
    - 11.6K bytes
    - Viewed (0)
Back to top