Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Zzzz (0.1 sec)

  1. src/cmd/vendor/golang.org/x/text/internal/language/lookup.go

    // is of the format [A-Z][a-z]{3}.
    func getScriptID(idx tag.Index, s []byte) (Script, error) {
    	i, err := findIndex(idx, s, "Zzzz")
    	return Script(i), err
    }
    
    // String returns the script code in title case.
    // It returns "Zzzz" for an unspecified script.
    func (s Script) String() string {
    	if s == 0 {
    		return "Zzzz"
    	}
    	return script.Elem(int(s))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/language/language.go

    // for Serbian.
    // If a script cannot be inferred (Zzzz, No) is returned. We do not use Zyyy (undetermined)
    // as one would suspect from the IANA registry for BCP 47. In a Unicode context Zyyy marks
    // common characters (like 1, 2, 3, '.', etc.) and is therefore more like multiple scripts.
    // See https://www.unicode.org/reports/tr24/#Values for more details. Zzzz is also used for
    // unknown value in CLDR.  (Zzzz, Exact) is returned if Zzzz was explicitly specified.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. test/codegen/comparisons.go

    	// ppc64x:-".*memequal"
    	return a[:2] == b
    }
    
    func equalConstString4() bool {
    	a := string("AAAA")
    	b := string("ZZZZ")
    	// amd64:-".*memequal"
    	// arm64:-".*memequal"
    	// ppc64x:-".*memequal"
    	return a == b
    }
    
    func equalVarString4(a string) bool {
    	b := string("ZZZZ")
    	// amd64:-".*memequal"
    	// arm64:-".*memequal"
    	// ppc64x:-".*memequal"
    	return a[:4] == b
    }
    
    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. src/cmd/vendor/golang.org/x/text/language/match.go

    			tt.RegionID = w.RegionID
    			tt.RemakeString()
    		} else if r := w.RegionID.String(); len(r) == 2 {
    			// TODO: also filter macro and deprecated.
    			tt, _ = tt.SetTypeForKey("rg", strings.ToLower(r)+"zzzz")
    		}
    	}
    	// Copy options from the user-provided tag into the result tag. This is hard
    	// to do after the fact, so we do it here.
    	// TODO: add in alternative variants to -u-va-.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/toolchain/DaemonJavaToolchainQueryServiceTest.groovy

            toolchain.javaHome.toString() == systemSpecificAbsolutePath(expectedPath)
    
            where:
            versionToFind | expectedPath
            7             | "/path/7.9"
            8             | "/path/8.0.zzz.foo" // zzz resolves to a real tool version 999
            14            | "/path/14.0.2+12"
        }
    
        def "uses j9 toolchain if requested"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/DefaultDeleterTest.groovy

            def targetDir = tmpDir.createDir("target")
            def tooManyRange = (1..(DefaultDeleter.MAX_REPORTED_PATHS + 10))
            def nonDeletableFiles = tooManyRange.collect { targetDir.createFile("zzz-${it}-zzz.txt") }
            FileTime.makeOld(nonDeletableFiles + targetDir)
    
            and: 'a deleter that cannot delete, records deletion requests and creates new files'
            def triedToDelete = [] as Set<File>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:40:48 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/Collections2Test.java

        suite.addTest(testsForTransform());
        suite.addTestSuite(Collections2Test.class);
        return suite;
      }
    
      static final Predicate<@Nullable String> NOT_YYY_ZZZ =
          input -> !"yyy".equals(input) && !"zzz".equals(input);
    
      static final Predicate<String> LENGTH_1 = input -> input.length() == 1;
    
      @J2ktIncompatible
      @GwtIncompatible // suite
      private static Test testsForFilter() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/JavaToolchainQueryServiceTest.groovy

            where:
            versionToFind              | expectedPath
            JavaLanguageVersion.of(7)  | "/path/7.9"
            JavaLanguageVersion.of(8)  | "/path/8.0.zzz.foo" // zzz resolves to a real tool version 999
            JavaLanguageVersion.of(14) | "/path/14.0.2+12"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/17195")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

            given:
            server.start()
            buildFile << """
                @ParallelizableTask
                class ParTask extends DefaultTask {
                    @TaskAction zzz() { ${server.callFromBuildUsingExpression('name')} }
                }
    
                task para1(type:ParTask)
                task para2(type:ParTask)
                task parallelTasks(dependsOn:[para1,para2])
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. src/os/removeall_test.go

    		// either way we want to see if it removes fpath
    		// and path/zzz. Reasons why RemoveAll might
    		// succeed in removing dpath as well include:
    		//	* running as root
    		//	* running on a file system without permissions (FAT)
    		RemoveAll(path)
    		Chmod(dpath, 0777)
    
    		for _, s := range []string{fpath, path + "/zzz"} {
    			if _, err = Lstat(s); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:21:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top