Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for determinant (0.24 sec)

  1. test/torture.go

    		uint64(s[10]))<<4|
    		uint64(s[11]))<<4|
    		uint64(s[12]))<<4|
    		uint64(s[13]))<<4|
    		uint64(s[14]))<<4 |
    		uint64(s[15]))
    	return r
    }
    
    // Compute the determinant of a 4x4-matrix by the sum
    // over all index permutations.
    func determinant(m [4][4]float64) float64 {
    	return m[0][0]*m[1][1]*m[2][2]*m[3][3] -
    		m[0][0]*m[1][1]*m[2][3]*m[3][2] -
    		m[0][0]*m[1][2]*m[2][1]*m[3][3] +
    		m[0][0]*m[1][2]*m[2][3]*m[3][1] +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 01 07:20:51 UTC 2014
    - 7.7K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java

    @Experimental
    public interface DependencyResolver extends Service {
    
        /**
         * Collects the transitive dependencies of some artifacts and builds a dependency graph. Note that this operation is
         * only concerned about determining the coordinates of the transitive dependencies and does not actually resolve the
         * artifact files.
         *
         * @param session the {@link Session}, must not be {@code null}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/main/java/org/gradle/internal/problems/failure/StackTraceClassifier.java

    package org.gradle.internal.problems.failure;
    
    import javax.annotation.Nullable;
    
    /**
     * Classifies stack frames by their {@link StackTraceRelevance relevance}.
     * <p>
     * Classifiers are meant to be heuristic, determining the relevance on the best-effort basis.
     */
    public interface StackTraceClassifier {
    
        StackTraceClassifier USER_CODE = new StackTraceClassifier() {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:52:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. src/cmd/internal/metadata/main.go

    	fmt.Printf("# GOARCH: %s\n", runtime.GOARCH)
    	fmt.Printf("# CPU: %s\n", sysinfo.CPUName())
    
    	fmt.Printf("# GOOS: %s\n", runtime.GOOS)
    	ver, err := osinfo.Version()
    	if err != nil {
    		ver = fmt.Sprintf("UNKNOWN: error determining OS version: %v", err)
    	}
    	fmt.Printf("# OS Version: %s\n", ver)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 21:40:36 UTC 2023
    - 876 bytes
    - Viewed (0)
  5. cmd/kube-apiserver/app/options/completion.go

    		primaryServiceIPRange, apiServerServiceIP, err = controlplane.ServiceIPRange(primaryServiceClusterCIDR)
    		if err != nil {
    			return net.IP{}, net.IPNet{}, net.IPNet{}, fmt.Errorf("error determining service IP ranges: %v", err)
    		}
    		return apiServerServiceIP, primaryServiceIPRange, net.IPNet{}, nil
    	}
    
    	_, primaryServiceClusterCIDR, err := netutils.ParseCIDRSloppy(serviceClusterIPRangeList[0])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 26 19:50:38 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/networking/v1beta1/well_known_annotations.go

    	// class specified will be assigned this default class.
    	AnnotationIsDefaultIngressClass = "ingressclass.kubernetes.io/is-default-class"
    
    	// AnnotationIngressClass indicates the class of an Ingress to be used when
    	// determining which controller should implement the Ingress. Use of this
    	// annotation is deprecated. The Ingress class field should be used instead
    	// of this annotation.
    	// +deprecated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 02 02:17:09 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionAnalyzer.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.execution;
    
    import java.util.Optional;
    
    /**
     * Instances of this class are responsible for determining whether it makes sense to "resume" a build (i.e., using
     * the {@code --resume} flag.
     */
    public interface BuildResumptionAnalyzer {
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. releasenotes/notes/disable-host-header-fallback.yaml

      configuration.
    upgradeNotes:
      - title: Host header fallback disabled by default for Prometheus metrics for *all* inbound traffic.
        content: |
          Host header fallback for determining values for Prometheus `destination_service` labels has been disabled for all incoming traffic.
          Previously, this was disabled *only* for traffic arriving at Gateways. If you are relying on host header fallback behavior to properly
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 22 19:40:45 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/cycles4.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    import "unsafe"
    
    // Check that all methods of T are collected before
    // determining the result type of m (which embeds
    // all methods of T).
    
    type T interface {
    	m() interface {T}
    	E
    }
    
    var _ int = T.m(nil).m().e()
    
    type E interface {
    	e() int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

    //   1) Inserting the @main function, which will become the main Graph.
    //   2) Duplicating shape-determining constants.
    //   3) Converting TF dialect -> tf_executor dialect.
    //   4) Adding initializer function's ops into @main function for correct
    //      resource initialization when loading the exported model.
    //
    // Duplicating shape-determining constants is required to place constants that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top