Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for strref (0.06 sec)

  1. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/isolation/IsolatedActionSerializerTest.kt

            val property: Property<String>
        }
    
        @Test
        fun `can serialize Java lambda with Gradle model`() {
            val stored = newInstance<Dsl>().apply {
                property.set("42")
            }
            val loaded = valueCarriedBy(roundtripOf(isolatedActionLambdaWith(stored)))
            assertThat(
                loaded.property.get(),
                equalTo("42")
            )
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/BuildTreeConfigurationCache.kt

    import org.gradle.util.Path
    
    
    @ServiceScope(Scope.BuildTree::class)
    interface BuildTreeConfigurationCache {
        /**
         * Determines whether the cache entry can be loaded or needs to be stored or updated.
         */
        fun initializeCacheEntry()
    
        /**
         * Loads the scheduled tasks from cache, if available, or else runs the given function to schedule the tasks and then
         * writes the result to the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     *  it will return the proper {@link org.gradle.internal.serialize.graph.EncodingProvider} (or null, otherwise).
     *  </p><p>
     *  Deserializing is simpler: the bindings-backed composite codec reads a tag from the stored state, and then picks the binding that is associated with that tag (and consequently, that binding's decoder).
     *  </p>
     *
     *  <h3>WriteContext</h3>
     *  <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. src/runtime/coro.go

    			// coordinating with the garbage collector about the state change.
    			casgstatus(gp, _Grunning, _Gwaiting)
    		}
    
    		// Clear gp.m.
    		setMNoWB(&gp.m, nil)
    	}
    
    	// The goroutine stored in c is the one to run next.
    	// Swap it with ourselves.
    	var gnext *g
    	for {
    		// Note: this is a racy load, but it will eventually
    		// get the right value, and if it gets the wrong value,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top