Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 183 for nature (0.13 sec)

  1. platforms/jvm/jvm-services/build.gradle.kts

        api(libs.jsr305)
        api(libs.nativePlatform)
    
        implementation(project(":functional"))
        implementation(project(":native"))
    
        implementation(libs.guava)
        implementation(libs.asm)
        implementation(libs.xmlApis)
        implementation(libs.slf4jApi)
    
        testImplementation(project(":native"))
        testImplementation(project(":file-collections"))
        testImplementation(project(":snapshots"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/schedulinggates/scheduling_gates_test.go

    import (
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/stretchr/testify/require"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/feature"
    	st "k8s.io/kubernetes/pkg/scheduler/testing"
    	"k8s.io/kubernetes/test/utils/ktesting"
    )
    
    func TestPreEnqueue(t *testing.T) {
    	tests := []struct {
    		name string
    		pod  *v1.Pod
    		want *framework.Status
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/schedulinggates/scheduling_gates.go

    import (
    	"context"
    	"fmt"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/klog/v2"
    
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/feature"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/names"
    	"k8s.io/kubernetes/pkg/scheduler/util"
    )
    
    // Name of the plugin used in the plugin registry and configurations.
    const Name = names.SchedulingGates
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. releasenotes/notes/51506.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 51506
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 242 bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsTest.kt

            }
    
            // then:
            val runnableBuildOperation = ArgumentCaptor.forClass(RunnableBuildOperation::class.java)
            verify(buildOperationRunner).run(runnableBuildOperation.capture())
    
            // and:
            assertThat(
                runnableBuildOperation.value.description().build().progressDisplayName,
                equalTo("Storing configuration cache state")
            )
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/build.gradle.kts

        testFixturesImplementation(libs.groovyDateUtil)
    
        testImplementation(project(":process-services"))
        testImplementation(project(":file-collections"))
        testImplementation(project(":native"))
        testImplementation(project(":resources"))
        testImplementation(testFixtures(project(":core-api")))
    
        integTestImplementation(project(":platform-base"))
    
        testRuntimeOnly(project(":distributions-core")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/process-services/build.gradle.kts

    dependencies {
        api(projects.concurrent)
        api(projects.stdlibJavaExtensions)
        api(project(":base-services"))
        api(project(":messaging"))
    
        api(libs.jsr305)
    
        implementation(project(":native"))
    
        implementation(libs.slf4jApi)
        implementation(libs.guava)
        implementation(libs.nativePlatform)
    
        testImplementation(testFixtures(project(":core")))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 661 bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/build.gradle.kts

        api(project(":stdlib-java-extensions"))
        api(project(":jvm-services"))
        api(project(":logging"))
        api(project(":logging-api"))
        api(project(":messaging"))
        api(project(":model-core"))
        api(project(":native"))
        api(project(":persistent-cache"))
        api(project(":process-services"))
        api(project(":serialization"))
        api(project(":service-provider"))
        api(project(":snapshots"))
        api(project(":time"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. subprojects/core/build.gradle.kts

        api(project(":jvm-services"))
        api(project(":logging"))
        api(project(":logging-api"))
        api(project(":messaging"))
        api(project(":model-core"))
        api(project(":native"))
        api(project(":normalization-java"))
        api(project(":persistent-cache"))
        api(project(":problems-api"))
        api(project(":process-services"))
        api(project(":resources"))
        api(project(":snapshots"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-shared/build.gradle.kts

            because("We need org.gradle.internal.file.PathTraversalChecker")
        }
    
        testImplementation(project(":base-services"))
        testImplementation(project(":core-api"))
        testImplementation(project(":native"))
        testImplementation(libs.commonsCompress)
    
        integTestImplementation(project(":dependency-management"))
        integTestImplementation(project(":logging"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 719 bytes
    - Viewed (0)
Back to top