Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 213 for example2 (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	basePod := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    		Spec:       example.PodSpec{NodeName: ""},
    	}
    	basePodAssigned := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    		Spec:       example.PodSpec{NodeName: "bar"},
    	}
    
    	selectedPod := func(pod *example.Pod) *example.Pod {
    		result := pod.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.proto

      //
      // The following example defines two networks with different endpoints association methods.
      // For `network1` all endpoints that their IP belongs to the provided CIDR range will be
      // mapped to network1. The gateway for this network example is specified by its public IP
      // address and port.
      // The second network, `network2`, in this example is defined differently with all endpoints
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  3. src/net/url/url_test.go

    	{
    		&URL{
    			Scheme: "http",
    			Host:   "example.com",
    			Opaque: "//other.example.com/%2F/%2F/",
    		},
    		"http://other.example.com/%2F/%2F/",
    	},
    	// better fix for issue 4860
    	{
    		&URL{
    			Scheme:  "http",
    			Host:    "example.com",
    			Path:    "/////",
    			RawPath: "/%2F/%2F/",
    		},
    		"/%2F/%2F/",
    	},
    	{
    		&URL{
    			Scheme:  "http",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.3.md

        - [Other notable changes](#other-notable-changes-17)
    <!-- END MUNGE: GENERATED_TOC -->
    
    <!-- NEW RELEASE NOTES ENTRY -->
    
    
    # v1.3.10
    
    [Documentation](http://kubernetes.github.io) & [Examples](http://releases.k8s.io/release-1.3/examples)
    
    ## Downloads for v1.3.10
    
    
    filename | sha256 hash
    -------- | -----------
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    In this section we give _an example_ how you can manually check if a dependency was compromised.
    
    For this we will take this example failure:
    
    ----
    > Dependency verification failed for configuration ':compileClasspath':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/sidecar_simulation_test.go

    					Dest:      "not-default.example.com",
    					Time:      TimeNewer,
    				},
    			},
    			proxy:     proxy("not-default"),
    			routeName: "80",
    			expected: map[string][]string{
    				// Oldest wins
    				"known.default.svc.cluster.local": {"outbound|80||arbitrary.example.com"},
    			},
    			expectedGateway: map[string][]string{
    				"known.default.svc.cluster.local": {"outbound|80||not-default.example.com"},
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    (like e.g. %arg0 in the example above), which can later be
    pruned using DCE.
    ### `-tf-lower-quantized`
    
    _Lowers ops that require quantized input or output._
    
    This pass rewrites all ops that have at least one input or output that must
    be a quantized type to ops whose inputs and outputs allow non-quantized
    types. Examples of quantized types are TF_Qint8 or TF_Quint8.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	}
    
    	// one of old/new may be nil, but not both
    	example := new
    	if example == nil {
    		example = old
    	}
    
    	accessor, err := meta.Accessor(example)
    	if err != nil {
    		panic(err)
    	}
    
    	return &FakeAttributes{
    		Attributes: admission.NewAttributesRecord(
    			new,
    			old,
    			example.GetObjectKind().GroupVersionKind(),
    			accessor.GetNamespace(),
    			accessor.GetName(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbFile.java

     * JCIFS Properties</a>). Here are some examples of SMB URLs with brief
     * descriptions of what they do:
     *
     * <p>
     * [1] This URL scheme is based largely on the <i>SMB
     * Filesharing URL Scheme</i> IETF draft.
     * 
     * <p>
     * <table border="1" cellpadding="3" cellspacing="0" width="100%" summary="URL examples">
     * <tr bgcolor="#ccccff">
     * <td colspan="2"><b>SMB URL Examples</b></td>
     * <tr>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    For example, on `tasks` they are of type `TaskProvider<T>` and provide a lazy reference and lazy configuration of the underlying task.
    Here are some examples that illustrate the situations in which configuration avoidance applies:
    
    [source,kotlin]
    ----
    tasks.test {
        // lazy configuration
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top