Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 200 for isLegal (0.18 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEncryptionIntegrationTest.groovy

            failure.assertHasDescription("Error loading encryption key from GRADLE_ENCRYPTION_KEY environment variable")
            failure.assertHasCause("Illegal base64 character ${Integer.toHexString((int) invalidBase64Char)}")
        }
    
        def "build fails if key is provided via env var but not long enough"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.cc

    namespace {
    
    struct NameCounts {
      mutex counts_mutex;
      llvm::StringMap<int64_t> counts;
    };
    
    std::string MakeUniqueFilename(string name) {
      static NameCounts& instance = *new NameCounts;
    
      // Remove illegal characters from `name`.
      for (int i = 0, e = name.size(); i < e; ++i) {
        char ch = name[i];
        if (ch == '/' || ch == '[' || ch == ']' || ch == '*' || ch == '?' ||
            ch == '\\') {
          name[i] = '_';
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 03:03:46 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. src/syscall/zerrors_windows.go

    	ESHUTDOWN - APPLICATION_ERROR:       "cannot send after transport endpoint shutdown",
    	ESOCKTNOSUPPORT - APPLICATION_ERROR: "socket type not supported",
    	ESPIPE - APPLICATION_ERROR:          "illegal seek",
    	ESRCH - APPLICATION_ERROR:           "no such process",
    	ESRMNT - APPLICATION_ERROR:          "srmount error",
    	ESTALE - APPLICATION_ERROR:          "stale NFS file handle",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcessBuilder.java

        }
    
        @Override
        public WorkerProcessBuilder applicationClasspath(Iterable<File> files) {
            for (File file : files) {
                if (file == null) {
                    throw new IllegalArgumentException("Illegal null value provided in this collection: " + files);
                }
                if (isEntryValid(file)) {
                    applicationClasspath.add(file);
                }
            }
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/math/QuantilesTest.java

       * 2. Tests on hardcoded datasets include non-finite values for chains starting with scale(10);
       * 3. Tests on a mechanically generated dataset for chains starting with percentiles();
       * 4. Tests of illegal usages of the API.
       */
    
      /*
       * Covering every combination would lead to an explosion in the number of tests. So we cover only:
       * - median with compute taking a double-collection and with computeInPlace;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	{25, "ENOTTY", "inappropriate ioctl for device"},
    	{26, "ETXTBSY", "text file busy"},
    	{27, "EFBIG", "file too large"},
    	{28, "ENOSPC", "no space left on device"},
    	{29, "ESPIPE", "illegal seek"},
    	{30, "EROFS", "read-only file system"},
    	{31, "EMLINK", "too many links"},
    	{32, "EPIPE", "broken pipe"},
    	{33, "EDOM", "numerical argument out of domain"},
    	{34, "ERANGE", "numerical result out of range"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/events/v1/generated.pb.go

    		fieldNum := int32(wire >> 3)
    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			return fmt.Errorf("proto: Event: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: Event: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field ObjectMeta", wireType)
    			}
    			var msglen int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    func nextDecomposed(i *Iter) (next []byte) {
    	outp := 0
    	inCopyStart, outCopyStart := i.p, 0
    	for {
    		if sz := int(i.info.size); sz <= 1 {
    			i.rb.ss = 0
    			p := i.p
    			i.p++ // ASCII or illegal byte.  Either way, advance by 1.
    			if i.p >= i.rb.nsrc {
    				i.setDone()
    				return i.returnSlice(p, i.p)
    			} else if i.rb.src._byte(i.p) < utf8.RuneSelf {
    				i.next = i.asciiF
    				return i.returnSlice(p, i.p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go

    	{25, "ENOTTY", "inappropriate ioctl for device"},
    	{26, "ETXTBSY", "text file busy"},
    	{27, "EFBIG", "file too large"},
    	{28, "ENOSPC", "no space left on device"},
    	{29, "ESPIPE", "illegal seek"},
    	{30, "EROFS", "read-only file system"},
    	{31, "EMLINK", "too many links"},
    	{32, "EPIPE", "broken pipe"},
    	{33, "EDOM", "numerical argument out of domain"},
    	{34, "ERANGE", "numerical result out of range"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/net/http_test.go

    	t.Setenv("HTTP2_READ_IDLE_TIMEOUT_SECONDS", "60")
    	if e, a := 60, readIdleTimeoutSeconds(); e != a {
    		t.Errorf("expected %d, got %d", e, a)
    	}
    
    	t.Setenv("HTTP2_READ_IDLE_TIMEOUT_SECONDS", "illegal value")
    	if e, a := 30, readIdleTimeoutSeconds(); e != a {
    		t.Errorf("expected %d, got %d", e, a)
    	}
    }
    
    func TestPingTimeoutSeconds(t *testing.T) {
    	t.Setenv("HTTP2_PING_TIMEOUT_SECONDS", "60")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:21:56 UTC 2023
    - 24.5K bytes
    - Viewed (0)
Back to top