Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for getZ (0.1 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        auto l = mlir::dyn_cast<TypedValue<RankedTensorType>>(op.getX());
        auto r = mlir::dyn_cast<TypedValue<RankedTensorType>>(op.getY());
        if (!l || !r) return failure();
    
        auto element_type = getElementTypeOrSelf(l.getType());
        if (!element_type.isBF16()) return failure();
    
        auto out_type = op.getZ().getType();
    
        l = rewriter.create<ConvertOp>(op.getLoc(), l, rewriter.getF32Type());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java

         */
        @Nonnull
        String getProjectId();
    
        /**
         * Gets the POM file from which the project was built.
         *
         * @return the optional POM file
         */
        @Nonnull
        Optional<Path> getPomFile();
    
        /**
         * Gets the project that was built.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

     */
    @Experimental
    public interface DependencyResolverResult {
    
        /**
         * Gets the exceptions that occurred while building the dependency graph.
         *
         * @return the exceptions that occurred, never {@code null}
         */
        @Nonnull
        List<Exception> getExceptions();
    
        /**
         * Gets the root node of the dependency graph.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

        public val INT: KaType
            get() = int
    
        public abstract val long: KaType
    
        @Deprecated("Use 'long' instead.", replaceWith = ReplaceWith("long"))
        public val LONG: KaType
            get() = long
    
        public abstract val short: KaType
    
        @Deprecated("Use 'short' instead.", replaceWith = ReplaceWith("short"))
        public val SHORT: KaType
            get() = short
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        @Nonnull
        Instant getStartTime();
    
        /**
         * Gets the directory of the topmost project being built, usually the current directory or the
         * directory pointed at by the {@code -f/--file} command line argument.
         */
        @Nonnull
        Path getTopDirectory();
    
        /**
         * Gets the root directory of the session, which is the root directory for the top directory project.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/types.go

    	// - Delete: delete events could be triggered by:
    	//           - a Pod that is deleted
    	//           - a Pod that was assumed, but gets un-assumed due to some errors in the binding cycle.
    	//           - an existing Pod that was unscheduled but gets scheduled to a Node.
    	//
    	// Note that the Pod event type includes the events for the unscheduled Pod itself.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    	tests := []struct {
    		name         string
    		pod          *v1.Pod
    		nodes        []*v1.Node
    		expectedList framework.NodeScoreList
    	}{
    		// basic test case
    		{
    			name: "node with taints tolerated by the pod, gets a higher score than those node with intolerable taints",
    			pod: podWithTolerations("pod1", []v1.Toleration{{
    				Key:      "foo",
    				Operator: v1.TolerationOpEqual,
    				Value:    "bar",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/test/groovy/org/gradle/StartParameterTest.groovy

            newParameter.currentDir == new File(System.getProperty("user.dir")).getCanonicalFile()
            !newParameter.dryRun
            assertThat(newParameter, isSerializable())
        }
    
        void "gets all init scripts"() {
            def gradleUserHomeDir = tmpDir.testDirectory.createDir("gradleUserHomeDie")
            def gradleHomeDir = tmpDir.testDirectory.createDir("gradleHomeDir")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

         */
        public void setDependencyCollectionRequired(String requiresDependencyCollection) {
            this.dependencyCollectionRequired = requiresDependencyCollection;
        }
    
        /**
         * Gets the scope of (transitive) dependencies that should be collected. Dependency collection refers to the process
         * of calculating the complete dependency tree in terms of artifact coordinates. In contrast to dependency
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. pkg/security/security.go

    	// GkeWorkloadCertChainFilePath is the well-known path for the GKE workload certificate chain file.
    	// Quoted from https://cloud.google.com/traffic-director/docs/security-proxyless-setup#create-service:
    	// "On creation, each Pod gets a volume at /var/run/secrets/workload-spiffe-credentials."
    	GkeWorkloadCertChainFilePath = WorkloadIdentityCredentialsPath + "/certificates.pem"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
Back to top