Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 45 for chardata (0.36 sec)

  1. prow/lib.sh

        CA_DATA=$(kubectl get secret "${SECRET_NAME}" -n istio-system-multi -o "jsonpath={.data['ca\\.crt']}")
        TOKEN=$(kubectl get secret "${SECRET_NAME}" -n istio-system-multi -o "jsonpath={.data['token']}" | base64 --decode)
    
        cat <<EOF > "${filename}"
          apiVersion: v1
          clusters:
             - cluster:
                 certificate-authority-data: ${CA_DATA}
                 server: ${SERVER}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/cmd/gotraceeventstats/main.go

    func encodedSize(e *raw.Event) int {
    	size := 1
    	var buf [binary.MaxVarintLen64]byte
    	for _, arg := range e.Args {
    		size += binary.PutUvarint(buf[:], arg)
    	}
    	spec := e.Version.Specs()[e.Ev]
    	if spec.HasData {
    		size += binary.PutUvarint(buf[:], uint64(len(e.Data)))
    		size += len(e.Data)
    	}
    	return size
    }
    
    type countingReader struct {
    	io.Reader
    	bytesRead int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:29 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

                }
                for (int i = prefixLength - 1, j = endOfThisSegment - 1; i >= 0; i--, j--) {
                    if (prefix.charAt(i) != filePath.charAt(j)) {
                        return false;
                    }
                }
                return endOfThisSegment == pathLength || filePath.charAt(endOfThisSegment) == File.separatorChar;
            }
    
            boolean contains(String filePath, int offset) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/internal/trace/raw/reader.go

    			frame, err := r.readArgs(4)
    			if err != nil {
    				return Event{}, err
    			}
    			args = append(args, frame...)
    		}
    	}
    	var data []byte
    	if spec.HasData {
    		data, err = r.readData()
    		if err != nil {
    			return Event{}, err
    		}
    	}
    	return Event{
    		Version: r.v,
    		Ev:      ev,
    		Args:    args,
    		Data:    data,
    	}, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/internal/trace/raw/doc.go

    within. Note: an explicit argument for the length is elided, because it's
    just the length of the unquoted string.
    
    For example:
    
    	String id=5
    		data="hello world\x00"
    
    These events are identified in their spec by the HasData flag.
    
    The second special case consists of stack events. These events are identified
    by the IsStack flag. These events also have a trailing unsigned integer argument
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/internal/jvm/JavaVersionParser.java

        }
    
        private static int findFirstNonVersionCharIndex(String s) {
            assertTrue(s, !s.isEmpty());
    
            for (int i = 0; i < s.length(); ++i) {
                if (!isDigitOrPeriod(s.charAt(i))) {
                    assertTrue(s, i != 0);
                    return i;
                }
            }
    
            return s.length();
        }
    
        private static boolean isDigitOrPeriod(char c) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/net/HttpHeadersTest.java

          return specialCases.get(constantName);
        }
        List<String> parts = Lists.newArrayList();
        for (String part : SPLITTER.split(constantName)) {
          if (!uppercaseAcronyms.contains(part)) {
            part = part.charAt(0) + Ascii.toLowerCase(part.substring(1));
          }
          parts.add(part);
        }
        return JOINER.join(parts);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:08:08 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationMessageBuilder.java

            while (sb.length() > 0 && sb.charAt(sb.length() - 1) == DASH) {
                sb.setLength(sb.length() - 1);
            }
        }
    
        private static CharSequence createDashedId(String id) {
            StringBuilder cleanId = new StringBuilder();
            boolean previousWasDash = false;
            for (int i = 0; i < id.length(); i++) {
                char c = id.charAt(i);
                if (Character.isLetter(c)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top