Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,880 for current$ (0.1 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeBinaryFixture.groovy

            BinaryInfo info
            if (OperatingSystem.current().isWindows() && !DumpbinBinaryInfo.findVisualStudio()) {
                info = new FileArchOnlyBinaryInfo(file)
            } else {
                info = getBinaryInfo()
            }
            return info.getArch()
        }
    
        BinaryInfo getBinaryInfo() {
            file.assertExists()
            if (OperatingSystem.current().isMacOsX()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/MethodsRemovedInInternalSuperClassRule.groovy

            CtClass current = c
            while (current != null) {
                if (containsMethod(current, method)) {
                    classesContainingMethod.add(current)
                } else {
                    break
                }
                current = current.getSuperclass()
            }
    
            for (int i = classesContainingMethod.size() - 1; i > 0; --i) {
                current = classesContainingMethod.get(i)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/testFixtures/groovy/org/gradle/api/reporting/components/NativeComponentReportOutputFormatter.groovy

                .replace("platform 'current'", "platform '${NativePlatformsTestFixture.defaultPlatformName}'")
                .replaceAll('(?m)(build/libs/.+/)lib(\\w+).dylib$') { it[1] + OperatingSystem.current().getSharedLibraryName(it[2]) }
                .replaceAll('(?m)(build/libs/.+/)lib(\\w+).a$') { it[1] + OperatingSystem.current().getStaticLibraryName(it[2]) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 25 01:52:21 UTC 2015
    - 1.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    	Modified map[string]interface{}
    	// Current is the current object (live config in the server)
    	Current map[string]interface{}
    	// TwoWay is the expected two-way merge patch diff between original and modified
    	TwoWay map[string]interface{}
    	// ThreeWay is the expected three-way merge patch
    	ThreeWay map[string]interface{}
    	// Result is the expected object after applying the three-way patch on current object.
    	Result map[string]interface{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  5. pkg/apis/autoscaling/types.go

    }
    
    // ObjectMetricStatus indicates the current value of a metric describing a
    // kubernetes object (for example, hits-per-second on an Ingress object).
    type ObjectMetricStatus struct {
    	Metric  MetricIdentifier
    	Current MetricValueStatus
    
    	DescribedObject CrossVersionObjectReference
    }
    
    // PodsMetricStatus indicates the current value of a metric describing each pod in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiExecution.groovy

        private static final GradleVersionSpec GRADLE_VERSION_SPEC = new GradleVersionSpec()
    
        static {
            // If we are testing a non-current tooling API version, we will have loaded the class using its classloader and thus
            // GradleVersion.current() will report that version. In order to set up the testing infrastructure, we need to
            // know the version of Gradle being built
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappingTables.kt

      val i = mappings.iterator()
      var current = i.next()
    
      while (true) {
        if (current.spansSections) {
          result +=
            Mapping(
              current.sourceCodePoint0,
              current.section + 0x7f,
              current.type,
              current.mappedTo,
            )
          current =
            Mapping(
              current.section + 0x80,
              current.sourceCodePoint1,
              current.type,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2.HorizontalPodAutoscaler.json

                      ]
                    }
                  ]
                }
              },
              "current": {
                "value": "0",
                "averageValue": "0",
                "averageUtilization": 3
              }
            },
            "resource": {
              "name": "nameValue",
              "current": {
                "value": "0",
                "averageValue": "0",
                "averageUtilization": 3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta2.HorizontalPodAutoscaler.json

                      ]
                    }
                  ]
                }
              },
              "current": {
                "value": "0",
                "averageValue": "0",
                "averageUtilization": 3
              }
            },
            "resource": {
              "name": "nameValue",
              "current": {
                "value": "0",
                "averageValue": "0",
                "averageUtilization": 3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/TrivialChangeDetectorTest.groovy

            0 * _
        }
    
        def "too many elements are delegated (#current.size() current vs #previous.size() previous items)"() {
            when:
            detector.visitChangesSince(previous, current, "test", visitor)
            then:
            1 * delegate.visitChangesSince(previous, current, "test", visitor)
            0 * _
    
            where:
            current          | previous
            [one: 1]         | [one: 1, two: 2]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top