Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 579 for chains (0.11 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/LogEventDispatcherTest.groovy

        def "QUIET and below are dispatched to the stdout chain"() {
            when:
            dispatcher.onOutput(event(logLevel))
    
            then:
            1 * stdoutChain.onOutput(_)
            0 * stderrChain.onOutput(_)
    
            where:
            logLevel << LogLevel.values() - LogLevel.ERROR
        }
    
        def "ERROR is dispatched to the stderr chain"() {
            when:
            dispatcher.onOutput(event(LogLevel.ERROR))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. pkg/util/iptables/monitor_test.go

    	}, 100*time.Millisecond, stopCh)
    
    	// Monitor should create canary chains quickly
    	if err := waitForChains(mfe, canary, tables); err != nil {
    		t.Errorf("failed to create iptables canaries: %v", err)
    	}
    
    	if err := waitForReloads(&reloads, 0); err != nil {
    		t.Errorf("got unexpected reloads: %v", err)
    	}
    
    	// If we delete all of the chains, it should reload
    	ipt.DeleteChain(TableMangle, canary)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:21:59 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/tf_to_corert_pipeline.mlir

    // CHECK-NEXT: [[out_chain:%.*]] = tfrt.merge.chains [[o2_chain]], [[o3_chain]], [[o4_chain]], [[o5_chain]]
    // CHECK-NEXT: tfrt.return [[out_chain]], [[o9]], [[o5]], [[o8]], [[o6]], [[arg1]], [[o3]] : !tfrt.chain, !tfrt_fallback.tf_tensor, !tfrt_fallback.tf_tensor, !tfrt_fallback.tf_tensor, !tfrt_fallback.tf_tensor, !tfrt_fallback.tf_tensor, !tfrt_fallback.tf_tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    		*ipt = append(*ipt, &Rule{
    			chain:  chain,
    			table:  table,
    			params: append([]string{"-A", chain}, match...),
    		})
    	}
    	rules := params
    	*ipt = append(*ipt, &Rule{
    		chain:  chain,
    		table:  table,
    		params: append([]string{"-A", chain}, rules...),
    	})
    	return rb
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/Interceptor.kt

         *     chain.proceed(chain.request())
         * }
         * ```
         */
        inline operator fun invoke(crossinline block: (chain: Chain) -> Response): Interceptor = Interceptor { block(it) }
      }
    
      interface Chain {
        fun request(): Request
    
        @Throws(IOException::class)
        fun proceed(request: Request): Response
    
        /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/basic.mlir

      // CHECK-NEXT: [[out_ch:%.*]] = tfrt.merge.chains [[ch]], [[ch1]] : !tfrt.chain, !tfrt.chain
      // CHECK-NEXT: tfrt.return [[out_ch]], [[r2]] : !tfrt.chain, !tfrt_fallback.tf_tensor
      func.return %6#0 : tensor<3x3xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/schedule_test.go

    		t.Logf("Func: %s", fun.f)
    		t.Errorf("store order is wrong: got %v, want v2 v3 v4 after v5", order)
    	}
    }
    
    func TestCarryChainOrder(t *testing.T) {
    	// In the function below, there are two carry chains that have no dependencies on each other,
    	// one is A1 -> A1carry -> A1Carryvalue, the other is A2 -> A2carry -> A2Carryvalue. If they
    	// are not scheduled properly, the carry will be clobbered, causing the carry to be regenerated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 01:46:00 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/README.md

        "input path".)
    
      - `LoadBalancerSourceRanges` firewalling has to happen before service DNAT, so we do
        that on `prerouting` and `output` as well, with a lower (i.e. more urgent) priority
        than the DNAT chains.
    
      - The `drop` and `reject` rules for services with no endpoints don't need to happen
        explicitly before or after any other rules (since they match packets that wouldn't be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/cycles4.go

    // all methods of T).
    
    type T interface {
    	m() interface {T}
    	E
    }
    
    var _ int = T.m(nil).m().e()
    
    type E interface {
    	e() int
    }
    
    // Check that unresolved forward chains are followed
    // (see also comment in resolver.go, checker.typeDecl).
    
    var _ int = C.m(nil).m().e()
    
    type A B
    
    type B interface {
    	m() interface{C}
    	E
    }
    
    type C A
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppMissingToolchainIntegrationTest.groovy

      - Tool chain 'clang' (Clang):
          - Could not find C++ compiler 'clang++'. Searched in:
              - ${file('clang-bin')}""")
            } else {
                failure.assertHasCause("""No tool chain is available to build C++ for host operating system '${osName}' architecture '${archName}':
      - Tool chain 'visualCpp' (Visual Studio):
          - Visual Studio is not available on this operating system.
      - Tool chain 'gcc' (GNU GCC):
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top