Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,042 for inter (0.53 sec)

  1. guava-tests/test/com/google/common/util/concurrent/SettableFutureTest.java

        SettableFuture<Object> async = SettableFuture.create();
        SettableFuture<Object> inner = SettableFuture.create();
        async.setFuture(inner);
        async.cancel(true);
        assertTrue(inner.isCancelled());
        assertTrue(inner.wasInterrupted());
        assertThrows(CancellationException.class, () -> inner.get());
      }
    
      public void testCancel_resultCancelsInner() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryFeaturePublishingIntegrationTest.groovy

                    capability('com.acme', 'mylib-integ-test-fixtures', '1.4')
                    file("mylib-1.4-integ-test-fixtures.jar")
                    noMoreDependencies()
                }
                md.variant('integTestFixturesApiElements') {
                    capability('com.acme', 'mylib-integ-test-fixtures', '1.4')
                    file("mylib-1.4-integ-test-fixtures.jar")
                    noMoreDependencies()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. .teamcity/test-buckets.json

    					"file-collections",
    					"file-watching",
    					"ide",
    					"ide-plugins",
    					"integ-test",
    					"internal-integ-testing",
    					"internal-performance-testing",
    					"ivy",
    					"java-platform",
    					"jvm-services",
    					"kotlin-dsl",
    					"kotlin-dsl-integ-tests",
    					"language-java",
    					"language-jvm",
    					"logging",
    					"maven",
    					"messaging",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskConstantChangesIncrementalGroovyCompilationIntegrationTest.groovy

        def "recompiles outermost class when #visibility inner class contains constant reference"() {
            source api: [
                "class A { public static final int EVIL = 666; }",
            ], impl: [
                "class B {}",
                "class C { $visibility static class Inner { int foo() { return A.EVIL; } } }",
                "class D { $visibility class Inner { int foo() { return A.EVIL; } } }",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/error.go

    type PartialAddError struct {
    	inner error
    }
    
    func (e *PartialAddError) Error() string {
    	return fmt.Sprintf("%s: %v", ErrPartialAdd.Error(), e.inner)
    }
    
    func (e *PartialAddError) Unwrap() []error {
    	return []error{ErrPartialAdd, e.inner}
    }
    
    func NewErrPartialAdd(err error) *PartialAddError {
    	return &PartialAddError{
    		inner: err,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. src/crypto/hmac/hmac.go

    func (h *hmac) Write(p []byte) (n int, err error) {
    	return h.inner.Write(p)
    }
    
    func (h *hmac) Size() int      { return h.outer.Size() }
    func (h *hmac) BlockSize() int { return h.inner.BlockSize() }
    
    func (h *hmac) Reset() {
    	if h.marshaled {
    		if err := h.inner.(marshalable).UnmarshalBinary(h.ipad); err != nil {
    			panic(err)
    		}
    		return
    	}
    
    	h.inner.Reset()
    	h.inner.Write(h.ipad)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/EmptyBlocksTest.kt

    
        class TopLevel {
            val configuredLazy = lazy { Inner() }
            val added = mutableListOf<Inner>()
    
            @Suppress("unused")
            @Configuring
            fun configuring(block: Inner.() -> Unit = { }) {
                configuredLazy.value.block()
            }
    
            @Adding
            fun adding(block: Inner.() -> Unit = { }) =
                Inner().also(block).also(added::add)
    
            @Suppress("unused")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional PodStatus status = 3;
    }
    
    // Pod affinity is a group of inter pod affinity scheduling rules.
    message PodAffinity {
      // If the affinity requirements specified by this field are not met at
      // scheduling time, the pod will not be scheduled onto the node.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).
    	// +optional
    	PodAntiAffinity *PodAntiAffinity
    }
    
    // PodAffinity is a group of inter pod affinity scheduling rules.
    type PodAffinity struct {
    	// NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented.
    	// If the affinity requirements specified by this field are not met at
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirNonStaticMembersScope.kt

     *
     * Inner classes are included because they are accessible from a value of the outer class. For example:
     *
     * ```
     * class Outer {
     *     inner class Inner
     * }
     *
     * fun foo() {
     *     val outer = Outer()
     *     outer.Inner()
     * }
     * ```
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 10 13:38:00 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top