Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 155 for chardata (0.13 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelPath.java

            char firstChar = name.charAt(0);
    
            if (INVALID_FIRST_CHAR_MATCHER.matches(firstChar)) {
                throw new InvalidNameException(String.format("Model element name '%s' has illegal first character '%s' (names must start with an ASCII letter or underscore).", name, firstChar));
            }
    
            for (int i = 1; i < name.length(); ++i) {
                char character = name.charAt(i);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/Describables.java

                @Override
                public String getCapitalizedDisplayName() {
                    StringBuilder result = asMutable();
                    result.setCharAt(0, Character.toUpperCase(result.charAt(0)));
                    return result.toString();
                }
    
                @Override
                public String getDisplayName() {
                    return asMutable().toString();
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

         */
        @Override
        public void setPath ( String path ) {
            if ( path.length() > 0 && path.charAt(0) == '\\' ) {
                path = path.substring(1);
            }
            // win8.1 returns ACCESS_DENIED if the trailing backslash is included
            if ( path.length() > 1 && path.charAt(path.length() - 1) == '\\' ) {
                path = path.substring(0, path.length() - 1);
            }
            this.name = path;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jun 01 09:52:11 UTC 2019
    - 14.3K bytes
    - Viewed (0)
  4. src/debug/elf/file.go

    			switch f.Class {
    			case ELFCLASS32:
    				var ch Chdr32
    				chdata := make([]byte, unsafe.Sizeof(ch))
    				if _, err := s.sr.ReadAt(chdata, 0); err != nil {
    					return nil, err
    				}
    				s.compressionType = CompressionType(bo.Uint32(chdata[unsafe.Offsetof(ch.Type):]))
    				s.Size = uint64(bo.Uint32(chdata[unsafe.Offsetof(ch.Size):]))
    				s.Addralign = uint64(bo.Uint32(chdata[unsafe.Offsetof(ch.Addralign):]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/base/JoinerTest.java

        }
      }
    
      private static class DontStringMeBro implements CharSequence {
        @Override
        public int length() {
          return 3;
        }
    
        @Override
        public char charAt(int index) {
          return "foo".charAt(index);
        }
    
        @Override
        public CharSequence subSequence(int start, int end) {
          return "foo".subSequence(start, end);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

            int shorterLength = shorter.length();
            if (longerLength < shorterLength) {
                return false;
            }
            for (int i = shorterLength; i > 0; i--) {
                if (longer.charAt(longerLength - i) != shorter.charAt(shorterLength - i)) {
                    return false;
                }
            }
            return true;
        }
    
        public static URI toSecureUrl(URI scriptUri) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/Dfs.java

                    if (_klen == key.length()) {
                        match = _key.equals(key);
                    } else if (_klen < key.length()) {
                        match = _key.regionMatches(0, key, 0, _klen) && key.charAt(_klen) == '\\';
                    }
    
                    if (match)
                        dr = (DfsReferral)referrals.map.get(_key);
                }
            }
    
            return dr;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.7K bytes
    - Viewed (0)
  8. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/HashCode.java

            }
    
            byte[] bytes = new byte[length / 2];
            for (int i = 0; i < length; i += 2) {
                int ch1 = decode(string.charAt(i)) << 4;
                int ch2 = decode(string.charAt(i + 1));
                bytes[i / 2] = (byte) (ch1 + ch2);
            }
    
            return fromBytes(bytes, SAFE_TO_REUSE_BYTES);
        }
    
        private static int decode(char ch) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 19:25:07 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/zz_generated.deepcopy.go

    		*out = make([]byte, len(*in))
    		copy(*out, *in)
    	}
    	if in.KeyData != nil {
    		in, out := &in.KeyData, &out.KeyData
    		*out = make([]byte, len(*in))
    		copy(*out, *in)
    	}
    	if in.CAData != nil {
    		in, out := &in.CAData, &out.CAData
    		*out = make([]byte, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExtenderTLSConfig.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 22:02:57 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  10. pkg/scheduler/apis/config/types.go

    	// KeyData takes precedence over KeyFile
    	KeyData []byte `datapolicy:"security-key"`
    	// CAData holds PEM-encoded bytes (typically read from a root certificates bundle).
    	// CAData takes precedence over CAFile
    	CAData []byte
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top