Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 207 for Example (0.47 sec)

  1. src/crypto/tls/tls_test.go

    			t.Logf("Listener accepted a connection from %s", lconn.RemoteAddr())
    			lconn.Close()
    		}
    		// Close any spurious extra connections from the listener. (This is
    		// possible if there are, for example, stray Dial calls from other tests.)
    		for extraConn := range acceptc {
    			t.Logf("spurious extra connection from %s", extraConn.RemoteAddr())
    			extraConn.Close()
    		}
    		if ok {
    			break
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  2. 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)
  3. pkg/workloadapi/workload.pb.go

    	//
    	// As an example, a ServiceEntry with two WorkloadEntries inlined could become
    	// two Workloads with the following UIDs:
    	// - cluster1/networking.istio.io/v1alpha3/ServiceEntry/default/external-svc/endpoint1
    	// - cluster1/networking.istio.io/v1alpha3/ServiceEntry/default/external-svc/endpoint2
    	//
    	// For VMs and other workloads other formats are also supported; for example,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. src/reflect/type.go

    	// Even if ConvertibleTo returns true, the conversion may still panic.
    	// For example, a slice of type []T is convertible to *[N]T,
    	// but the conversion will panic if its length is less than N.
    	ConvertibleTo(u Type) bool
    
    	// Comparable reports whether values of this type are comparable.
    	// Even if Comparable returns true, the comparison may still panic.
    	// For example, values of interface type are comparable,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        assertThat(
          parse("http://example.com")
            .newBuilder()
            .scheme("https")
            .build().port,
        ).isEqualTo(443)
        assertThat(
          parse("https://example.com")
            .newBuilder()
            .scheme("http")
            .build().port,
        ).isEqualTo(80)
        assertThat(
          parse("https://example.com:1234")
            .newBuilder()
            .scheme("http")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    	st "k8s.io/kubernetes/pkg/scheduler/testing"
    	tf "k8s.io/kubernetes/pkg/scheduler/testing/framework"
    )
    
    var (
    	extendedResourceA     = v1.ResourceName("example.com/aaa")
    	extendedResourceB     = v1.ResourceName("example.com/bbb")
    	kubernetesIOResourceA = v1.ResourceName("kubernetes.io/something")
    	kubernetesIOResourceB = v1.ResourceName("subdomain.kubernetes.io/something")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  7. tensorflow/cc/gradients/math_grad.cc

      // (3 * 5 * 6)/3 is equal to 5 * 6
      // the trick will be to cumprod the elements on the axis without
      // the element at the current position (3 in the example above).
      // We will take as example:
      // [
      //   [
      //     [3.0, 4.0],
      //     [5.0, 6.0],
      //     [7.0, 8.0]
      //   ],
      //   [
      //     [3.0, 5.0],
      //     [0.0, 6.0],
      //     [5.0, 6.0]
      //   ]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

        }
    
        @Override
        protected boolean resolveNestedClass(ClassNode type) {
            if (type instanceof ConstructedNestedClass) {
                return false;
            }
            // we have for example a class name A, are in class X
            // and there is a nested class A$X. we want to be able
            // to access that class directly, so A becomes a valid
            // name in X.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

                                   [Pure,
                                    AttrSizedResultSegments,
                                    AttrSizedOperandSegments]> {
    
      let summary =
        "Transforms a vector of tf.Example protos (as strings) into typed tensors.";
    
      let arguments = (ins
        TF_StrTensor:$serialized,
        TF_StrTensor:$names,
        Variadic<TF_StrTensor>:$sparse_keys,
        Variadic<TF_StrTensor>:$dense_keys,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    }
    
    // Lowers AddN op to a sequence of AddV2 ops to accumulate operands.
    //
    // Note that to improve the parallelism, AddN op uses tree-based reduction.
    // For example, tf.AddN([0, 1, 2, 3, 4]) behaves as follows:
    //
    //                 0     1     2     3     4
    //                 |     |     |     |     |
    //                 -------     -------     |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top