Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for ftoatests (0.14 sec)

  1. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/api/api.iml.xml

          <excludeFolder url="file://$MODULE_DIR$/.gradle"/>
          <excludeFolder url="file://$MODULE_DIR$/build"/>
        </content>
        <orderEntry type="sourceFolder" forTests="false"/>
        <orderEntry type="module-library" scope="RUNTIME">
          <library>
            <CLASSES>
              <root url="jar://@CACHE_DIR@/commons-collections/commons-collections/3.2.2/@SHA1@/commons-collections-3.2.2.jar!/"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/overwritesExistingDependencies/root.iml

      <component name="NewModuleRootManager" inherit-compiler-output="true">
        <exclude-output />
        <content url="file://$MODULE_DIR$" />
        <orderEntry type="inheritedJdk" />
        <orderEntry type="sourceFolder" forTests="false" />
        <orderEntry type="module-library" scope="RUNTIME">
          <library>
            <CLASSES>
              <root url="jar://$CUSTOM_DIR$/../cache/junit/junit/jars/junit-4.7.jar!/"/>
            </CLASSES>
            <JAVADOC/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 738 bytes
    - Viewed (0)
  3. src/strconv/atof_test.go

    func initAtof() {
    	atofOnce.Do(initAtofOnce)
    }
    
    func initAtofOnce() {
    	// The atof routines return NumErrors wrapping
    	// the error and the string. Convert the table above.
    	for i := range atoftests {
    		test := &atoftests[i]
    		if test.err != nil {
    			test.err = &NumError{"ParseFloat", test.in, test.err}
    		}
    	}
    	for i := range atof32tests {
    		test := &atof32tests[i]
    		if test.err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/overwritesExistingDependencies/expectedFiles/root.iml.xml

          <excludeFolder url="file://$MODULE_DIR$/.gradle"/>
          <excludeFolder url="file://$MODULE_DIR$/build"/>
        </content>
        <orderEntry type="inheritedJdk"/>
        <orderEntry type="sourceFolder" forTests="false"/>
        <orderEntry type="module-library" scope="RUNTIME">
          <library>
            <CLASSES>
              <root url="jar://@CACHE_DIR@/commons-collections/commons-collections/3.2.2/@SHA1@/commons-collections-3.2.2.jar!/"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/test/resources/org/gradle/plugins/ide/idea/model/customModule.xml

                <excludeFolder url="file://$MODULE_DIR$/target"/>
            </content>
            <orderEntry type="sourceFolder" forTests="false"/>
            <orderEntry type="module-library">
                <library>
                    <CLASSES>
                        <root url="file://$MODULE_DIR$/gradle/lib"/>
                    </CLASSES>
                    <JAVADOC>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease_test.go

    	s, dFunc, err := factory.Create(*sc.ForResource(schema.GroupResource{Resource: "pods"}), newFunc, newListFunc, "")
    	if err != nil {
    		t.Fatalf("Error creating storage: %v", err)
    	}
    	t.Cleanup(dFunc)
    
    	stopTests := []struct {
    		testName         string
    		servers          []serverInfo
    		expectLeases     []string
    		apiServerStartup bool
    	}{
    		{
    			testName: "successful remove previous endpoints before apiserver starts",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier_test.go

    			}
    			setupTest(fp)
    
    			// Merge base flowTests with per-test-case overrides
    			tcFlowTests := make([]packetFlowTest, len(flowTests))
    			overridesApplied := 0
    			for i := range flowTests {
    				tcFlowTests[i] = flowTests[i]
    				if overrides, set := tc.overrides[flowTests[i].name]; set {
    					overridesApplied++
    					if overrides.masq != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/webservice/webservice.iml.xml

          <excludeFolder url="file://$MODULE_DIR$/.gradle"/>
          <excludeFolder url="file://$MODULE_DIR$/build"/>
        </content>
        <orderEntry type="sourceFolder" forTests="false"/>
        <orderEntry type="module" module-name="api"/>
        <orderEntry type="module-library" scope="PROVIDED">
          <library>
            <CLASSES>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. src/go/constant/value_test.go

    	`0B0 = 0`,
    	`0B1011 = 0xb`,
    	`0B00101101 = 0x2d`,
    
    	`0b_0 = 0`,
    	`0b10_11 = 0xb`,
    	`0b_0010_1101 = 0x2d`,
    }
    
    // The RHS operand may be a floating-point quotient n/d of two integer values n and d.
    var floatTests = []string{
    	// decimal floats
    	`1_2_3. = 123.`,
    	`0_123. = 123.`,
    
    	`0_0e0 = 0.`,
    	`1_2_3e0 = 123.`,
    	`0_123e0 = 123.`,
    
    	`0e-0_0 = 0.`,
    	`1_2_3E+0 = 123.`,
    	`0123E1_2_3 = 123e123`,
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier_test.go

    			}
    			setupTest(fp)
    
    			// Merge base flowTests with per-test-case overrides
    			tcFlowTests := make([]packetFlowTest, len(flowTests))
    			overridesApplied := 0
    			for i := range flowTests {
    				tcFlowTests[i] = flowTests[i]
    				if overrides, set := tc.overrides[flowTests[i].name]; set {
    					overridesApplied++
    					if overrides.masq != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
Back to top