Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 386 for Dedicated (0.25 sec)

  1. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    			node: nodeWithTaints("nodeA", []v1.Taint{{Key: "dedicated", Value: "user1", Effect: "NoSchedule"}}),
    			wantStatus: framework.NewStatus(framework.UnschedulableAndUnresolvable,
    				"node(s) had untolerated taint {dedicated: user1}"),
    		},
    		{
    			name: "A pod which can be scheduled on a dedicated node assigned to user1 with effect NoSchedule",
    			pod:  podWithTolerations("pod1", []v1.Toleration{{Key: "dedicated", Value: "user1", Effect: "NoSchedule"}}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. operator/pkg/translate/translate_value_test.go

      rollingMaxSurge: 100%
      rollingMaxUnavailable: 25%
      resources:
        requests:
          cpu: 1000m
          memory: 1G
      replicaCount: 1
      nodeSelector:
        kubernetes.io/os: linux
      tolerations:
      - key: dedicated
        operator: Exists
        effect: NoSchedule
      - key: CriticalAddonsOnly
        operator: Exists
      autoscaleEnabled: true
      autoscaleMax: 3
      autoscaleMin: 1
      cpu:
        targetAverageUtilization: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/provider_test.go

    	for desc, test := range map[string]struct {
    		rootfsDevice     string
    		imagefsDevice    string
    		dedicated        bool
    		imageFsStats     *statsapi.FsStats
    		containerFsStats *statsapi.FsStats
    	}{
    		"dedicated device for image filesystem": {
    			rootfsDevice:  "root/device",
    			imagefsDevice: "image/device",
    			dedicated:     true,
    			imageFsStats:  imageStatsExpected,
    		},
    		"shared device for image filesystem": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. src/compress/gzip/gunzip_test.go

    			"this continent, a new nation, conceived in Liberty, and dedicated\n" +
    			"to the proposition that all men are created equal.\n" +
    			"  Now we are engaged in a great Civil War, testing whether that\n" +
    			"nation, or any nation so conceived and so dedicated, can long\n" +
    			"endure.\n" +
    			"  We are met on a great battle-field of that war.\n" +
    			"  We have come to dedicate a portion of that field, as a final\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 15:06:07 UTC 2022
    - 19.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    The TestKit uses dedicated daemon processes that are automatically shut down after test execution.
    
    The dedicated working directory is not deleted by the runner after the build.
    The TestKit provides two ways to specify a location that is regularly cleaned, such as the project's build folder:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    There are many different testing libraries and frameworks, as well as many different types of test.
    All need to be part of the build, whether they are executed frequently or infrequently.
    This chapter is dedicated to explaining how Gradle handles differing requirements between and within builds, with significant coverage of how it integrates with XCTest on both macOS and Linux.
    
    It explains:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    It's very common that a project defines and executes different types of tests e.g. unit tests, integration tests, functional tests or smoke tests.
    Optimally, the test source code for each test type should be stored in dedicated source directories.
    Separated test source code has a positive impact on maintainability and separation of concerns as you can run test types independent from each other.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. pkg/util/taints/taints_test.go

    			expectedTaintsToRemove: []v1.Taint{
    				{
    					Key:    "foo",
    					Effect: v1.TaintEffectNoSchedule,
    				},
    				{
    					Key:    "bar",
    					Effect: v1.TaintEffectNoSchedule,
    				},
    				{
    					Key:    "qux",
    					Effect: v1.TaintEffectNoSchedule,
    				},
    				{
    					Key: "dedicated",
    				},
    			},
    			expectedErr: false,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 22.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java

                     * loaded into the core and hence available to plugins, in contrast to bigger extensions that were
                     * loaded into a dedicated realm which is invisible to plugins (MNG-2749).
                     */
                    publicArtifacts.addAll(artifacts);
                }
            }
    
            if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/DefaultConfigurationMetadata.java

        // eagerly because it's very likely that those methods would only be called on the selected variant. Therefore it's a waste of time
        // to compute them eagerly when those filtering methods are called. We cannot use a dedicated, lazy wrapper over configuration metadata
        // because we need the attributes to be computes lazily too, because of component metadata rules.
        private final DependencyFilter dependencyFilter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top