Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 314 for chains (0.21 sec)

  1. cni/pkg/iptables/iptables.go

    	iptablesBuilder := builder.NewIptablesRuleBuilder(ipbuildConfig(cfg.cfg))
    
    	// Insert jumps to our custom chains
    	// This is mostly just for visual tidiness and cleanup, as we can delete the secondary chains and jumps
    	// without polluting the main table too much.
    
    	// -t mangle -A PREROUTING -j ISTIO_PRERT
    	iptablesBuilder.AppendRule(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. test/nosplit.go

    start 0 call f1
    f1 0 nosplit call f2
    f2 0 nosplit call f3
    f3 0 nosplit call f2
    REJECT
    
    # Chains of ordinary functions okay.
    start 0 call f1
    f1 80 call f2
    f2 80
    
    # Chains of nosplit must fit in the stack limit, 128 bytes.
    start 0 call f1
    f1 80 nosplit call f2
    f2 80 nosplit
    REJECT
    
    # Larger chains.
    start 0 call f1
    f1 16 call f2
    f2 16 call f3
    f3 16 call f4
    f4 16 call f5
    f5 16 call f6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/configdump/listener.go

    	})
    
    	fmt.Fprintln(w, "LISTENER\tCHAIN\tMATCH\tDESTINATION")
    	for _, l := range listeners {
    		chains := getFilterChains(l)
    		lname := "envoy://" + l.GetName()
    		// Avoid duplicating the listener and filter name
    		if l.GetInternalListener() != nil && len(chains) == 1 && chains[0].GetName() == lname {
    			lname = "internal"
    		}
    		for _, fc := range chains {
    
    			name := fc.GetName()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  4. security/pkg/pki/util/keycertbundle.go

    	}
    	cert, err := ParsePemEncodedCertificate(certBytes)
    	if err != nil {
    		return fmt.Errorf("failed to parse cert PEM: %v", err)
    	}
    	chains, err := cert.Verify(opts)
    
    	if len(chains) == 0 || err != nil {
    		return fmt.Errorf(
    			"cannot verify the cert with the provided root chain and cert "+
    				"pool with error: %v", err)
    	}
    
    	// Verify that the key can be correctly parsed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

        @Rule public final Sample variants = sample(testDirectoryProvider, 'variants')
        @Rule public final Sample toolChains = sample(testDirectoryProvider, 'tool-chains')
        @Rule public final Sample prebuilt = sample(testDirectoryProvider, 'prebuilt')
        @Rule public final Sample targetPlatforms = sample(testDirectoryProvider, 'target-platforms')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt

          }
        }
      }
    
      /**
       * Not checking the CA bit created a vulnerability in old OkHttp releases. It is exploited by
       * triggering different chains to be discovered by the TLS engine and our chain cleaner. In this
       * attack there's several different chains.
       *
       *
       * The victim's gets a non-CA certificate signed by a CA, and pins the CA root and/or
       * intermediate. This is business as usual.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

                }
                descriptor.language === Language.CPP -> {
                    "* An installed {cpp} compiler. See which link:{userManualPath}/building_cpp_projects.html#sec:cpp_supported_tool_chain[{cpp} tool chains] are supported by Gradle."
                }
                else -> {
                    ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:51:21 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. pkg/util/iptables/testing/parse_test.go

    				COMMIT
    				`),
    			output: &IPTablesDump{
    				Tables: []Table{{
    					Name: iptables.TableFilter,
    					Chains: []Chain{{
    						Name: iptables.Chain("KUBE-SERVICES"),
    					}, {
    						Name: iptables.Chain("KUBE-EXTERNAL-SERVICES"),
    					}, {
    						Name: iptables.Chain("KUBE-FORWARD"),
    						Rules: []*Rule{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/update_control_dependencies.mlir

        tf_executor.fetch
      }
      func.return
    }
    
    // -----
    
    // Tests one group with multiple branches.
    // We expect the following dependency chains after the pass
    // A -> B -> fetch, C -> D -> fetch, E -> fetch.
    func.func @one_group_multiple_branches() {
      tf_executor.graph {
        // CHECK: %[[control:.*]] = tf_executor.island wraps "tf.A"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 03 18:12:49 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/control_flow.mlir

      // CHECK: [[out_ch:%.*]] = tfrt.merge.chains [[cond_res]]#0, %arg0 : !tfrt.chain, !tfrt.chain
      // CHECK: tfrt.return [[out_ch]], [[cond_res]]#1 : !tfrt.chain, !tfrt_fallback.tf_tensor
      func.return %2 : tensor<i32>
    }
    
    // CHECK-LABEL: func @cond_stateful(%arg0: !tfrt.chain, %arg1: !tfrt_fallback.tf_tensor) -> (!tfrt.chain, !tfrt_fallback.tf_tensor)
    func.func @cond_stateful(%arg0: tensor<i32>) -> tensor<i32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 00:40:32 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top