Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 82 for inputs_ (0.51 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            }
    
            //
            // Builder, concurrency and parallelism
            //
            // We preserve the existing methods for builder selection which is to look for various inputs in the threading
            // configuration. We don't have an easy way to allow a pluggable builder to provide its own configuration
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. src/math/big/int_test.go

    		arg := a
    		testFunZZ(t, "MulZZ", MulZZ, arg)
    
    		arg = argZZ{a.z, a.y, a.x}
    		testFunZZ(t, "MulZZ symmetric", MulZZ, arg)
    	}
    }
    
    // mulBytes returns x*y via grade school multiplication. Both inputs
    // and the result are assumed to be in big-endian representation (to
    // match the semantics of Int.Bytes and Int.SetBytes).
    func mulBytes(x, y []byte) []byte {
    	z := make([]byte, len(x)+len(y))
    
    	// multiply
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

          (BinaryOp (TFL_ReshapeOp:$lhs $input1, (Arith_ConstantOp:$shape1 $s1)),
                    (TFL_ReshapeOp:$rhs $input2, (Arith_ConstantOp:$shape2 $s2))),
          (TFL_ReshapeOp (BinaryOp $input1, $input2), $shape1),
          [(IsTailOfShape $rhs, $lhs),
           (IsTailOfShape $lhs, $rhs),
           (IsTailOfShape $input1, $input2),
           (IsTailOfShape $input2, $input1),
           (SameElementType $input1, $input2)]>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    === TestNG parameterized methods and reporting
    
    TestNG supports http://testng.org/doc/documentation-main.html#parameters[parameterizing test methods], allowing a particular test method to be executed multiple times with different inputs. Gradle includes the parameter values in its reporting of the test method execution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  5. src/bytes/bytes_test.go

    		[]byte("short"),
    		[]byte(strings.Repeat("a", 42)),
    	}
    	for _, input := range cloneTests {
    		clone := Clone(input)
    		if !Equal(clone, input) {
    			t.Errorf("Clone(%q) = %q; want %q", input, clone, input)
    		}
    
    		if input == nil && clone != nil {
    			t.Errorf("Clone(%#v) return value should be equal to nil slice.", input)
    		}
    
    		if input != nil && clone == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    func (c *piController) next(input, setpoint, period float64) (float64, bool) {
    	// Compute the raw output value.
    	prop := c.kp * (setpoint - input)
    	rawOutput := prop + c.errIntegral
    
    	// Clamp rawOutput into output.
    	output := rawOutput
    	if isInf(output) || isNaN(output) {
    		// The input had a large enough magnitude that either it was already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm_ppc64le.s

     *
     *                                                                *Mi obra de arte de siglo XXI @vpaprots
     *
     *
     * First group is special, doesn't get the two inputs:
     *                                             +--------+--------+<-+
     *                                     +-------|  ADD2  |  ADD1  |--|-----+
     *                                     |       +--------+--------+  |     |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. cmd/object-api-multipart_test.go

    			UploadIDMarker: uploadIDs[5],
    		},
    	}
    
    	// Collection of non-exhaustive ListMultipartUploads test cases, valid errors
    	// and success responses.
    	testCases := []struct {
    		// Inputs to ListMultipartUploads.
    		bucket         string
    		prefix         string
    		keyMarker      string
    		uploadIDMarker string
    		delimiter      string
    		maxUploads     int
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  9. src/encoding/json/decode_test.go

    	}
    }
    
    func TestEscape(t *testing.T) {
    	const input = `"foobar"<html>` + " [\u2028 \u2029]"
    	const want = `"\"foobar\"\u003chtml\u003e [\u2028 \u2029]"`
    	got, err := Marshal(input)
    	if err != nil {
    		t.Fatalf("Marshal error: %v", err)
    	}
    	if string(got) != want {
    		t.Errorf("Marshal(%#q):\n\tgot:  %s\n\twant: %s", input, got, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. cmd/iam.go

    				iamLogIf(ctx, nerr.Err)
    			}
    		}
    	}
    
    	return nil
    }
    
    // CurrentPolicies - returns comma separated policy string, from
    // an input policy after validating if there are any current
    // policies which exist on MinIO corresponding to the input.
    func (sys *IAMSys) CurrentPolicies(policyName string) string {
    	if !sys.Initialized() {
    		return ""
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top