Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,056 for Example (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher_test.go

    func initStoreData(ctx context.Context, store storage.Interface) ([]interface{}, error) {
    	barFirst := &example.Pod{ObjectMeta: metav1.ObjectMeta{Namespace: "first", Name: "bar"}}
    	barSecond := &example.Pod{ObjectMeta: metav1.ObjectMeta{Namespace: "second", Name: "bar"}}
    
    	preset := []struct {
    		key       string
    		obj       *example.Pod
    		storedObj *example.Pod
    	}{
    		{
    			key: fmt.Sprintf("/pods/%s/%s", barFirst.Namespace, barFirst.Name),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 12.3K bytes
    - Viewed (1)
  2. CONTRIBUTING.md

    *   [C/C++ license example](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/framework/op.cc#L1)
    *   [Python license example](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/ops/nn.py#L1)
    *   [Java license example](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/java/src/main/java/org/tensorflow/Graph.java#L1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    
    [[publishing_ivy:example]]
    == Complete example
    
    The following example demonstrates publishing with a multi-project build.
    Each project publishes a Java component configured to also build and publish Javadoc and source code artifacts.
    The descriptor file is customized to include the project description for each project.
    
    .Publishing a Java module
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

                }
            """
    
            file("src/test/java/example2/MyOtherTest.java") << """
                package example2;
                public class MyOtherTest {
                    @org.junit.Test public void bar() throws Exception {
                         org.junit.Assert.assertEquals(2, 2);
                    }
                }
            """
            file("src/test/java/example2/MyOtherTest2.java") << """
                package example2;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ProblemProgressEventCrossVersionTest.groovy

            ''                         | null            | ''                                          | null
        }
    
        def "Problems expose details via Tooling API events with problem definition"() {
            given:
            withReportProblemTask """
                getProblems().forNamespace("org.example.plugin").reporting {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/liveness/intervals.go

    	}
    	r := c.s
    	return r, nil
    }
    
    // Live method should be invoked on instruction at position p if instr
    // contains an upwards-exposed use of a resource. See the example in
    // the comment at the beginning of this file for an example.
    func (c *IntervalsBuilder) Live(pos int) error {
    	if pos < 0 {
    		return fmt.Errorf("bad pos, negative")
    	}
    	if c.last() == -1 {
    		c.setLast(pos)
    		if debugtrace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Splitter.java

       * empty strings from the results. For example, {@code
       * Splitter.on(',').omitEmptyStrings().split(",a,,,b,c,,")} returns an iterable containing only
       * {@code ["a", "b", "c"]}.
       *
       * <p>If either {@code trimResults} option is also specified when creating a splitter, that
       * splitter always trims results first before checking for emptiness. So, for example, {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion_test.go

    				// allow cross namespace
    				{"kubernetes-gateway://default/wildcard-example-com-cert", "istio-system", true},
    				// denied same namespace. We do not implicitly allow (in this code - higher level code does)
    				{"kubernetes-gateway://default/wildcard-example-com-cert", "default", false},
    				// denied namespace
    				{"kubernetes-gateway://default/wildcard-example-com-cert", "bad", false},
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  9. fastapi/security/http.py

        `HTTPDigest` in a dependency.
    
        The HTTP authorization header value is split by the first space.
    
        The first part is the `scheme`, the second part is the `credentials`.
    
        For example, in an HTTP Bearer token scheme, the client will send a header
        like:
    
        ```
        Authorization: Bearer deadbeef12346
        ```
    
        In this case:
    
        * `scheme` will have the value `"Bearer"`
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 15:29:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/security/simple-oauth2.md

        If you need to enforce it, use `OAuth2PasswordRequestFormStrict` instead of `OAuth2PasswordRequestForm`.
    
    * An optional `client_id` (we don't need it for our example).
    * An optional `client_secret` (we don't need it for our example).
    
    !!! info
        The `OAuth2PasswordRequestForm` is not a special class for **FastAPI** as is `OAuth2PasswordBearer`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top