Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 655 for IsSame (0.07 sec)

  1. src/cmd/go/internal/toolchain/exec.go

    	if dir == "" {
    		os.Unsetenv("GOROOT")
    	} else {
    		os.Setenv("GOROOT", dir)
    	}
    
    	// On Windows, there is no syscall.Exec, so the best we can do
    	// is run a subprocess and exit with the same status.
    	// Doing the same on Unix would be a problem because it wouldn't
    	// propagate signals and such, but there are no signals on Windows.
    	// We also use the exec case when GODEBUG=gotoolchainexec=0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/collect/PersistentListTest.groovy

    import spock.lang.Specification
    
    class PersistentListTest extends Specification {
    
        def "empty lists are the same"() {
            expect:
            PersistentList.of() == PersistentList.of()
        }
    
        def "lists with elements #elements are the same"() {
            expect:
            listOf(elements) == listOf(elements)
    
            where:
            elements << [["a"], ["a", "b"]]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/swift-library-configurations.dot

        variantLinkElements[label=<<i>variant</i>LinkElements (C)>]
        variantRuntimeElements[label=<<i>variant</i>RuntimeElements (C)>]
      }
    
      // Ensure the order is preserved
      {rank=same swiftCompileVariant implementation swiftApiElements}
      {rank=same variantLinkElements mainVariantImplementation nativeLinkVariant}
      nativeLinkVariant -> mainVariantImplementation -> variantLinkElements [style=invis]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/cpp-library-configurations.dot

        variantLinkElements[label=<<i>variant</i>LinkElements (C)>]
        variantRuntimeElements[label=<<i>variant</i>RuntimeElements (C)>]
      }
    
      // Ensure the order is preserved
      {rank=same cppCompileVariant implementation cppApiElements}
      {rank=same variantLinkElements mainVariantImplementation nativeLinkVariant}
      nativeLinkVariant -> mainVariantImplementation -> variantLinkElements [style=invis]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/g3doc/dialects.md

    Each dialect consists of a set of defined operations which have invariants
    placed on them, like: “This is a binary operator, and the inputs and outputs
    have the same types.”
    
    ## Adding to MLIR
    
    MLIR has no fixed/built-in list of globally known operations (no “intrinsics”).
    Dialects can define entirely custom types, which is how MLIR can model things
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 21 01:37:38 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/functionalize-if.mlir

    
    // In the newly cloned function, check that we have a _tf.If operation and capture the then and else branch.
    // CHECK: func private @[[FUNCTIONALIZE_FUNC]]
    // CHECK: "tf.If"
    // CHECK-SAME:  else_branch = @[[ELSE_FUNC:[A-Za-z0-9_]*]]
    // CHECK-SAME:  then_branch = @[[THEN_FUNC:[A-Za-z0-9_]*]]
    
    // We expect the _tf.Add in the else func and the _tf.Mul in the then func
    
    // CHECK: func private @[[ELSE_FUNC]]
    // CHECK: "tf.Add"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/TreeTraverser.java

     *     their equivalent on the result of {@code Traverser.forTree(tree)} where {@code tree}
     *     implements {@code SuccessorsFunction}, which has a similar API as {@link #children} or can be
     *     the same lambda function as passed into {@link #using(Function)}.
     *     <p>This class is scheduled to be removed in October 2019.
     */
    // TODO(b/68134636): Remove by 2019-10
    @Deprecated
    @Beta
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. src/crypto/cipher/cbc.go

    type cbcEncAble interface {
    	NewCBCEncrypter(iv []byte) BlockMode
    }
    
    // NewCBCEncrypter returns a BlockMode which encrypts in cipher block chaining
    // mode, using the given Block. The length of iv must be the same as the
    // Block's block size.
    func NewCBCEncrypter(b Block, iv []byte) BlockMode {
    	if len(iv) != b.BlockSize() {
    		panic("cipher.NewCBCEncrypter: IV length must equal block size")
    	}
    	if cbc, ok := b.(cbcEncAble); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:55:33 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/serviceexportcache.go

    			}
    
    			// Otherwise, endpoints are only discoverable from within the same cluster.
    			return model.DiscoverableFromSameCluster
    		}
    
    		// Set the discoverability policy for the cluster.local host.
    		if features.EnableMCSClusterLocal {
    			// MCS cluster.local mode is enabled. Allow endpoints for the cluster.local host to be
    			// discoverable only from within the same cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/testdata/dupLoad_test.go

    // load up into two separate loads.
    
    package main
    
    import "testing"
    
    //go:noinline
    func read1(b []byte) (uint16, uint16) {
    	// There is only a single read of b[0].  The two
    	// returned values must have the same low byte.
    	v := b[0]
    	return uint16(v), uint16(v) | uint16(b[1])<<8
    }
    
    func main1(t *testing.T) {
    	const N = 100000
    	done := make(chan bool, 2)
    	b := make([]byte, 2)
    	go func() {
    		for i := 0; i < N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 1.5K bytes
    - Viewed (0)
Back to top