Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for isWrite (0.14 sec)

  1. src/math/all_test.go

    		x = f(x)
    	}
    	GlobalF = x
    }
    
    func BenchmarkSqrtGoLatency(b *testing.B) {
    	x := 10.0
    	for i := 0; i < b.N; i++ {
    		x = SqrtGo(x)
    	}
    	GlobalF = x
    }
    
    func isPrime(i int) bool {
    	// Yes, this is a dumb way to write this code,
    	// but calling Sqrt repeatedly in this way demonstrates
    	// the benefit of using a direct SQRT instruction on systems
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    			}
    			if ml.TableSize >= 5000011 {
    				errs = AppendValidation(errs, fmt.Errorf("tableSize must be less than 5000011 for maglev"))
    			}
    			if !isPrime(ml.TableSize) {
    				errs = AppendValidation(errs, fmt.Errorf("tableSize must be a prime number for maglev"))
    			}
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    annotation.Annotation[]); private transient void Description(Class, String, java.io.Serializable, annotation.Annotation[]); public String getDisplayName(); public void addChild(Description); public java.util.ArrayList getChildren(); public boolean isSuite(); public boolean isTest(); public int testCount(); public int hashCode(); public boolean equals(Object); public String toString(); public boolean isEmpty(); public Description childlessCopy(); public annotation.Annotation getAnnotation(Class); public...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  4. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <glob pattern="*.scd"/>
      </mime-type>
      <mime-type type="application/x-msterminal">
        <glob pattern="*.trm"/>
      </mime-type>
      <mime-type type="application/x-mswrite">
        <magic priority="50">
          <match value="0x31be0000" type="big32" offset="0"/>
          <match value="0x32be0000" type="big32" offset="0"/>
        </magic>
        <glob pattern="*.wri"/>
      </mime-type>
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top