Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 959 for chains (0.12 sec)

  1. src/go/types/named.go

    // heading.
    
    // under returns the expanded underlying type of n0; possibly by following
    // forward chains of named types. If an underlying type is found, resolve
    // the chain by setting the underlying type for each defined type in the
    // chain before returning it. If no underlying type is found or a cycle
    // is detected, the result is Typ[Invalid]. If a cycle is detected and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    }
    
    func (s *Scheme) Name() string {
    	return s.schemeName
    }
    
    // internalPackages are packages that ignored when creating a default reflector name. These packages are in the common
    // call chains to NewReflector, so they'd be low entropy names for reflectors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  3. src/crypto/x509/name_constraints_test.go

    					ok: []string{"dns:.foo.com"},
    				},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"dns:foo.example.com"},
    		},
    		noOpenSSL: true, // OpenSSL's chain building is not informed by constraints.
    	},
    
    	// #24: when multiple roots are valid, chain building can avoid roots
    	// with incompatible constraints.
    	{
    		roots: []constraintsSpec{
    			{},
    			{
    				ok: []string{"dns:foo.com"},
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    				// location so we give the some hint as to where the
    				// inlining happened that led to this instruction. So for
    				// example, suppose we have the following (inlined) call
    				// chains for this instruction:
    				//   F1->G->H
    				//   F2->G->H
    				// We could tag the instructions from the first call with
    				// F1 and instructions from the second call with F2. But
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  5. pilot/pkg/security/authn/policy_applier_test.go

    				8080,
    				testNode,
    				[]string{},
    				NoOverride,
    			)
    			if diff := cmp.Diff(tc.expected, got, protocmp.Transform()); diff != "" {
    				t.Errorf("unexpected filter chains: %v", diff)
    			}
    		})
    	}
    }
    
    func TestComposePeerAuthentication(t *testing.T) {
    	now := time.Now()
    	tests := []struct {
    		name    string
    		configs []*config.Config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// BuildHandlerChainFunc allows you to build custom handler chains by decorating the apiHandler.
    	BuildHandlerChainFunc func(apiHandler http.Handler, c *Config) (secure http.Handler)
    	// NonLongRunningRequestWaitGroup allows you to wait for all chain
    	// handlers associated with non long-running requests
    	// to complete while the server is shuting down.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    In Gradle 3.4 and above, ABI-compatible changes no longer trigger recompiles of downstream projects.
    This especially improves build times in large multi-project builds with deep dependency chains.
    
    Upgrade to a Gradle version above 3.4 to benefit from compile avoidance.
    
    NOTE: If you use annotation processors, you need to explicitly declare them in order for compilation avoidance to work.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"central_african_republic":             "\U0001f1e8\U0001f1eb",
    	"ceuta_melilla":                        "\U0001f1ea\U0001f1e6",
    	"chad":                                 "\U0001f1f9\U0001f1e9",
    	"chains":                               "\u26d3\ufe0f",
    	"chair":                                "\U0001fa91",
    	"champagne":                            "\U0001f37e",
    	"chart":                                "\U0001f4b9",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/InterceptorTest.kt

        val interceptor1 =
          Interceptor { chainA: Interceptor.Chain ->
            assertThat(chainA.connectTimeoutMillis()).isEqualTo(5000)
            val chainB = chainA.withConnectTimeout(100, TimeUnit.MILLISECONDS)
            assertThat(chainB.connectTimeoutMillis()).isEqualTo(100)
            chainB.proceed(chainA.request())
          }
        val interceptor2 =
          Interceptor { chain: Interceptor.Chain ->
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/poset.go

    		// node to record the relation correctly (without relating
    		// n2 to other existing nodes). Use a non-deterministic value
    		// to decide whether to append on the left or the right, to avoid
    		// creating degenerated chains.
    		//
    		//      n1
    		//     /  \
    		//   i1l  extra
    		//        /   \
    		//      i1r   n2
    		//
    		extra := po.newnode(nil)
    		if (i1^i2)&1 != 0 { // non-deterministic
    			po.setchl(extra, i1r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
Back to top