Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 201 for chardata (0.25 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/Names.java

                dirName.append(Character.toLowerCase(name.charAt(start)));
                dirName.append(name.substring(start + 1, end));
                dirName.append('/');
                if (start != 0 || end != 4 || !name.startsWith("main")) {
                    if (baseName.length() == 0) {
                        baseName.append(Character.toLowerCase(name.charAt(start)));
                        baseName.append(name.substring(start + 1, end));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/PerformanceExecutionGraphRenderer.java

        }
    
        default boolean hasData(MeasuredOperationList measuredOperations) {
            return !measuredOperations.getTotalTime().isEmpty();
        }
    
        default ExecutionGraph toExecutionGraph(PerformanceTestExecution execution, int index) {
            Line baseline = new Line(execution.getScenarios().stream().filter(this::hasData).findFirst().orElse(new MeasuredOperationList()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractUserClassFilePermissions.java

        }
    
        protected static boolean isRead(int unixNumeric) {
            return (unixNumeric & 4) >> 2 == 1;
        }
    
        protected static boolean isRead(String unixSymbolic) {
            char symbol = unixSymbolic.charAt(0);
            if (symbol == 'r') {
                return true;
            } else if (symbol == '-') {
                return false;
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. src/internal/trace/raw/writer.go

    		}
    	}
    
    	// Write out the length of the data.
    	if spec.HasData {
    		w.buf = binary.AppendUvarint(w.buf, uint64(len(e.Data)))
    	}
    
    	// Write out varint events.
    	_, err := w.w.Write(w.buf)
    	w.buf = w.buf[:0]
    	if err != nil {
    		return err
    	}
    
    	// Write out data.
    	if spec.HasData {
    		_, err := w.w.Write(e.Data)
    		return err
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParser.java

                return pos < value.length() && value.charAt(pos) == c;
            }
    
            /**
             * Is one of the given character available? Does not consume the character.
             */
            public boolean hasAny(String chars) {
                if (pos >= value.length()) {
                    return false;
                }
                char ch = value.charAt(pos);
                for (int i = 0; i < chars.length(); i++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java

                return idx < expression.length() ? expression.charAt(idx) : EOF;
            }
    
            public int skipChar() {
                return idx < expression.length() ? expression.charAt(idx++) : EOF;
            }
    
            public String nextToken(char delimiter) {
                int start = idx;
    
                while (idx < expression.length() && delimiter != expression.charAt(idx)) {
                    idx++;
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. security/pkg/k8s/chiron/utils.go

    // 4. Clean up the artifacts (e.g., delete CSR)
    func SignCSRK8s(client clientset.Interface, csrData []byte, signerName string, usages []cert.KeyUsage,
    	dnsName, caFilePath string, approveCsr, appendCaCert bool, requestedLifetime time.Duration,
    ) ([]byte, []byte, error) {
    	// 1. Submit the CSR
    	csr, err := submitCSR(client, csrData, signerName, usages, requestedLifetime)
    	if err != nil {
    		return nil, nil, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 18:11:22 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(CharData).Copy", Method, 0},
    		{"(Comment).Copy", Method, 0},
    		{"(Directive).Copy", Method, 0},
    		{"(ProcInst).Copy", Method, 0},
    		{"(StartElement).Copy", Method, 0},
    		{"(StartElement).End", Method, 2},
    		{"(UnmarshalError).Error", Method, 0},
    		{"Attr", Type, 0},
    		{"Attr.Name", Field, 0},
    		{"Attr.Value", Field, 0},
    		{"CharData", Type, 0},
    		{"Comment", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_base.h

    class CalibrationStatisticsCollectorBase {
     public:
      // Collect data for calibration.
      virtual void Collect(float min, float max,
                           absl::Span<const int64_t> histogram) = 0;
    
      virtual void ClearData() = 0;
      // Return the statistics needed for a given calibration method.
      virtual std::optional<CalibrationStatistics> GetStatistics() const = 0;
      virtual ~CalibrationStatisticsCollectorBase() = default;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 03:57:26 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. src/internal/trace/event/event.go

    	// otherwise aren't actually surfaced by the trace reader.
    	IsTimedEvent bool
    
    	// HasData is true if the event has trailer consisting of a
    	// varint length followed by unencoded bytes of some data.
    	//
    	// An event may not be both a timed event and have data.
    	HasData bool
    
    	// IsStack indicates that the event represents a complete
    	// stack trace. Specifically, it means that after the arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top