Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 75 for IsSame (0.07 sec)

  1. tensorflow/c/c_api.h

    //           `inputs` cannot contain the same tensor twice.
    //  noutputs - number of elements in `outputs` array
    //  outputs - array of TF_Outputs that specify the outputs of the function.
    //            If `noutputs` is zero (the function returns no outputs), `outputs`
    //            can be null. `outputs` can contain the same tensor more than once.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  2. cmd/object-api-multipart_test.go

    		// Cases 5-7.
    		// Create parts with 3 uploadID's for the same object.
    		// Testing for listing of all the uploadID's for given object.
    		// Insertion with 3 different uploadID's are done for same bucket and object.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    // getDwsectCUSize retrieves the corresponding package size inside the current section.
    func getDwsectCUSize(sname string, pkgname string) uint64 {
    	return dwsectCUSize[sname+"."+pkgname]
    }
    
    func addDwsectCUSize(sname string, pkgname string, size uint64) {
    	dwsectCUSizeMu.Lock()
    	defer dwsectCUSizeMu.Unlock()
    	dwsectCUSize[sname+"."+pkgname] += size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    // barrier insertion code.
    //
    // writeBarrier should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/sonic
    //   - github.com/cloudwego/frugal
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname writeBarrier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. src/time/format.go

    // layout and returns the text before, the std string, and the text after.
    //
    // nextStdChunk should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/searKing/golang/go
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname nextStdChunk
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/SetsTest.java

          fail("Expected IAE");
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testCartesianProduct_hashCode() {
        // Run through the same cartesian products we tested above
    
        Set<List<Integer>> degenerate = Sets.cartesianProduct();
        checkHashCode(degenerate);
    
        checkHashCode(Sets.cartesianProduct(set(1, 2)));
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    // will panic if keys is empty.
    //
    // Calling this function will turn off automatic session ticket key rotation.
    //
    // If multiple servers are terminating connections for the same host they should
    // all have the same session ticket keys. If the session ticket keys leaks,
    // previously recorded and future TLS connections using those keys might be
    // compromised.
    func (c *Config) SetSessionTicketKeys(keys [][32]byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// version of both map-based and more expressive set-based selectors. This is done to
    	// avoid introspection in the clients. The string will be in the same format as the
    	// query-param syntax. If the target type only supports map-based selectors, both this
    	// field and map-based selector field are populated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    // applied (see the example in mod_get_patchmod.txt).
    //
    // There are a few other ambiguous cases to resolve, too. A package can exist in
    // two different modules at the same version: for example, the package
    // example.com/foo might be found in module example.com and also in module
    // example.com/foo, and those modules may have independent v0.1.0 tags — so the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_test.go

    		testInboundListenerConfigWithSidecarIngressPortMergeServicePort(t, getProxy(),
    			buildServiceWithPort("test1.com", 80, protocol.HTTP, tnow.Add(1*time.Second)))
    	})
    	t.Run("merge sidecar ingress and service ports, same port in both sidecar and service", func(t *testing.T) {
    		test.SetForTest(t, &features.EnableSidecarServiceInboundListenerMerge, true)
    		testInboundListenerConfigWithSidecar(t, getProxy(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top