Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 187 for isLegal (0.27 sec)

  1. src/go/printer/printer.go

    	impliedSemi  bool         // if set, a linebreak implies a semicolon
    	lastTok      token.Token  // last token printed (token.ILLEGAL if it's whitespace)
    	prevOpen     token.Token  // previous non-brace "open" token (, [, or token.ILLEGAL
    	wsbuf        []whiteSpace // delayed white space
    	goBuild      []int        // start index of all //go:build comments in output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/events/v1beta1/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)
  3. src/encoding/xml/xml_test.go

    	}
    }
    
    var characterTests = []struct {
    	in  string
    	err string
    }{
    	{"\x12<doc/>", "illegal character code U+0012"},
    	{"<?xml version=\"1.0\"?>\x0b<doc/>", "illegal character code U+000B"},
    	{"\xef\xbf\xbe<doc/>", "illegal character code U+FFFE"},
    	{"<?xml version=\"1.0\"?><doc>\r\n<hiya/>\x07<toots/></doc>", "illegal character code U+0007"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. src/syscall/tables_js.go

    	ENOTTY          Errno = 25      /* Not a typewriter */
    	EFBIG           Errno = 27      /* File too large */
    	ENOSPC          Errno = 28      /* No space left on device */
    	ESPIPE          Errno = 29      /* Illegal seek */
    	EROFS           Errno = 30      /* Read-only file system */
    	EMLINK          Errno = 31      /* Too many links */
    	EPIPE           Errno = 32      /* Broken pipe */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
  5. src/net/http/cookiejar/jar.go

    		e.SameSite = "SameSite=Strict"
    	case http.SameSiteLaxMode:
    		e.SameSite = "SameSite=Lax"
    	}
    
    	return e, false, nil
    }
    
    var (
    	errIllegalDomain   = errors.New("cookiejar: illegal cookie domain attribute")
    	errMalformedDomain = errors.New("cookiejar: malformed cookie domain attribute")
    )
    
    // endOfTime is the time when session (non-persistent) cookies expire.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.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
    - 34.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

            for (V v : src) {
                if (failOnNull && v == null) {
                    throw new IllegalArgumentException("Illegal null value provided in this collection: " + src);
                }
                dest.add(v);
            }
            return dest;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top