Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 645 for FORWARD (0.08 sec)

  1. android/guava/src/com/google/common/collect/HashBiMap.java

        private final HashBiMap<K, V> forward;
    
        Inverse(HashBiMap<K, V> forward) {
          this.forward = forward;
        }
    
        @Override
        public int size() {
          return forward.size;
        }
    
        @Override
        public boolean containsKey(@CheckForNull Object key) {
          return forward.containsValue(key);
        }
    
        @Override
        @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  2. tests/integration/security/remote_jwks/remote_jwks_test.go

    					policyFile: "./testdata/requestauthn-no-se.yaml.tmpl",
    					customizeCall: func(t framework.TestContext, from echo.Instance, opts *echo.CallOptions) {
    						opts.HTTP.Path = "/valid-token-forward-remote-jwks"
    						opts.HTTP.Headers = headers.New().WithAuthz(jwt.TokenIssuer1).Build()
    						opts.Check = check.And(
    							check.NotOK(),
    							check.Status(http.StatusUnauthorized))
    					},
    				},
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. pkg/istio-agent/xds_proxy_delta.go

    						// Forward the response using the thread of `handleUpstreamResponse`
    						// to prevent concurrent access to forwardToEnvoy
    						select {
    						case forwardEnvoyCh <- resp:
    						case <-con.stopChan:
    						}
    					})
    				} else {
    					// Otherwise, forward ECDS resource update directly to Envoy.
    					forwardDeltaToEnvoy(con, resp)
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/constants/constants.go

    	RAW    = "raw"
    )
    
    // Built-in iptables chains
    const (
    	INPUT       = "INPUT"
    	OUTPUT      = "OUTPUT"
    	FORWARD     = "FORWARD"
    	PREROUTING  = "PREROUTING"
    	POSTROUTING = "POSTROUTING"
    )
    
    var BuiltInChainsMap = map[string]struct{}{
    	INPUT:       {},
    	OUTPUT:      {},
    	FORWARD:     {},
    	PREROUTING:  {},
    	POSTROUTING: {},
    }
    
    // Constants used for generating iptables commands
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. pkg/test/echo/client.go

    		return Response{}, err
    	}
    	return parseResponse(resp.Message), nil
    }
    
    // ForwardEcho sends the given forward request and parses the response for easier processing. Only fails if the request fails.
    func (c *Client) ForwardEcho(ctx context.Context, request *proto.ForwardEchoRequest) (Responses, error) {
    	// Forward a request from 'this' service to the destination service.
    	GlobalEchoRequests.Add(uint64(request.Count))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

      // Find all of the Ops that are part of the forward/backward pass but aren't
      // targeting the SparseCore. Note that we need to include some non-TPU ops
      // that flow out of the forward pass function. Otherwise, they would get
      // absorbed into the non_tpu function which breaks the pipelining
      // decomposition strategy.
      //
      // Find all the outputs of the forward pass that aren't fed into the backward
      // pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_canonicalization_helper.h

    // TODO(jpienaar): This is a workaround until behavior is established.
    template <typename OpTy, typename... Args>
    OpTy CreateTfOp(RewriterBase &b, Operation *op, Args &&...args) {
      auto ret = b.create<OpTy>(op->getLoc(), std::forward<Args>(args)...);
      CopyDeviceAndUnderscoredAttributes(op, ret.getOperation());
      return ret;
    }
    
    // Helper function to replace TF op with another op while copying all underscore
    // attributes from the TF op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 12 21:57:12 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  8. pkg/util/iptables/testing/fake_test.go

    		COMMIT
    		*filter
    		:INPUT - [0:0]
    		:FORWARD - [0:0]
    		:OUTPUT - [0:0]
    		COMMIT
    		*mangle
    		COMMIT
    		`, "\n"))
    	if buf.String() != expected {
    		t.Fatalf("bad post-second-restore dump. expected:\n%s\n\ngot:\n%s\n", expected, buf.Bytes())
    	}
    
    	// RestoreAll, FlushTables
    	rules = dedent.Dedent(strings.Trim(`
    		*filter
    		:INPUT - [0:0]
    		:FORWARD - [0:0]
    		:OUTPUT - [0:0]
    		:KUBE-TEST - [0:0]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbol.kt

         */
        JS_DYNAMIC,
    
        /**
         * Kotlin/Native forward declaration.
         *
         * See: [Forward declarations in 1.9.20+](https://kotlinlang.org/docs/multiplatform-compatibility-guide.html#new-approach-to-forward-declarations)
         */
        NATIVE_FORWARD_DECLARATION,
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/gradients_test.cc

    //   |        ^          |
    //   |      dz|          |
    //   |        |          |
    //   |     Const_3       |
    //   |                   |
    //   |        ^          |
    //   |       z|          |     (MatMul Forward Graph)
    //   |        |          |
    //   |      MatMul_0     |
    //   |     /        \    |
    //   |    ^          ^   |
    //   |    |          |   |
    //   |---x|         y|---|
    //        |          |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
Back to top