Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,256 for chain (0.04 sec)

  1. tools/istio-iptables/pkg/builder/testdata/insert-multi.golden

    -t table -N chain
    -t table -I chain 1 -f foo -b bar
    -t table -I chain 2 -f foo -b baaz
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 120 bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/builder/testdata/append-insert-multi.golden

    -t table -N chain
    -t table -A chain -f foo -b bar
    -t table -I chain 2 -f foo -b bar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 115 bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/builder/testdata/append-multi.golden

    -t table -N chain
    -t table -A chain -f foo -b bar
    -t table -A chain -f fu -b bar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 112 bytes
    - Viewed (0)
  4. test/chan/fifo.go

    const N = 10
    
    func AsynchFifo() {
    	ch := make(chan int, N)
    	for i := 0; i < N; i++ {
    		ch <- i
    	}
    	for i := 0; i < N; i++ {
    		if <-ch != i {
    			print("bad receive\n")
    			os.Exit(1)
    		}
    	}
    }
    
    func Chain(ch <-chan int, val int, in <-chan int, out chan<- int) {
    	<-in
    	if <-ch != val {
    		panic(val)
    	}
    	out <- 1
    }
    
    // thread together a daisy chain to read the elements in sequence
    func SynchFifo() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 22:35:07 UTC 2017
    - 896 bytes
    - Viewed (0)
  5. security/pkg/pki/ra/k8s_ra.go

    // root cert into the cert chain.
    // 2. root cert is specified in mesh config and also can be extracted in signed cert chain, in this
    // case we verify the signed cert chain against the root cert from mesh config and append it
    // into the cert chain if the two root certs are different. This is typical when
    // the returned cert chain only contains the intermediate CA.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/suggest/converter/ReadingConverterChainTest.java

        public void test_convert() throws Exception {
            /*
             * TODO ReadingConverterChain chain = new ReadingConverterChain(); chain.addConverter(new KatakanaConverter());
             * chain.addConverter(new KatakanaToAlphabetConverter()); chain.init();
             *
             * List<String> list = chain.convert("検索"); assertTrue(list.contains("ケンサク"));
             * assertTrue(list.contains("kennsaku"));
             */
        }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/InsecureExtendedTrustManager.kt

      override fun checkServerTrusted(
        chain: Array<out X509Certificate>,
        authType: String,
        socket: Socket,
      ) {
        if (socket.peerName() !in insecureHosts) {
          delegate.checkServerTrusted(chain, authType, socket)
        }
      }
    
      override fun checkServerTrusted(
        chain: Array<out X509Certificate>,
        authType: String,
        engine: SSLEngine,
      ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/query/QueryProcessor.java

            FilterChain chain = createDefaultFilterChain();
            for (final Filter element : filterList) {
                chain = appendFilterChain(element, chain);
            }
            filterChain = chain;
        }
    
        protected FilterChain appendFilterChain(final Filter filter, final FilterChain chain) {
            return (context, query, boost) -> filter.execute(context, query, boost, chain);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cpp/tests/nativeComponentReport.out

            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/hello/shared/libhello.dylib
        Static library 'hello:staticLibrary'
            build using task: :helloStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. android/guava-tests/benchmark/com/google/common/cache/ChainBenchmark.java

          // held
          chain = segment.newEntry(key, cache.hash(key), chain);
          if (i == 0) {
            head = chain;
          }
        }
      }
    
      @SuppressWarnings("GuardedBy")
      @Benchmark
      int time(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          // TODO(b/145386688): This access should be guarded by 'this.segment', which is not currently
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 15:19:38 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top