Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for GetData (0.2 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/Line.java

                .collect(Collectors.toList());
        }
    
        public String getLabel() {
            return label;
        }
    
        public List<List<Number>> getData() {
            return data;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/ScriptRunner.java

         *
         * @return the script.
         */
        T getScript();
    
        /**
         * Returns the data extracted at compilation time.
         */
        M getData();
    
        /**
         * Returns true when the script will run some code when executed. Returns false for a script whose `run()` method is effectively empty.
         */
        boolean getRunDoesSomething();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 18 00:05:45 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/ioctl/SrvPipePeekResponse.java

         * @return the totalBytesWritten
         */
        public int getMessageLength () {
            return this.messageLength;
        }
    
    
        /**
         * @return the totalBytesWritten
         */
        public byte[] getData () {
            return this.data;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see Decodable#decode(byte[], int, int)
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/eventspy/EventSpy.java

            /**
             * Gets key-value pairs providing information about the Maven runtime.
             *
             * @return The key-value pairs, never {@code null}.
             */
            Map<String, Object> getData();
        }
    
        /**
         * Initializes the spy.
         *
         * @param context The event spy context, never {@code null}.
         */
        void init(Context context) throws Exception;
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/com/SmbComReadAndXResponse.java

        }
    
    
        void setParam ( byte[] b, int off ) {
            this.data = b;
            this.offset = off;
        }
    
    
        /**
         * 
         * @return the read data
         */
        public final byte[] getData () {
            return this.data;
        }
    
    
        /**
         * @return the offset
         */
        public final int getOffset () {
            return this.offset;
        }
    
    
        /**
         * @param n
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

        const togglePlot = function (chartId, label) {
            const plot = plots[chartId];
            const plotData = plot.getData();
            $.each(plotData, function (index, value) {
                if (value.label == label) {
                    value.points.show = value.lines.show = !value.lines.show;
                }
            });
            plot.setData(plotData);
            plot.draw();
        };
    
        function renderGraphs(allDataJson, charts) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/plugins/TestSuiteDefinitionIntegrationSpec.groovy

        ComponentSpec testedComponent
    
        void testing(ComponentSpec component) { this.testedComponent = component }
    }
    
    interface CustomTestBinary extends TestSuiteBinarySpec {
        String getData()
    }
    
    class DefaultCustomTestBinary extends BaseBinarySpec implements CustomTestBinary {
        TestSuiteSpec testSuite
        BinarySpec testedBinary
        String data
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. pkg/kubelet/winstats/perfcounters_test.go

    			if tc.skipCheck {
    				return
    			}
    
    			// Wait until we get a non-zero perf counter data.
    			if pollErr := wait.Poll(100*time.Millisecond, 5*perfCounterUpdatePeriod, func() (bool, error) {
    				data, err := counter.getData()
    				if err != nil {
    					return false, err
    				}
    
    				if data != 0 {
    					return true, nil
    				}
    
    				return false, nil
    			}); pollErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/FileLockCommunicator.java

                throw new GracefullyStoppedException();
            }
        }
    
        public FileLockPacketPayload decode(DatagramPacket receivedPacket) {
            try {
                return FileLockPacketPayload.decode(receivedPacket.getData(), receivedPacket.getLength());
            } catch (IOException e) {
                if (!stopped) {
                    throw new RuntimeException(e);
                }
                throw new GracefullyStoppedException();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XmlUtil.java

        }
    
        public static Map<String, Object> getDataMap(final AccessResultData<?> accessResultData) {
            // create input source
            final InputSource is = new InputSource(new ByteArrayInputStream(accessResultData.getData()));
            if (StringUtil.isNotBlank(accessResultData.getEncoding())) {
                is.setEncoding(accessResultData.getEncoding());
            }
    
            // create handler
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top