Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 598 for forced (0.11 sec)

  1. operator/pkg/object/testdata/well-formed-with-space.out.yaml

    Xiaopeng Han <******@****.***> 1690313976 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 147 bytes
    - Viewed (0)
  2. manifests/addons/dashboards/lib/lib-grid.libsonnet

    local d = import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet';
    
    local panelUtil = import 'github.com/grafana/grafonnet/gen/grafonnet-v11.0.0/custom/util/panel.libsonnet';
    
    // This is forked from https://grafana.github.io/grafonnet/API/util.html#obj-grid
    // to allow automatic width to fill the grid
    {
      local root = self,
    
      local gridWidth = 24,
    
      '#makeGrid':: d.func.new(
        |||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/WellBehavedPluginTest.groovy

            ])
            if (appliesBasePlugin) {
                assert output.count("configuring :") == 2
                outputContains("configuring :help")
                // because capturing registered outputs for stale output cleanup forces configuring clean
                outputContains("configuring :clean")
            } else {
                assert output.count("configuring :") == 1
                outputContains("configuring :help")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/main/resources/checkstyle-noframes-sorted.xsl

    Sterling Greene <******@****.***> 1692279701 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 17 13:41:41 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. operator/pkg/object/testdata/well-formed-with-comments.out.yaml

    Xiaopeng Han <******@****.***> 1690313976 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 193 bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/LazyCodecTest.kt

    
    /**
     * [Lazy] values support Java serialization via a custom `writeReplace` method that forces their evaluation.
     */
    class LazyCodecTest : AbstractFunctionalTypeTest() {
    
        @Test
        fun `forces evaluation of Lazy objects`() {
            assertEagerEvaluationOf(lazy()) {
                value
            }
        }
    
        @Test
        fun `forces evaluation of dynamic Lazy fields`() {
            assertEagerEvaluationOf(BeanOf(lazy())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. src/syscall/wtf8_windows.go

    // decoded into a valid UTF-8 string. This file defines a set of functions
    // that can be used to encode and decode potentially ill-formed UTF-16 strings
    // by using the [the WTF-8 encoding](https://simonsapin.github.io/wtf-8/).
    //
    // WTF-8 is a strict superset of UTF-8, i.e. any string that is
    // well-formed in UTF-8 is also well-formed in WTF-8 and the content
    // is unchanged. Also, the conversion never fails and is lossless.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 09:26:16 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/ivy/with-dependencies.xml

            <dependency org="com.android.tools" name="sdk-common" rev="24.5.0" force="true" conf="runtime-&gt;compile(*),runtime(*),master(*)"/>
            <dependency org="com.android.tools" name="common" rev="24.5.0" force="true" conf="runtime-&gt;compile(*),runtime(*),master(*)"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultDependencyConstraint.java

            constraint.force = force;
            return constraint;
        }
    
        @Override
        public String toString() {
            return "constraint " +
                moduleIdentifier + ":" + versionConstraint +
                ", attributes=" + attributes;
        }
    
        @Override
        public void setForce(boolean force) {
            validateMutation();
            this.force = force;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:10:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultProjectDependencyConstraint.java

        }
    
        @Override
        public void setForce(boolean force) {
            validateMutation();
            this.force = force;
        }
    
        @Override
        public boolean isForce() {
            return force;
        }
    
        @Override
        public DependencyConstraint copy() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:10:09 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top