Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for cde (0.13 sec)

  1. maven-core/src/test/java/org/apache/maven/project/GraphTest.java

            Graph graph2 = new Graph();
            addEdge(graph2, "a", "b");
            addEdge(graph2, "b", "c");
            CycleDetectedException cde = assertThrows(CycleDetectedException.class, () -> addEdge(graph2, "c", "a"));
            List<String> cycle = cde.getCycle();
            assertNotNull(cycle, "Cycle should be not null");
            assertTrue(cycle.contains("a"), "Cycle contains 'a'");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:02:04 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/metadata/ExternalResourceMetaDataCompareTest.groovy

            configureMetadataForEtagMatch(remote, "cde")
    
            when:
            compare(local, remote)
    
            then:
            !unchanged
        }
    
        def "non matching etags, matching mod date, but different content length does not match"() {
            given:
            configureMetadata(local, "abc", now, -1)
            configureMetadataForEtagMatch(remote, "cde")
    
            when:
            compare(local, remote)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/tests/verify-tfxla-legalization.mlir

      %0 = mhlo.constant dense<(1.000000e+00,-1.000000e+00)> : tensor<128x32x4xcomplex<f32>>
      %1 = mhlo.constant dense<(1.000000e+00,1.000000e+00)> : tensor<8x64x128xcomplex<f32>>
      %2 = "mhlo.einsum"(%1, %0) <{einsum_config = "abc,cde->abde"}> : (tensor<8x64x128xcomplex<f32>>, tensor<128x32x4xcomplex<f32>>) -> tensor<8x64x32x4xcomplex<f32>>
      return %2 : tensor<8x64x32x4xcomplex<f32>>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/CopySpecMatchingTest.groovy

        def canMatchFilesWithMultiplePatterns() {
            given:
            FileCopyDetails details1 = details('path/abc.txt')
            FileCopyDetails details2 = details('path/bcd.txt')
            FileCopyDetails details3 = details('path/cde.txt')
    
            Action matchingAction = Mock()
    
            when:
            copySpec.filesMatching(["**/a*", "**/c*"], matchingAction)
            copySpec.copyActions.each { copyAction ->
                copyAction.execute(details1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 28 12:39:32 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. platforms/core-execution/hashing/src/test/groovy/org/gradle/internal/hash/HashingTest.groovy

            expect:
            hashKey(left) != hashKey(right)
        }
    
        def 'hash collision for strings'() {
            expect:
            hashStrings(["abc", "de"]) != hashStrings(["ab", "cde"])
        }
    
        def hashStrings(List<String> strings) {
            def hasher = Hashing.newHasher()
            strings.each { hasher.putString(it) }
            hasher.hash()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/tests/convert_tf_xla_op_to_tf_op.mlir

      func.return %0 : tensor<?x2x4x5xf32>
    }
    
    // CHECK: func @xla_dot_v2
    // CHECK: %[[einsum:.*]] = "tf.Einsum"(%arg0, %arg1) <{equation = "abc,cde->abde"}> : (tensor<?x2x3xf32>, tensor<3x4x5xf32>) -> tensor<?x2x4x5xf32>
    // CHECK: return %[[einsum]] : tensor<?x2x4x5xf32>
    
    // -----
    
    // dimension_numbers: {
    //   offset_dims: 0
    //   collapsed_slice_dims: 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. pkg/registry/apps/controllerrevision/strategy_test.go

    		changedData = newControllerRevision("validname", "validns",
    			func() runtime.Object {
    				modified := newObject()
    				ss := modified.(*apps.StatefulSet)
    				ss.Name = "cde"
    				return modified
    			}(), 0)
    		changedRevision = newControllerRevision("validname", "validns", newObject(), 1)
    	)
    
    	cases := []struct {
    		name       string
    		newHistory *apps.ControllerRevision
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 09 11:14:08 UTC 2017
    - 4.5K bytes
    - Viewed (0)
  8. pkg/registry/apps/controllerrevision/storage/storage_test.go

    		return update
    	}
    
    	updateData := func(obj runtime.Object) runtime.Object {
    		rev := obj.(*apps.ControllerRevision)
    		modified := newObject()
    		ss := modified.(*apps.StatefulSet)
    		ss.Name = "cde"
    		update := &apps.ControllerRevision{
    			ObjectMeta: rev.ObjectMeta,
    			Data:       ss,
    			Revision:   rev.Revision + 1,
    		}
    		return update
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 5.6K bytes
    - Viewed (0)
  9. src/regexp/testdata/basic.dat

    E	a*			aaa		(0,3)
    E	(a*)*			-		(0,0)(0,0)
    E	(a*)+			-		(0,0)(0,0)
    E	(a*|b)*			-		(0,0)(0,0)
    E	(a+|b)*			ab		(0,2)(1,2)
    E	(a+|b)+			ab		(0,2)(1,2)
    E	(a+|b)?			ab		(0,1)(0,1)
    BE	[^ab]*			cde		(0,3)
    E	(^)*			-		(0,0)(0,0)
    BE	a*			NULL		(0,0)
    E	([abc])*d		abbbcd		(0,6)(4,5)
    E	([abc])*bcd		abcd		(0,4)(0,1)
    E	a|b|c|d|e		e		(0,1)
    E	(a|b|c|d|e)f		ef		(0,2)(0,1)
    E	((a*|b))*		-		(0,0)(0,0)(0,0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 8.4K bytes
    - Viewed (0)
Back to top