Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,363 for inter (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/wrapper.go

    // provided decorator that wraps an inner http.ResponseWriter object.
    // The user-provided decorator object must return the inner (decorated)
    // http.ResponseWriter object via the Unwrap function.
    type UserProvidedDecorator interface {
    	http.ResponseWriter
    
    	// Unwrap returns the inner http.ResponseWriter object associated
    	// with the user-provided decorator.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_issue60313.txt

    require example.net/outer/inner v0.1.0
    -- a/a.go --
    package a
    -- a/a_test.go --
    package a_test
    
    import _ "example.net/outer/inner"
    -- b/go.mod --
    module example.net/b
    
    go 1.21
    
    require example.net/outer v0.1.0
    -- b/b.go --
    package b
    -- b/b_test.go --
    package b_test
    
    import _ "example.net/outer/inner"
    -- inner/go.mod --
    module example.net/outer/inner
    
    go 1.21
    -- inner/inner.go --
    package inner
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 19:42:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue48136.go

    func f6[P interface { *Tree[P] }, Q any ]() {}
    
    func _() {
            f1 /* ERROR "cannot infer P" */ ()
            f2 /* ERROR "cannot infer P" */ ()
            f3 /* ERROR "cannot infer P" */ ()
            f4 /* ERROR "cannot infer P" */ ()
            f5 /* ERROR "cannot infer P" */ ()
            f6 /* ERROR "cannot infer P" */ ()
    }
    
    type Tree[P any] struct {
            left, right *Tree[P]
            data P
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 926 bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorInnerClassTest.groovy

        def "should not remove #modifier inner class if no API is declared"() {
            given:
            def api = toApi 'A': """
                public class A {
                   $modifier class Inner {
                      public void foo() {}
                   }
                }
            """
    
            when:
            def outer = api.classes.A
            def inner = api.classes['A$Inner']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// combination of signer name and a label selector.
    	//
    	// Kubelet performs aggressive normalization of the PEM contents written
    	// into the pod filesystem.  Esoteric PEM features such as inter-block
    	// comments and block headers are stripped.  Certificates are deduplicated.
    	// The ordering of certificates within the file is arbitrary, and Kubelet
    	// may change the order over time.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_legacy_mod.txt

    ! stdout ^new/sub/v2
    stdout ^new/sub/inner/x # not new/sub/v2/inner/x
    
    go build old/p1 new/p1
    
    -- new/go.mod --
    module "new/v2"
    -- new/new.go --
    package new
    
    import _ "new/v2/p2"
    -- new/p1/p1.go --
    package p1
    
    import _ "old/p2"
    import _ "new/v2"
    import _ "new/v2/p2"
    import _ "new/sub/v2/x/v1/y" // v2 is module, v1 is directory in module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 16 16:15:13 UTC 2022
    - 1K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

            }
        }
    
        inner class AnonymousInitializerBuilder {
            fun buildClassInitializer(firSymbol: FirAnonymousInitializerSymbol): KaClassInitializerSymbol {
                return symbolsCache.cache(firSymbol) { KaFirClassInitializerSymbol(firSymbol, analysisSession) }
            }
        }
    
        inner class TypeBuilder {
            fun buildKtType(coneType: ConeKotlinType): KaType {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/compilerPluginUsage.txt

        // source: 'fragment.kt'
        enclosing method CodeFragment.run()V
        inner (local) class CodeFragment$run$Bar Bar
        inner (local) class CodeFragment$run$Foo Foo
        public method <init>(): void
    }
    
    public class CodeFragment$run$Foo {
        // source: 'fragment.kt'
        enclosing method CodeFragment.run()V
        inner (local) class CodeFragment$run$Foo Foo
        public method <init>(): void
        public method call(): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 707 bytes
    - Viewed (0)
  9. pkg/scheduler/testing/wrappers.go

    	return &ContainerWrapper{v1.Container{}}
    }
    
    // Obj returns the inner Container.
    func (c *ContainerWrapper) Obj() v1.Container {
    	return c.Container
    }
    
    // Name sets `n` as the name of the inner Container.
    func (c *ContainerWrapper) Name(n string) *ContainerWrapper {
    	c.Container.Name = n
    	return c
    }
    
    // Image sets `image` as the image of the inner Container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/MonitorTestCase.java

      private String leave() {
        return "leave";
      }
    
      public final void testMutualExclusion() throws Exception {
        thread1.callAndAssertReturns(enter());
        thread2.callAndAssertBlocks(enter());
        thread1.callAndAssertReturns(leave());
        thread2.assertPriorCallReturns(enter());
      }
    
      public final void testTryEnter() throws Exception {
        thread1.callAndAssertReturns(true, tryEnter());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top