Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 87 for tst2 (0.19 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

                    $compare_type2),
                  (MHLO_CompareOp:$rnz $rem1, (MHLO_ConstantOp $cst2), MHLO_ComparisonDirectionValue<"NE">, $compare_type3)),
                (MHLO_AddOp $rem2, $arg1),
                $rem3),
              (TF_FloorModOp $arg, $arg1),
              [(ValueEquals<"0.0"> $cst),
               (ValueEquals<"0.0"> $cst1),
               (ValueEquals<"0.0"> $cst2),
               (SameValue $rem, $rem1),
               (SameValue $rem, $rem2),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/TreeRangeMapTest.java

              RangeMap<Integer, Integer> test = TreeRangeMap.create();
              RangeMap<Integer, Integer> test2 = TreeRangeMap.create();
              // put range2 and range3 into test2, and then put test2 into test
              test.put(range1, 1);
              test2.put(range2, 2);
              test2.put(range3, 3);
              test.putAll(test2);
              verify(model, test);
            }
          }
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/internal/DefaultBinaryCollectionTest.groovy

            def action = Mock(Action)
            def binary1 = Stub(SwiftBinary)
            binary1.name >> "test1"
            def binary2 = Stub(SwiftBinary)
            binary2.name >> "test2"
    
            when:
            def p = container.getByName("test1")
            p.configure(action)
    
            container.add(binary1)
            container.add(binary2)
    
            then:
            0 * action._
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

                    resultMap.put("index", index);
                    resultMap.put("query", builder.toString());
                    return OptionalEntity.of(Map.of("_id", "001", "title", "test1", "content", "test2"));
                }
            };
            ComponentUtil.register(client, "searchEngineClient");
    
            final Map<String, Object> document = indexingHelper.getDocument(client, "001", new String[] { "title", "content" });
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  5. pkg/securitycontext/accessors_test.go

    		// Capabilities
    		{
    			modifiedSC := nonNilSC(tc.newSC())
    			m := NewContainerSecurityContextMutator(tc.newSC())
    			modifiedSC.Capabilities = &api.Capabilities{Drop: []api.Capability{"test2"}}
    			m.SetCapabilities(&api.Capabilities{Drop: []api.Capability{"test2"}})
    			if !reflect.DeepEqual(m.ContainerSecurityContext(), modifiedSC) {
    				t.Errorf("%s: unexpected object:\n%s", k, diff.ObjectGoPrintSideBySide(modifiedSC, m.ContainerSecurityContext()))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 16:15:27 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  6. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/EarPluginTest.groovy

            project.file("src/main/application/test2.txt").createNewFile()
    
            when:
            project.pluginManager.apply(EarPlugin)
    
            and:
            executeWithDependencies project.tasks[EarPlugin.EAR_TASK_NAME]
    
            then:
            inEar "test2.txt"
            inEar "META-INF/test.txt"
        }
    
        def "supports renamed app dir"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. src/os/readfrom_linux_test.go

    		dst2, err := OpenFile(dst.Name(), O_RDWR|O_APPEND, 0755)
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer dst2.Close()
    
    		if _, err := io.Copy(dst2, src); err != nil {
    			t.Fatal(err)
    		}
    		if hook.called {
    			t.Fatal("called poll.CopyFileRange for destination in O_APPEND mode")
    		}
    		mustSeekStart(t, dst2)
    		mustContainData(t, dst2, data) // through traditional means
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. src/encoding/base32/base32_test.go

    		dst2, err := StdEncoding.AppendDecode(dst[:0:len(p.decoded)], []byte(p.encoded))
    		testEqual(t, "AppendDecode(%q) = error %v, want %v", p.encoded, err, error(nil))
    		testEqual(t, `AppendDecode("", %q) = %q, want %q`, p.encoded, string(dst2), p.decoded)
    		if len(dst) > 0 && len(dst2) > 0 && &dst[0] != &dst2[0] {
    			t.Errorf("unexpected capacity growth: got %d, want %d", cap(dst2), cap(dst))
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. pkg/registry/core/service/ipallocator/cidrallocator_test.go

    		}
    		found.Insert(ip.String())
    	}
    	if count != 14 {
    		t.Fatalf("expected 14 IPs got %d", count)
    	}
    	if _, err := r.AllocateNext(); err == nil {
    		t.Fatal(err)
    	}
    
    	cidr2 := newServiceCIDR("test2", "10.0.0.0/28")
    	_, err = r.client.ServiceCIDRs().Create(context.Background(), cidr2, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    	r.addServiceCIDR(cidr2)
    	// wait for the cidr to be processed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

            then:
            def testClassFile = results(reportDir.file('classes/org.gradle.Test.html'))
            testClassFile.assertHasTest('test1 < test2')
            testClassFile.assertHasFailure('test1 < test2', '<a failure>')
            testClassFile.assertHasStandardOutput('</html> & ')
            testClassFile.assertHasStandardError('</div> & ')
        }
    
        def encodesUnicodeCharactersInReport() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top