Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1041 - 1050 of 6,799 for _return (0.05 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/execution/BuildResumptionData.java

            this.remainingProjects = remainingProjects;
        }
    
        /**
         * Returns the projects that still need to be built when resuming.
         * @return A list containing the group and artifact id of the projects.
         */
        public List<String> getRemainingProjects() {
            return this.remainingProjects;
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. cmd/bucket-replication-metrics.go

    		sma:     newSMA(50),
    	}
    }
    
    func (rx *XferStats) String() string {
    	return fmt.Sprintf("curr=%f avg=%f, peak=%f", rx.curr(), rx.Avg, rx.Peak)
    }
    
    func (rx *XferStats) curr() float64 {
    	if rx.measure == nil {
    		return 0.0
    	}
    	return rx.measure.getExpMovingAvgBytesPerSecond()
    }
    
    func (rx *XferStats) merge(o XferStats) XferStats {
    	curr := calcAvg(rx.curr(), o.curr(), rx.N, o.N)
    	peak := rx.Peak
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. helm/minio/templates/_helpers.tpl

      {{- end -}}
    {{- end -}}
    
    {{/*
    Return the appropriate apiVersion for deployment.
    */}}
    {{- define "minio.deployment.apiVersion" -}}
      {{- if semverCompare "<1.9-0" .Capabilities.KubeVersion.Version -}}
        {{- print "apps/v1beta2" -}}
      {{- else -}}
        {{- print "apps/v1" -}}
      {{- end -}}
    {{- end -}}
    
    {{/*
    Return the appropriate apiVersion for statefulset.
    */}}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/primitives/FloatArrayAsListTest.java

        protected abstract List<Float> create(Float[] elements);
    
        @Override
        public Float[] createArray(int length) {
          return new Float[length];
        }
    
        /** Returns the original element list, unchanged. */
        @Override
        public List<Float> order(List<Float> insertionOrder) {
          return insertionOrder;
        }
      }
    
      public static class SampleFloats extends SampleElements<Float> {
        public SampleFloats() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/StandardMutableNetwork.java

      @Override
      @CanIgnoreReturnValue
      public boolean addNode(N node) {
        checkNotNull(node, "node");
    
        if (containsNode(node)) {
          return false;
        }
    
        addNodeInternal(node);
        return true;
      }
    
      /**
       * Adds {@code node} to the graph and returns the associated {@link NetworkConnections}.
       *
       * @throws IllegalStateException if {@code node} is already present
       */
      @CanIgnoreReturnValue
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/primitives/FloatArrayAsListTest.java

        protected abstract List<Float> create(Float[] elements);
    
        @Override
        public Float[] createArray(int length) {
          return new Float[length];
        }
    
        /** Returns the original element list, unchanged. */
        @Override
        public List<Float> order(List<Float> insertionOrder) {
          return insertionOrder;
        }
      }
    
      public static class SampleFloats extends SampleElements<Float> {
        public SampleFloats() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/primitives/IntArrayAsListTest.java

        @Override
        public Integer[] createArray(int length) {
          return new Integer[length];
        }
    
        /** Returns the original element list, unchanged. */
        @Override
        public List<Integer> order(List<Integer> insertionOrder) {
          return insertionOrder;
        }
      }
    
      public static class SampleIntegers extends SampleElements<Integer> {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/Request.kt

         *
         * @throws IllegalArgumentException if [url] is not a valid HTTP or HTTPS URL. Avoid this
         *     exception by calling [HttpUrl.parse]; it returns null for invalid URLs.
         */
        open fun url(url: String): Builder {
          return url(canonicalUrl(url).toHttpUrl())
        }
    
        /**
         * Sets the URL target of this request.
         *
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Apr 06 04:17:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/LineBufferTest.java

          lines.add(line);
        }
        return lines;
      }
    
      // Returns a Readable that is *not* a Reader.
      private static Readable getChunkedReadable(String input, int chunk) {
        final Reader reader = getChunkedReader(input, chunk);
        return new Readable() {
          @Override
          public int read(CharBuffer cbuf) throws IOException {
            return reader.read(cbuf);
          }
        };
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/io/LineBufferTest.java

          lines.add(line);
        }
        return lines;
      }
    
      // Returns a Readable that is *not* a Reader.
      private static Readable getChunkedReadable(String input, int chunk) {
        final Reader reader = getChunkedReader(input, chunk);
        return new Readable() {
          @Override
          public int read(CharBuffer cbuf) throws IOException {
            return reader.read(cbuf);
          }
        };
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top