Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 141 for checkSeq (0.16 sec)

  1. subprojects/core/build.gradle.kts

        implementation(libs.groovyXml)
        implementation(libs.slf4jApi)
        implementation(libs.tomlj) {
            // Used for its nullability annotations, not needed at runtime
            exclude("org.checkerframework", "checker-qual")
        }
        implementation(libs.xmlApis)
    
        compileOnly(libs.kotlinStdlib) {
            because("it needs to forward calls from instrumented code to the Kotlin standard library")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/cni-watcher.go

    	log := log.WithLabels("cni-event", addCmd)
    
    	log.Debugf("netns: %s", addCmd.Netns)
    
    	// The CNI node plugin should have already checked the pod against the k8s API before forwarding us the event,
    	// but we have to invoke the K8S client anyway, so to be safe we check it again here to make sure we get the same result.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/types.go

    	Operator PodFailurePolicyOnExitCodesOperator `json:"operator" protobuf:"bytes,2,req,name=operator"`
    
    	// Specifies the set of values. Each returned container exit code (might be
    	// multiple in case of multiple containers) is checked against this set of
    	// values with respect to the operator. The list of values must be ordered
    	// and must not contain duplicates. Value '0' cannot be used for the In operator.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  4. cmd/signature-v4-utils.go

    			// to retry with 503 errors when server is coming up.
    			return auth.Credentials{}, false, ErrIAMNotInitialized
    		}
    
    		// Check if the access key is part of users credentials.
    		u, ok, err := globalIAMSys.CheckKey(r.Context(), accessKey)
    		if err != nil {
    			return auth.Credentials{}, false, ErrIAMNotInitialized
    		}
    		if !ok {
    			// Credentials could be valid but disabled - return a different
    			// error in such a scenario.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

    import org.jetbrains.kotlin.resolve.source.getPsi
    import org.jetbrains.kotlin.synthetic.SyntheticJavaPropertyDescriptor
    import org.jetbrains.kotlin.types.*
    import org.jetbrains.kotlin.types.checker.NewCapturedType
    import org.jetbrains.kotlin.types.checker.NewTypeVariableConstructor
    import org.jetbrains.kotlin.types.error.ErrorType
    import org.jetbrains.kotlin.types.error.ErrorTypeKind
    import org.jetbrains.kotlin.types.error.ErrorUtils
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. src/runtime/mfinal.go

    	//	ptr ptr ptr ptr INT ptr ptr ptr
    	//	ptr INT ptr ptr ptr ptr INT ptr
    	//	ptr ptr ptr INT ptr ptr ptr ptr
    	//	INT ptr ptr ptr ptr INT ptr ptr
    	//
    	// Assumptions about Finalizer layout checked below.
    	1<<0 | 1<<1 | 0<<2 | 1<<3 | 1<<4 | 1<<5 | 1<<6 | 0<<7,
    	1<<0 | 1<<1 | 1<<2 | 1<<3 | 0<<4 | 1<<5 | 1<<6 | 1<<7,
    	1<<0 | 0<<1 | 1<<2 | 1<<3 | 1<<4 | 1<<5 | 0<<6 | 1<<7,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

    )
    
    func IsL7() echo.Checker {
    	return check.Each(func(r echot.Response) error {
    		// TODO: response headers?
    		_, f := r.RequestHeaders[http.CanonicalHeaderKey("X-Request-Id")]
    		if !f {
    			return fmt.Errorf("X-Request-Id not set, is L7 processing enabled?")
    		}
    		return nil
    	})
    }
    
    func IsL4() echo.Checker {
    	return check.Each(func(r echot.Response) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/TestThread.java

    import java.util.concurrent.SynchronousQueue;
    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.TimeoutException;
    import junit.framework.AssertionFailedError;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A helper for concurrency testing. One or more {@code TestThread} instances are instantiated in a
     * test with reference to the same "lock-like object", and then their interactions with that object
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/TestThread.java

    import java.util.concurrent.SynchronousQueue;
    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.TimeoutException;
    import junit.framework.AssertionFailedError;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A helper for concurrency testing. One or more {@code TestThread} instances are instantiated in a
     * test with reference to the same "lock-like object", and then their interactions with that object
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. subprojects/core-api/src/test/groovy/org/gradle/StartParameterTest.groovy

        // Ensure that all state is represented in the toString, so it's more useful for debugging
        // In the future StartParameter should be replaced with a `record` so this doesn't need to be checked
        void "all state is represented in toString"() {
            given:
            def parameter = new StartParameter()
            def fieldNames = StartParameter.class.getDeclaredFields()
                .findAll { !it.synthetic }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top