Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,163 for generations (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    // FusedBatchNormGradOp
    //===----------------------------------------------------------------------===//
    
    // TODO(b/150954845): Add benchmarks to verify that layout preference didn't
    // change in the latest GPU generations.
    
    LogicalResult FusedBatchNormGradV3Op::UpdateDataFormat(StringRef data_format) {
      return ::mlir::TF::UpdateDataFormat(data_format, this);
    }
    
    StringRef FusedBatchNormGradV3Op::GetOptimalLayout(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

      ...
    }
    
    // Finally, you can use INSTANTIATE_TEST_CASE_P to instantiate the test
    // case with any set of parameters you want. Google Test defines a number
    // of functions for generating test parameters. They return what we call
    // (surprise!) parameter generators. Here is a  summary of them, which
    // are all in the testing namespace:
    //
    //
    //  Range(begin, end [, step]) - Yields values {begin, begin+step,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. security/pkg/pki/util/generate_cert.go

    				curve = elliptic.P256()
    			}
    
    			ecPriv, err = ecdsa.GenerateKey(curve, rand.Reader)
    			if err != nil {
    				return nil, nil, fmt.Errorf("cert generation fails at EC key generation (%v)", err)
    			}
    
    		default:
    			return nil, nil, errors.New("cert generation fails due to unsupported EC signature algorithm")
    		}
    		return genCert(options, ecPriv, &ecPriv.PublicKey)
    	}
    
    	if options.RSAKeySize < minimumRsaKeySize {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/generate/generate.go

    	for i, word := range words {
    		words[i] = os.Expand(word, g.expandVar)
    	}
    	return words
    }
    
    var stop = fmt.Errorf("error in generation")
    
    // errorf logs an error message prefixed with the file and line number.
    // It then exits the program (with exit status 1) because generation stops
    // at the first error.
    func (g *Generator) errorf(format string, args ...any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Sign.java

                    ? computeCachedSignatures()
                    : generators.get()
            );
        }
    
        /**
         * Returns signature generators mapped by their key with duplicated and non-existing inputs removed.
         */
        private static Map<String, Signature.Generator> sanitize(Collection<Signature.Generator> generators) {
            return generators.stream()
                .filter(signature -> signature.getToSign().exists())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/mktests.go

    	return false, nil
    }
    
    func (ctx *context) runGenerators() error {
    	generators, err := filepath.Glob("./generators/*.go")
    	if err != nil {
    		return fmt.Errorf("reading generators: %v", err)
    	}
    	genroot := "./tests"
    
    	if err := os.MkdirAll(genroot, 0777); err != nil {
    		return fmt.Errorf("creating generated root: %v", err)
    	}
    	for _, path := range generators {
    		name := filepath.Base(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/internal/JavadocGenerator.java

            } catch (ExecException e) {
                LOG.info("Problems generating Javadoc."
                        + "\n  Command line issued: " + execAction.getCommandLine()
                        + "\n  Generated Javadoc options file has following contents:\n------\n{}------", GFileUtils.readFileQuietly(spec.getOptionsFile()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/DebugOptions.java

         * <p>For example {@code source,lines,vars} is a valid value.</p>
         *
         * <p>Alternatively setting the value to {@code none} will disable debug information generation.</p>
         *
         * <p>Setting this value to null will reset the property to its default value of only
         * generating line and source debug information.</p>
         */
        public void setDebugLevel(@Nullable String debugLevel) {
            this.debugLevel = debugLevel;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 02:50:50 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/cmd/covdata/doc.go

    // Copyright 2022 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.
    
    /*
    Covdata is a program for manipulating and generating reports
    from 2nd-generation coverage testing output files, those produced
    from running applications or integration tests. E.g.
    
    	$ mkdir ./profiledir
    	$ go build -cover -o myapp.exe .
    	$ GOCOVERDIR=./profiledir ./myapp.exe <arguments>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildInitializer.java

    import java.util.List;
    import java.util.Optional;
    import java.util.Set;
    
    /**
     * Initializes a Gradle build, either by converting an existing build to Gradle or generating a new Gradle build.
     *
     * <p>This interface currently includes a bunch of methods that are related to build generation and should move to {@link BuildGenerator}.</p>
     */
    public interface BuildInitializer {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top