Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 81 for synthesized (0.16 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

        llvm::ArrayRef<TF::ConstOp> target_const_ops) {
      llvm::MapVector<TF::ConstOp, std::string> const_op_name_map{};
    
      // Keeps track of the number of occurrences of each synthesized name. The
      // `shared_name` of the newly created `VarHandleOp` will be generated by
      // suffixing the `"_{count}"` to the name.
      absl::flat_hash_map<std::string, int> name_counts{};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. src/go/doc/example.go

    				comments = append(comments, d.Doc)
    			}
    		}
    	}
    
    	// Synthesize import declaration.
    	importDecl := &ast.GenDecl{
    		Tok:    token.IMPORT,
    		Lparen: 1, // Need non-zero Lparen and Rparen so that printer
    		Rparen: 1, // treats this as a factored import.
    	}
    	importDecl.Specs = append(namedImports, blankImports...)
    
    	// Synthesize main function.
    	funcDecl := &ast.FuncDecl{
    		Name: ast.NewIdent("main"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    include::sample[dir="snippets/testing/test-suite-configure-source-dir/groovy",files="build.gradle[tags=configure-source-dir]"]
    ====
    
    <1> Declare and configure a suite named `integrationTest`.  The `SourceSet` and synthesized `Test` tasks will be based on this name.
    <2> Configure the `sources` of the test suite.
    <3> Configure the `java` SourceDirectorySet of the test suite.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            is CallableMemberDescriptor -> when (kind) {
                CallableMemberDescriptor.Kind.DELEGATION -> return KaSymbolOrigin.DELEGATED
                CallableMemberDescriptor.Kind.SYNTHESIZED -> return KaSymbolOrigin.SOURCE_MEMBER_GENERATED
                else -> {
                    if (isDynamic()) {
                        return KaSymbolOrigin.JS_DYNAMIC
                    }
                }
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. src/runtime/profbuf.go

    // record into the buffer. If the reader is called to read data and finds
    // that the output buffer is empty but that there is a pending overflow
    // entry, the reader will return a synthesized record for the pending
    // overflow entry.
    //
    // Only the writer can create or add to a pending overflow entry, but
    // either the reader or the writer can clear the pending overflow entry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/read.go

    		// of the Go toolchain may have arbitrary development changes on top of the
    		// commit reported by runtime.Version, or could be completely artificial due
    		// to lacking a `git` binary (like "devel gomote.XXXXX", as synthesized by
    		// "gomote push" as of 2022-06-15). (Release builds shouldn't have
    		// modifications, but we don't want to use a behavior for releases that we
    		// haven't tested during development.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. test/64bit.go

    // runoutput
    
    // Copyright 2009 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.
    
    // Generate test of 64-bit arithmetic.
    // Most synthesized routines have different cases for
    // constants vs variables and even the generated code has
    // different cases for large and small constants,
    // so try a good range of inputs.
    
    package main
    
    import (
    	"bufio"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 30 19:21:08 UTC 2013
    - 24.8K bytes
    - Viewed (0)
  8. src/encoding/xml/xml_test.go

    		switch {
    		case start < lastEnd:
    			t.Errorf("token %d: position [%d,%d) for %T is before previous token", i, start, end, have)
    		case start >= end:
    			// Special case: EndElement can be synthesized.
    			if start == end && end == lastEnd {
    				break
    			}
    			t.Errorf("token %d: position [%d,%d) for %T is empty", i, start, end, have)
    		case end > int64(len(raw)):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/func.go

    	RegArgs []Spill
    	// OwnAux describes parameters and results for this function.
    	OwnAux *AuxCall
    	// CloSlot holds the compiler-synthesized name (".closureptr")
    	// where we spill the closure pointer for range func bodies.
    	CloSlot *ir.Name
    
    	freeValues *Value // free Values linked by argstorage[0].  All other fields except ID are 0/nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/scalar_fiat.go

    //
    //
    //
    // NOTE: In addition to the bounds specified above each function, all
    //
    //   functions synthesized for this Montgomery arithmetic require the
    //
    //   input to be strictly less than the prime modulus (m), and also
    //
    //   require the input to be in the unique saturated representation.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 35.6K bytes
    - Viewed (0)
Back to top