Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for nature (0.12 sec)

  1. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     *  </p>
     *  <p>
     *      Object serialization is a graph-walking process, and as such, it has a recursive nature.
     *  </p>
     *  <p></p>
     *      In order to serialize one object, {@link  org.gradle.internal.serialize.graph.WriteContext#write(java.lang.Object, kotlin.coroutines.Continuation) WriteContext.write(object)} must be invoked.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/feature/feature.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package feature
    
    // Features carries feature gate values used by various plugins.
    // This struct allows us to break the dependency of the plugins on
    // the internal k8s features pkg.
    type Features struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/release/notes.md

    > nothing that affects the build configuration has changed.
    
    #### FILL-IN-FEATURE
    > HIGHLIGHT the use case or existing problem the feature solves
    > EXPLAIN how the new release addresses that problem or use case
    > PROVIDE a screenshot or snippet illustrating the new feature, if applicable
    > LINK to the full documentation for more details
    
    ================== END TEMPLATE ==========================
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/release/notes-template.md

    > nothing that affects the build configuration has changed.
    
    #### FILL-IN-FEATURE
    > HIGHLIGHT the use case or existing problem the feature solves
    > EXPLAIN how the new release addresses that problem or use case
    > PROVIDE a screenshot or snippet illustrating the new feature, if applicable
    > LINK to the full documentation for more details
    
    ================== END TEMPLATE ==========================
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/build.gradle.kts

        api(project(":ide"))
        api(project(":stdlib-java-extensions"))
        api(project(":language-native"))
        api(project(":platform-base"))
        api(project(":platform-native"))
        api(project(":service-provider"))
    
        implementation(project(":model-core"))
        implementation(project(":testing-native"))
        implementation(project(":logging-api"))
        implementation(libs.commonsLang)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. android/guava-testlib/test/com/google/common/testing/GcFinalizationTest.java

        final SettableFuture<@Nullable Void> future = SettableFuture.create();
        Object x =
            new Object() {
              @Override
              protected void finalize() {
                future.set(null);
              }
            };
        x = null; // Hint to the JIT that x is unreachable
        GcFinalization.awaitDone(future);
        assertTrue(future.isDone());
        assertFalse(future.isCancelled());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. platforms/native/language-native/build.gradle.kts

            because("Test fixtures export the Platform class")
        }
    
        testFixturesImplementation(project(":internal-integ-testing"))
        testFixturesImplementation(testFixtures(project(":platform-native")))
    
        testImplementation(project(":native"))
        testImplementation(project(":resources"))
        testImplementation(project(":base-services-groovy"))
        testImplementation(libs.commonsIo)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFeatureFlagsIntegrationTest.groovy

        def "toggling feature flag with system property invalidates cache"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
    
            and: 'feature flag access at configuration time'
            buildFile """
                gradle.services.get($FeatureFlags.name).isEnabled(${FeaturePreviews.name}.Feature.STABLE_CONFIGURATION_CACHE)
                task check {}
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/native/testing-native/build.gradle.kts

        api(project(":language-native"))
        api(project(":model-core"))
        api(project(":native"))
        api(project(":platform-base"))
        api(project(":platform-native"))
        api(project(":process-services"))
        api(project(":test-suites-base"))
        api(project(":testing-base"))
        api(project(":testing-base-infrastructure"))
        api(project(":time"))
    
        api(libs.inject)
        api(libs.jsr305)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/registry.go

    		EnableDynamicResourceAllocation:              feature.DefaultFeatureGate.Enabled(features.DynamicResourceAllocation),
    		EnableVolumeCapacityPriority:                 feature.DefaultFeatureGate.Enabled(features.VolumeCapacityPriority),
    		EnableNodeInclusionPolicyInPodTopologySpread: feature.DefaultFeatureGate.Enabled(features.NodeInclusionPolicyInPodTopologySpread),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top