Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 329 for FORWARD (0.95 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinForwardDeclarationProviderFactory.kt

    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    
    /**
     * Declaration provider factory for Kotlin/Native forward declarations.
     *
     * The declarations from the provider are used as a source **representation** for forward declaration symbols.
     * The special provider is necessary because forward declarations are mere qualified names by themselves.
     * It is a responsibility of the implementor to make the source representation correct.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/tunneling/destination-rule.tmpl.yaml

    kind: DestinationRule
    metadata:
      name: originate-tls-for-outbound-traffic-to-external-forward-proxy
    spec:
      host: external-forward-proxy.{{ .externalNamespace }}.svc.cluster.local
      trafficPolicy:
        portLevelSettings:
        - port:
            number: {{ .forwardProxyPort }}
          tls:
            mode: SIMPLE
            sni: external-forward-proxy.{{ .externalNamespace }}.svc.cluster.local
            insecureSkipVerify: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 20 19:37:50 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/google/BiMapInverseTester.java

        BiMapPair<K, V> copy = SerializableTester.reserialize(pair);
        assertEquals(pair.forward, copy.forward);
        assertEquals(pair.backward, copy.backward);
        assertSame(copy.backward, copy.forward.inverse());
        assertSame(copy.forward, copy.backward.inverse());
      }
    
      private static class BiMapPair<K, V> implements Serializable {
        final BiMap<K, V> forward;
        final BiMap<V, K> backward;
    
        BiMapPair(BiMap<K, V> original) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinForwardDeclarationsPackageProviderFactory.kt

    public abstract class KotlinForwardDeclarationsPackageProviderFactory : KotlinOptionalPlatformComponent {
        /**
         * Create a package provider for Kotlin/Native forward declaration packages in this [ktModule].
         *
         * @return a package provider for [ktModule] or `null` if the module cannot contain forward declarations
         */
        public abstract fun createPackageProvider(ktModule: KtModule): KotlinPackageProvider?
    
        public companion object {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/google/BiMapInverseTester.java

        BiMapPair<K, V> copy = SerializableTester.reserialize(pair);
        assertEquals(pair.forward, copy.forward);
        assertEquals(pair.backward, copy.backward);
        assertSame(copy.backward, copy.forward.inverse());
        assertSame(copy.forward, copy.backward.inverse());
      }
    
      private static class BiMapPair<K, V> implements Serializable {
        final BiMap<K, V> forward;
        final BiMap<V, K> backward;
    
        BiMapPair(BiMap<K, V> original) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. cmd/metacache-walk.go

    	var scanDir func(path string) error
    
    	scanDir = func(current string) error {
    		// Skip forward, if requested...
    		sb := bytebufferpool.Get()
    		defer func() {
    			sb.Reset()
    			bytebufferpool.Put(sb)
    		}()
    
    		forward := ""
    		if len(opts.ForwardTo) > 0 && strings.HasPrefix(opts.ForwardTo, current) {
    			forward = strings.TrimPrefix(opts.ForwardTo, current)
    			// Trim further directories and trailing slash.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/README.md

    There are three paths through the diagram, called the "input", "forward", and "output"
    paths, depending on which of those hooks it passes through. Packets coming from host
    network namespace processes always take the output path, while packets coming in from
    outside the host network namespace (whether that's from an external host or from a pod
    network namespace) arrive via `ingress` and take the input or forward path, depending on
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/labels.go

    			check.recordUse(s.Label, obj)
    
    		case *syntax.AssignStmt:
    			if s.Op == syntax.Def {
    				recordVarDecl(s.Pos())
    			}
    
    		case *syntax.BlockStmt:
    			// Unresolved forward jumps inside the nested block
    			// become forward jumps in the current block.
    			fwdJumps = append(fwdJumps, check.blockBranches(all, b, lstmt, s.List)...)
    
    		case *syntax.IfStmt:
    			stmtBranches(s.Then)
    			if s.Else != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ForwardingSortedMultiset.java

     * the <a href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>Warning:</b> The methods of {@code ForwardingSortedMultiset} forward
     * <b>indiscriminately</b> to the methods of the delegate. For example, overriding {@link
     * #add(Object, int)} alone <b>will not</b> change the behavior of {@link #add(Object)}, which can
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. tests/integration/pilot/tunneling_test.go

    			ctx.ConfigIstio().File(externalNs, "testdata/external-forward-proxy-deployment.yaml").ApplyOrFail(ctx)
    			applyForwardProxyService(ctx, externalNs)
    			externalForwardProxyIPs, err := i.PodIPsFor(ctx.Clusters().Default(), externalNs, "app=external-forward-proxy")
    			if err != nil {
    				t.Fatalf("error getting external forward proxy ips: %v", err)
    			}
    
    			for _, proxyConfig := range forwardProxyConfigurations {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top