Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 5,555 for casi (0.08 sec)

  1. src/math/cmplx/sin.go

    //    IEEE      -10,+10     30000       3.8e-16     1.0e-16
    // Also tested by csin(casin(z)) = z.
    
    // Sin returns the sine of x.
    func Sin(x complex128) complex128 {
    	switch re, im := real(x), imag(x); {
    	case im == 0 && (math.IsInf(re, 0) || math.IsNaN(re)):
    		return complex(math.NaN(), im)
    	case math.IsInf(im, 0):
    		switch {
    		case re == 0:
    			return x
    		case math.IsInf(re, 0) || math.IsNaN(re):
    			return complex(math.NaN(), im)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  2. misc/wasm/go_wasip1_wasm_exec

    #!/usr/bin/env bash
    # Copyright 2023 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    case "$GOWASIRUNTIME" in
    	"wasmedge")
    		exec wasmedge --dir=/ --env PWD="$PWD" --env PATH="$PATH" ${GOWASIRUNTIMEARGS:-} "$1" "${@:2}"
    		;;
    	"wasmer")
    		exec wasmer run --dir=/ --env PWD="$PWD" --env PATH="$PATH" ${GOWASIRUNTIMEARGS:-} "$1" -- "${@:2}"
    		;;
    	"wazero")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 17:09:10 UTC 2024
    - 797 bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultProvider.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.provider;
    
    import org.gradle.internal.Cast;
    import org.gradle.internal.UncheckedException;
    
    import javax.annotation.Nullable;
    import java.lang.reflect.ParameterizedType;
    import java.lang.reflect.Type;
    import java.util.concurrent.Callable;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/BuildScopeInMemoryCachingScriptClassCompiler.java

    import org.gradle.groovy.scripts.ScriptSource;
    import org.gradle.internal.Cast;
    
    import java.util.HashMap;
    import java.util.Map;
    
    /**
     * This in-memory cache is responsible for caching compiled build scripts during a build.
     * If the compiled script is not found in this cache, it will try to find it in the global cache,
     * which will use the delegate script class compiler in case of a miss. The lookup in this cache is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 16:35:08 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.td

       // 2. The einsum is not created by the convert function itself.
       // 3. Both inputs are int32 tensor.
       // 4. Both inputs have the graph ancestor of either const-(sub), or cast-sub.
       // 5. The type of the const tensor (or input of the cast operation) is int8.
       (IsEinsumOpSupported $einsum, $args, $equation)],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/PreferJavaRuntimeVariant.java

        public DisambiguationRule<Object> disambiguationRules(Attribute<?> attribute) {
            if (Usage.USAGE_ATTRIBUTE.equals(attribute)) {
                return Cast.uncheckedCast(usageDisambiguationRule);
            }
            if (LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE.equals(attribute)) {
                return Cast.uncheckedCast(formatDisambiguationRule);
            }
            return super.disambiguationRules(attribute);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/ExceptionPlaceholder.java

                            int index = placeholder.getIndex();
                            switch (placeholder.getKind()) {
                                case cause:
                                    return causes.get(index);
                                case suppressed:
                                    return suppressed.get(index);
                            }
                        }
                        return obj;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor.go

    				//      "kind". UnstructuredJSONScheme returns an error in either
    				//      case.
    				//
    				// UnstructuredJSONScheme's behavior is replicated here.
    				var items []interface{}
    				if uncast, present := content["items"]; present {
    					var cast bool
    					items, cast = uncast.([]interface{})
    					if !cast {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

             * the IP address as a 'Subject Alternative Name' which was deemed far too complicated for our test
             * use case.
             *
             * Additionally, in the rare case that a user or a plugin author truly needs to test with a localhost
             * server, they can use http://127.0.0.1
             */
            if ("127.0.0.1".equals(url.getHost())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/NullnessCasts.java

       * addressed by this method is the case in which {@code T} has parametric nullness -- and thus its
       * value may be legitimately {@code null}.)
       */
      @SuppressWarnings("nullness")
      @ParametricNullness
      static <T extends @Nullable Object> T uncheckedCastNullableTToT(@CheckForNull T t) {
        return t;
      }
    
      /**
       * Returns {@code null} cast to any type.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 10 20:36:34 UTC 2022
    - 3.9K bytes
    - Viewed (0)
Back to top