Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,101 for chains (0.29 sec)

  1. pkg/util/iptables/iptables.go

    	// EnsureChain checks if the specified chain exists and, if not, creates it.  If the chain existed, return true.
    	EnsureChain(table Table, chain Chain) (bool, error)
    	// FlushChain clears the specified chain.  If the chain did not exist, return error.
    	FlushChain(table Table, chain Chain) error
    	// DeleteChain deletes the specified chain.  If the chain did not exist, return error.
    	DeleteChain(table Table, chain Chain) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    		add chain ip kube-proxy firewall-check
    		add chain ip kube-proxy mark-for-masquerade
    		add chain ip kube-proxy masquerading
    		add chain ip kube-proxy nat-output { type nat hook output priority -100 ; }
    		add chain ip kube-proxy nat-postrouting { type nat hook postrouting priority 100 ; }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. src/runtime/mklockrank.go

    # Tracing without a P uses a global trace buffer.
    scavenge
    # Above TRACEGLOBAL can emit a trace event without a P.
    < TRACEGLOBAL
    # Below TRACEGLOBAL manages the global tracing buffer.
    # Note that traceBuf eventually chains to MALLOC, but we never get that far
    # in the situation where there's no P.
    < traceBuf;
    # Starting/stopping tracing traces strings.
    traceBuf < traceStrings;
    
    # Malloc
    allg,
      allocmR,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinderTest.groovy

            0 * attributeMatcher._
        }
    
        private void assertTransformChain(TransformedVariant chain, ResolvedVariant source, AttributeContainer finalAttributes, TransformRegistration... registrations) {
            assert chain.root == source
            assert chain.attributes == finalAttributes
            def actualSteps = []
            chain.transformChain.visitTransformSteps {
                actualSteps << it
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_island_coarsening/executor_tpuv1_island_coarsening.mlir

        tf_executor.fetch
      }
      func.return
    }
    
    // -----
    
    // Check that chains of output of Identity op which does not contain
    // `_replication_info` should not be merged into one Island op
    // CHECK-LABEL: func @exclude_chains_of_identity_with_unqualified_output()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 02 03:15:59 UTC 2022
    - 36.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

    // function.
    // i.e., this class also supports the following fusion:
    //   <Contraction> + BiasAdd -> <FusedContraction>
    //
    // TODO(b/158266331): Support fusing activation chains of arbitrary length.
    template <typename SrcOpT, typename FusedOpT>
    class FuseContractionWithBiasAdd : public OpRewritePattern<SrcOpT> {
     public:
      using OpRewritePattern<SrcOpT>::OpRewritePattern;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

                len += pad8(bufferIndex);
            }
            else if ( compound && this.nextCommand == 0 && this.readSize > 0 ) {
                // TODO: only apply this for actual compound chains, or is this correct for single responses, too?
                // 3.2.5.1.9 Handling Compounded Responses
                // The final response in the compounded response chain will have NextCommand equal to 0,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Sep 30 10:47:31 UTC 2018
    - 19.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/dsl.xml

                </tr>
            </table>
        </section>
    
        <section>
            <title>Native tool chains model types</title>
            <para>Used to configure tool chains for building C++ and Swift components.</para>
            <table>
                <title>Native tool chain types</title>
                <tr>
                    <td>org.gradle.nativeplatform.toolchain.Gcc</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/tls.go

    				})
    
    				// If at this point there is a filter chain generated with the same CIDR match as the
    				// one that may be generated for the service as the default route, do not generate it.
    				// Otherwise, Envoy will complain about having filter chains with identical matches
    				// and will reject the config.
    				sort.Strings(virtualServiceDestinationSubnets)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

         * The provider returned by this method may or not be the same instance as this provider. Generally, it is better to simplify any provider chains to replace calculations with fixed values and to remove
         * intermediate steps.
         */
        ExecutionTimeValue<? extends T> calculateExecutionTimeValue();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top