Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,184 for chain (0.06 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509.go

    var CommonNameUserConversion = UserConversionFunc(func(chain []*x509.Certificate) (*authenticator.Response, bool, error) {
    	if len(chain[0].Subject.CommonName) == 0 {
    		return nil, false, nil
    	}
    	return &authenticator.Response{
    		User: &user.DefaultInfo{
    			Name:   chain[0].Subject.CommonName,
    			Groups: chain[0].Subject.Organization,
    		},
    	}, true, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 01:31:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/builder/testdata/append-insert-multi-restore.golden

    * table
    -N chain
    -A chain -f foo -b bar
    -I chain 2 -f foo -b bar
    -A chain -f foo -b baz
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 94 bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/attributes/CompatibilityRuleChain.java

         *
         * @param rule the rule to add to the chain
         * @since 4.0
         */
        void add(Class<? extends AttributeCompatibilityRule<T>> rule);
    
        /**
         * <p>Adds an arbitrary compatibility rule to the chain, possibly configuring the rule as well.</p>
         *
         * @param rule the rule to add to the chain
         * @param configureAction the action to use to configure the rule
         * @since 4.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top