Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for art4 (0.07 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectDependenciesResolver.java

                        // enable re-resolution
                        org.eclipse.aether.artifact.Artifact art = dep.getArtifact();
                        art = art.setFile(null).setVersion(art.getBaseVersion());
                        dep = dep.setArtifact(art);
                    }
                    collect.addDependency(dep);
                }
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. callbacks/preload.go

    //		"k1":                {"arg2"},
    //		"k2.k3":             {"arg3"},
    //		"k4.k5.k6":          {"arg4"},
    //	})
    //	// preloadMap is
    //	map[string]map[string][]interface{}{
    //		"k0": {},
    //		"k7": {
    //			"k8": {},
    //		},
    //		"k1": {},
    //		"k2": {
    //			"k3": {"arg3"},
    //		},
    //		"k4": {
    //			"k5.k6": {"arg4"},
    //		},
    //	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    			a = append(a, "-pthread")
    		}
    	}
    
    	if cfg.Goos == "aix" {
    		// mcmodel=large must always be enabled to allow large TOC.
    		a = append(a, "-mcmodel=large")
    	}
    
    	// disable ASCII art in clang errors, if possible
    	if b.gccSupportsFlag(compiler, "-fno-caret-diagnostics") {
    		a = append(a, "-fno-caret-diagnostics")
    	}
    	// clang is too smart about command-line arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    Otherwise, Knuth's algorithm is used to acquire samples via multiplying uniform
    random variables.
    See Donald E. Knuth (1969). Seminumerical Algorithms. The Art of Computer
    Programming, Volume 2. Addison Wesley
      }];
    
      let arguments = (ins
        Arg<TF_I32OrI64Tensor, [{1-D integer tensor. Shape of independent samples to draw from each
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. RELEASE.md

    *   `tf.keras`:
    
        *   `Model.fit` major improvements:
            *   You can now use custom training logic with `Model.fit` by overriding
                `Model.train_step`.
            *   Easily write state-of-the-art training loops without worrying about
                all of the features `Model.fit` handles for you (distribution
                strategies, callbacks, data formats, looping logic, etc)
            *   See the default
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top