Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for child6 (0.18 sec)

  1. tests/integration/pilot/common/routing.go

    	}
    	defaultIngress := istio.DefaultIngressOrFail(t, t)
    	for _, mode := range modes {
    		var childs []TrafficCall
    		for _, sni := range snis {
    			for _, alpn := range alpns {
    				alpn, sni, mode := alpn, sni, mode
    				al := []string{alpn}
    				if alpn == "" {
    					al = nil
    				}
    				childs = append(childs, TrafficCall{
    					name: fmt.Sprintf("mode:%v,sni:%v,alpn:%v", mode, sni, alpn),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * a file or directory. See the description and examples of smb URLs above.
     *
     * @param   url A URL string
     * @throws  MalformedURLException
     *          If the <code>parent</code> and <code>child</code> parameters
     *          do not follow the prescribed syntax
     */
    
        public SmbFile( String url ) throws MalformedURLException {
            this( new URL( null, url, Handler.SMB_HANDLER ));
        }
    
    /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  3. src/crypto/x509/verify_test.go

    		expectedChains []string
    		expectedErr    string
    	}{
    		{
    			// Build the following graph from RFC 4158, figure 7 (note that in this graph edges represent
    			// certificates where the parent is the issuer and the child is the subject.) For the certificate
    			// C->B, use an unsupported ExtKeyUsage (in this case ExtKeyUsageCodeSigning) which invalidates
    			// the path Trust Anchor -> C -> B -> EE. The remaining valid paths should be:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"chess_pawn":                           "\u265f\ufe0f",
    	"chestnut":                             "\U0001f330",
    	"chicken":                              "\U0001f414",
    	"child":                                "\U0001f9d2",
    	"children_crossing":                    "\U0001f6b8",
    	"chile":                                "\U0001f1e8\U0001f1f1",
    	"chipmunk":                             "\U0001f43f\ufe0f",
    	"chocolate_bar":                        "\U0001f36b",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  5. src/encoding/json/testdata/code.json.gz

    min_t":1228525763,"max_t":1229478785,"mean_t":1229002274},{"name":"transform-absolute-child-expected.png","kids":[],"cl_weight":0.0004266211604095563,"touches":1,"min_t":1229478785,"max_t":1229478785,"mean_t":1229478785},{"name":"button-spurious-layout-hint-expected.checksum","kids":[],"cl_weight":0.0004266211604095563,"touches":1,"min_t":1229478785,"max_t":1229478785,"mean_t":1229478785},{"name":"outline-child-repaint-expected.checksum","kids":[],"cl_weight":0.0004266211604095563,"touches":1,"m...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_test.go

    		assert.Equal(t, span.Parent.SpanID(), rootSpan.SpanContext.SpanID(), fmt.Sprintf("image service span %s %s should be child of root span", span.Name, span.Parent.SpanID()))
    	}
    
    	for _, span := range runtimeServiceSpans {
    		assert.Equal(t, span.Parent.SpanID(), rootSpan.SpanContext.SpanID(), fmt.Sprintf("runtime service span %s %s should be child of root span", span.Name, span.Parent.SpanID()))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    	msigrestore(gp.m.sigmask)
    
    	gp.m.locks--
    }
    
    // inForkedChild is true while manipulating signals in the child process.
    // This is used to avoid calling libc functions in case we are using vfork.
    var inForkedChild bool
    
    // Called from syscall package after fork in child.
    // It resets non-sigignored signals to the default handler, and
    // restores the signal mask in preparation for the exec.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

              },
              "x-kubernetes-int-or-string": {
                "description": "x-kubernetes-int-or-string specifies that this value is either an integer or a string. If this is true, an empty type is allowed and type as child of anyOf is permitted if following one of the following patterns:\n\n1) anyOf:\n   - type: integer\n   - type: string\n2) allOf:\n   - anyOf:\n     - type: integer\n     - type: string\n   - ... zero or more",
                "type": "boolean"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    	}()
    
    	// Wait for the server in the child process to respond and tell us
    	// its listening address, once it's started listening:
    	bs := bufio.NewScanner(stdout)
    	if !bs.Scan() {
    		b.Fatalf("failed to read listening URL from child: %v", bs.Err())
    	}
    	url := "http://" + strings.TrimSpace(bs.Text()) + "/"
    	if _, err := getNoBody(url); err != nil {
    		b.Fatalf("initial probe of child process failed: %v", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/popper.min.js.map

    modifier\n    if (!arrowElement) {\n      return data;\n    }\n  } else {\n    // if the arrowElement isn't a query selector we must check that the\n    // provided DOM node is child of its popper node\n    if (!data.instance.popper.contains(arrowElement)) {\n      console.warn(\n        'WARNING: `arrow.element` must be child of its popper element!'\n      );\n      return data;\n    }\n  }\n\n  const placement = data.placement.split('-')[0];\n  const { popper, reference } = data.offsets;\n  const...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
Back to top