Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for testpromise (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	"k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/promise"
    	test "k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing"
    	testeventclock "k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/eventclock"
    	testpromise "k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/promise"
    	"k8s.io/apiserver/pkg/util/flowcontrol/metrics"
    	fcrequest "k8s.io/apiserver/pkg/util/flowcontrol/request"
    	"k8s.io/klog/v2"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/sharedResources/maven_home/m2_home/conf/settings.xml

    <settings>
        <profiles>
            <profile>
              <id>testprofile</id>
              <properties>
                <junit-version>4.13</junit-version>
                <compiler-version>3.7.0</compiler-version>
              </properties>
            </profile>
        </profiles>
        <activeProfiles>
            <activeProfile>testprofile</activeProfile>
        </activeProfiles>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 366 bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelReferenceNode.java

            } else {
                return new ModelViewWrapper<T>(getPath(), target.asImmutable(type, ruleDescriptor));
            }
        }
    
        @Override
        public ModelPromise getPromise() {
            return target == null ? super.getPromise() : target.getPromise();
        }
    
        @Override
        public ModelAdapter getAdapter() {
            return target == null ? super.getAdapter() : target.getAdapter();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelNodeInternal.java

        public abstract ModelNodeInternal getLink(String name);
    
        @Override
        public boolean canBeViewedAs(ModelType<?> type) {
            return getPromise().canBeViewedAs(type);
        }
    
        @Override
        public Iterable<String> getTypeDescriptions() {
            return getPromise().getTypeDescriptions(this);
        }
    
        private ModelProjection toProjection() {
            if (projections == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:51:08 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. pkg/registry/core/pod/strategy_test.go

    				api.DeprecatedAppArmorAnnotationKeyPrefix + "init": api.DeprecatedAppArmorAnnotationValueLocalhostPrefix + testProfile,
    				api.DeprecatedAppArmorAnnotationKeyPrefix + "ctr":  api.DeprecatedAppArmorAnnotationValueLocalhostPrefix + testProfile,
    			}, pod.Annotations)
    		},
    	}, {
    		description: "Pod field localhost but profile is nil",
    		pod: &api.Pod{
    			Spec: api.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/testflag.go

    	// directory, but 'go test' defaults it to the working directory of the 'go'
    	// command. Set it explicitly if it is needed due to some other flag that
    	// requests output.
    	if testProfile() != "" && !outputDirSet {
    		injectedFlags = append(injectedFlags, "-test.outputdir="+testOutputDir.getAbs())
    	}
    
    	// If the user is explicitly passing -help or -h, show output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    	testBlockProfile, testCPUProfile, testMemProfile, testMutexProfile, testTrace string // profiling flag that limits test to one package
    
    	testODir = false
    )
    
    // testProfile returns the name of an arbitrary single-package profiling flag
    // that is set, if any.
    func testProfile() string {
    	switch {
    	case testBlockProfile != "":
    		return "-blockprofile"
    	case testCPUProfile != "":
    		return "-cpuprofile"
    	case testMemProfile != "":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

                if (node == null) {
                    return false;
                }
                for (ModelNodeInternal child : node.getLinks()) {
                    if (child.isAtLeast(Discovered) && child.getPromise().canBeViewedAs(typeToBind)) {
                        return true;
                    }
                }
                return false;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation_test.go

    			return
    		}
    	}
    }
    
    func TestValidateSeccompAnnotationAndField(t *testing.T) {
    	const containerName = "container"
    	testProfile := "test"
    
    	for _, test := range []struct {
    		description string
    		pod         *core.Pod
    		validation  func(*testing.T, string, field.ErrorList, *v1.Pod)
    	}{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top