Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for bodies (0.18 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                // Backing field declarations use their initializer.
                is KtBackingField ->
                    parent.initializer == child
    
                // Property accessors can use their bodies if not blocks.
                is KtPropertyAccessor ->
                    parent.bodyExpression == child && doesPropertyAccessorUseBody(parent, child)
    
                // Lambdas do not use their expression-blocks if they are inferred
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. CHANGELOG.md

        than 63 characters between dots), and empty labels.
     *  New: Don't include the `Content-Length` header in multipart bodies. Servers must delimit
        OkHttp's request bodies using the boundary only. (This change makes OkHttp more consistent with
        browsers and other HTTP clients.)
     *  New: Drop the `tunnelProxy` argument in `MockWebServer.useHttps()`. This change only impacts
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

        then_name = tti.callee_names[0].str();
        else_name = tti.callee_names[1].str();
      } else {
        // Collect external values that are used within the else and then bodies.
        extern_values = CollectExternValues(if_region.getRegions());
    
        // These external values need to be added as inputs to the generated If. The
        // order is determined by the order of these values the `extern_vales`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/KtDeclarationRenderer.kt

    import org.jetbrains.kotlin.analysis.api.renderer.base.contextReceivers.KaContextReceiversRenderer
    import org.jetbrains.kotlin.analysis.api.renderer.declarations.bodies.*
    import org.jetbrains.kotlin.analysis.api.renderer.declarations.modifiers.KaDeclarationModifiersRenderer
    import org.jetbrains.kotlin.analysis.api.renderer.declarations.renderers.*
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. cmd/postpolicyform.go

    			Value    string
    		}
    		ContentLengthRange contentLengthRange
    	}
    }
    
    // implemented to ensure that duplicate keys in JSON
    // are merged together into a single JSON key, also
    // to remove any extraneous JSON bodies.
    //
    // Go stdlib doesn't support parsing JSON with duplicate
    // keys, so we need to use this technique to merge the
    // keys.
    func sanitizePolicy(r io.Reader) (io.Reader, error) {
    	var buf bytes.Buffer
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. src/syscall/mksyscall.pl

    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    # This program reads a file containing function prototypes
    # (like syscall_darwin.go) and generates system call bodies.
    # The prototypes are marked by lines beginning with "//sys"
    # and read like func declarations if //sys is replaced by func, but:
    #	* The parameter lists must give a name for each argument.
    #	  This includes return parameters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/resolver.go

    		if obj, _ := obj.(*TypeName); obj != nil && obj.typ != nil {
    			check.collectMethods(obj)
    		}
    	}
    
    	if false && check.conf.EnableAlias {
    		// With Alias nodes we can process declarations in any order.
    		//
    		// TODO(adonovan): unfortunately, Alias nodes
    		// (GODEBUG=gotypesalias=1) don't entirely resolve
    		// problems with cycles. For example, in
    		// GOROOT/test/typeparam/issue50259.go,
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. src/go/types/resolver.go

    		if obj, _ := obj.(*TypeName); obj != nil && obj.typ != nil {
    			check.collectMethods(obj)
    		}
    	}
    
    	if false && check.conf._EnableAlias {
    		// With Alias nodes we can process declarations in any order.
    		//
    		// TODO(adonovan): unfortunately, Alias nodes
    		// (GODEBUG=gotypesalias=1) don't entirely resolve
    		// problems with cycles. For example, in
    		// GOROOT/test/typeparam/issue50259.go,
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

          op->getLoc(), op->getName(), new_result_types, op->getOperands(),
          op->getAttrs(), op->getPropertiesStorage(), op->getSuccessors(),
          op->getNumRegions());
      builder.insert(new_op);
    
      // Move region bodies to the new operation.
      for (auto it : llvm::zip(op->getRegions(), new_op->getRegions())) {
        Region &old_region = std::get<0>(it);
        Region &new_region = std::get<1>(it);
        new_region.takeBody(old_region);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/rangefunc/rewrite.go

    }
    
    type State int
    
    // Rewrite rewrites all the range-over-funcs in the files.
    // It returns the set of function literals generated from rangefunc loop bodies.
    // This allows for rangefunc loop bodies to be distingushed by debuggers.
    func Rewrite(pkg *types2.Package, info *types2.Info, files []*syntax.File) map[*syntax.FuncLit]bool {
    	ri := make(map[*syntax.FuncLit]bool)
    	for _, file := range files {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top