Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for comp2 (0.04 sec)

  1. android/pom.xml

                    <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED</arg>
                    <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED</arg>
                  </compilerArgs>
                </configuration>
              </plugin>
            </plugins>
          </build>
        </profile>
        <profile>
          <id>javac-for-jvm18plus</id>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. pom.xml

                    <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED</arg>
                    <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED</arg>
                  </compilerArgs>
                </configuration>
              </plugin>
            </plugins>
          </build>
        </profile>
        <profile>
          <id>javac-for-jvm18plus</id>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. test/codegen/comparisons.go

    	if a-b*c >= 0 {
    		c4 = 1
    	}
    	return c1 + c2 + c3 + c4
    }
    
    func cmp1(val string) bool {
    	var z string
    	// amd64:-".*memequal"
    	return z == val
    }
    
    func cmp2(val string) bool {
    	var z string
    	// amd64:-".*memequal"
    	return val == z
    }
    
    func cmp3(val string) bool {
    	z := "food"
    	// amd64:-".*memequal"
    	return z == val
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. CONTRIBUTING.md

    ### Typical Pull Request Workflow -
    
    **1. New PR**
    
    - As a contributor, you submit a New PR on GitHub.
    - We inspect every incoming PR and add certain labels to the PR such as `size:`,
      `comp:` etc.  At this stage we check if the PR is valid and meets certain
      quality requirements. For example, we check if the CLA is signed, PR has
      sufficient description, if applicable unit tests are added, if it is a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/module/module.go

    // See https://docs.microsoft.com/en-us/windows/desktop/fileio/naming-a-file
    var badWindowsNames = []string{
    	"CON",
    	"PRN",
    	"AUX",
    	"NUL",
    	"COM0",
    	"COM1",
    	"COM2",
    	"COM3",
    	"COM4",
    	"COM5",
    	"COM6",
    	"COM7",
    	"COM8",
    	"COM9",
    	"LPT0",
    	"LPT1",
    	"LPT2",
    	"LPT3",
    	"LPT4",
    	"LPT5",
    	"LPT6",
    	"LPT7",
    	"LPT8",
    	"LPT9",
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. src/archive/tar/writer_test.go

    		"0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000/file.txt",
    		"/home/support/.openoffice.org/3/user/uno_packages/cache/registry/com.sun.star.comp.deployment.executable.PackageRegistryBackend",
    	}
    
    	for i, name := range names {
    		var b bytes.Buffer
    
    		tw := NewWriter(&b)
    		if err := tw.WriteHeader(&Header{
    			Name: name,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Neg32", argLength: 1},
    	{name: "Neg64", argLength: 1},
    	{name: "Neg32F", argLength: 1},
    	{name: "Neg64F", argLength: 1},
    
    	{name: "Com8", argLength: 1}, // ^arg0
    	{name: "Com16", argLength: 1},
    	{name: "Com32", argLength: 1},
    	{name: "Com64", argLength: 1},
    
    	{name: "Ctz8", argLength: 1},         // Count trailing (low order) zeroes (returns 0-8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. src/path/filepath/path_test.go

    }
    
    var winislocaltests = []IsLocalTest{
    	{"NUL", false},
    	{"nul", false},
    	{"nul ", false},
    	{"nul.", false},
    	{"a/nul:", false},
    	{"a/nul : a", false},
    	{"com0", true},
    	{"com1", false},
    	{"com2", false},
    	{"com3", false},
    	{"com4", false},
    	{"com5", false},
    	{"com6", false},
    	{"com7", false},
    	{"com8", false},
    	{"com9", false},
    	{"com¹", false},
    	{"com²", false},
    	{"com³", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top