Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,715 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. src/runtime/proc.go

    	exithook.Run(code)
    }
    
    // start forcegc helper goroutine
    func init() {
    	go forcegchelper()
    }
    
    func forcegchelper() {
    	forcegc.g = getg()
    	lockInit(&forcegc.lock, lockRankForcegc)
    	for {
    		lock(&forcegc.lock)
    		if forcegc.idle.Load() {
    			throw("forcegc: phase error")
    		}
    		forcegc.idle.Store(true)
    		goparkunlock(&forcegc.lock, waitReasonForceGCIdle, traceBlockSystemGoroutine, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/KotlinDslVersionCatalogExtensionIntegrationTest.groovy

                    implementation("org.gradle.test:lib2:1.0")
                    configurations.all {
                        resolutionStrategy {
                            force(libs.myLib)
                            force(libs.myLib.subgroup)
                        }
                    }
                }
    
                tasks.register<CheckDeps>("checkDeps") {
                    files.from(configurations.compileClasspath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/go/internal/work/exec.go

    		// changed here.
    		vetFlags = []string{"-unsafeptr=false"}
    
    		// Also turn off -unreachable checks during go test.
    		// During testing it is very common to make changes
    		// like hard-coded forced returns or panics that make
    		// code unreachable. It's unreasonable to insist on files
    		// not having any unreachable code during "go test".
    		// (buildall.bash still has -unreachable enabled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top