Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 442 for redirection (0.24 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.mylasta.direction;
    
    import org.lastaflute.core.direction.ObjectiveConfig;
    import org.lastaflute.core.direction.exception.ConfigPropertyNotFoundException;
    
    /**
     * @author FreeGen
     */
    public interface FessEnv {
    
        /** The key of the configuration. e.g. warm */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/KotlinCompiler.kt

    private
    inline fun <T> redirectingOutputTo(noinline outputStream: () -> OutputStream, action: () -> T): T =
        redirecting(System.err, System::setErr, outputStream()) {
            redirecting(System.out, System::setOut, outputStream()) {
                action()
            }
        }
    
    
    private
    inline fun <T> redirecting(
        stream: PrintStream,
        set: (PrintStream) -> Unit,
        to: OutputStream,
        action: () -> T
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 31 08:46:17 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. src/encoding/gob/gobencdec_test.go

    	if err != nil {
    		t.Fatal("decode error:", err)
    	}
    	for i, v := range x.A.a {
    		if v != byte(i) {
    			t.Errorf("expected %x got %x", byte(i), v)
    			break
    		}
    	}
    }
    
    // Test an indirection to a large field with methods.
    func TestGobEncoderIndirectArrayField(t *testing.T) {
    	b := new(bytes.Buffer)
    	enc := NewEncoder(b)
    	var a GobTestIndirectArrayEncDec
    	a.X = 17
    	var array ArrayStruct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/replica_calculator.go

    		// or if the new usage ratio would cause a change in scale direction
    		return currentReplicas, usage, nil
    	}
    
    	newReplicas := int32(math.Ceil(newUsageRatio * float64(len(metrics))))
    	if (newUsageRatio < 1.0 && newReplicas > currentReplicas) || (newUsageRatio > 1.0 && newReplicas < currentReplicas) {
    		// return the current replicas if the change of metrics length would cause a change in scale direction
    		return currentReplicas, usage, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/math/MathTesting.java

            fractionalBuilder.add(d * scale).add(-d * scale);
          }
        }
        for (int i = Double.MIN_EXPONENT; i <= Double.MAX_EXPONENT; i++) {
          for (int direction : new int[] {1, -1}) {
            double d = Double.longBitsToDouble(Double.doubleToLongBits(Math.scalb(1.0, i)) + direction);
            // Math.nextUp/nextDown
            if (d != Math.rint(d)) {
              fractionalBuilder.add(d);
            }
          }
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    //===----------------------------------------------------------------------===//
    
    class DirectComparePat<Op FromOp, CHLO_ComparisonDirectionValue direction>
      : Pat<(FromOp AnyTensor:$l, AnyTensor:$r),
            (CHLO_BroadcastCompareOp
               $l, $r, (BinBroadcastDimensions $l, $r), direction,
               (CHLO_DEFAULT_COMPARISON_TYPE))>;
    
    def : DirectComparePat<TF_GreaterOp, CHLO_ComparisonDirectionValue<"GT">>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/Network.java

       */
      Set<N> adjacentNodes(N node);
    
      /**
       * Returns a live view of all nodes in this network adjacent to {@code node} which can be reached
       * by traversing {@code node}'s incoming edges <i>against</i> the direction (if any) of the edge.
       *
       * <p>In an undirected network, this is equivalent to {@link #adjacentNodes(Object)}.
       *
       * <p>If {@code node} is removed from the network after this method is called, the `Set` returned
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/graph/Network.java

       */
      Set<N> adjacentNodes(N node);
    
      /**
       * Returns a live view of all nodes in this network adjacent to {@code node} which can be reached
       * by traversing {@code node}'s incoming edges <i>against</i> the direction (if any) of the edge.
       *
       * <p>In an undirected network, this is equivalent to {@link #adjacentNodes(Object)}.
       *
       * <p>If {@code node} is removed from the network after this method is called, the `Set` returned
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. guava-testlib/test/com/google/common/testing/ArbitraryInstancesTest.java

        assertThat(ArbitraryInstances.get(String[].class)).isEmpty();
      }
    
      public void testGet_enum() {
        assertNull(ArbitraryInstances.get(EmptyEnum.class));
        assertEquals(Direction.UP, ArbitraryInstances.get(Direction.class));
      }
    
      public void testGet_interface() {
        assertNull(ArbitraryInstances.get(SomeInterface.class));
      }
    
      public void testGet_runnable() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  10. pkg/apis/autoscaling/types.go

    type ScalingPolicySelect string
    
    const (
    	// MaxPolicySelect selects the policy with the highest possible change.
    	MaxPolicySelect ScalingPolicySelect = "Max"
    	// MinPolicySelect selects the policy with the lowest possible change.
    	MinPolicySelect ScalingPolicySelect = "Min"
    	// DisabledPolicySelect disables the scaling in this direction.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 23.8K bytes
    - Viewed (0)
Back to top