Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 467 for bodies (0.11 sec)

  1. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

      // the return operation (which otherwise would be recognized as being
      // susceptible to side effects when returning a resource variable.)
      // We only need to consider functions with single-block bodies, as
      // this is an assumption flatbuffer_export makes, and this pass is
      // operating on IRs ready for exporting.
      for (Operation &op : fn.getBody().front().without_terminator()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/vardecl.go

    	_, _ int = 1 /* ERRORx `assignment mismatch: [1-9]+ variables but.*[1-9]+ value(s)?` */
    	_, _, _ /* ERROR "missing init expr for _" */ int = 1, 2
    )
    
    // Variables declared in function bodies must be 'used'.
    type T struct{}
    func (r T) _(a, b, c int) (u, v, w int) {
    	var x1 /* ERROR "declared and not used" */ int
    	var x2 /* ERROR "declared and not used" */ int
    	x1 = 1
    	(x2) = 2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/coverage/cover.go

    		assign = typecheck.Stmt(ir.NewAssignStmt(pos, cnames.PkgIdVar, callx))
    	}
    
    	// Tack the call onto the start of our init function. We do this
    	// early in the init since it's possible that instrumented function
    	// bodies (with counter updates) might be inlined into init.
    	cnames.InitFn.Body.Prepend(assign)
    }
    
    // addInitHookCall generates a call to runtime/coverage.initHook() and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/common/outline_operations.h

    //        branching instructions. Thus the subgraph is a simple 1-degree path.
    //    2. All Operations in a subgraph belong to the same block in a
    //        funtion body.
    //    3. Function bodies are assumed to have only one block in some places.
    class Subgraph {
      // Set vector preserves insertion order, must insert Ops in topological order.
     public:
      const llvm::SetVector<Operation*> partition_ops_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 18:49:43 UTC 2022
    - 6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/it/CrudTestBase.java

                count += 1;
            }
        }
    
        @AfterAll
        protected static void tearDownAll() {
            deleteTestToken();
        }
    
        // ================
        // Bodies
        // ================
        protected void testCreate() {
            // Test: create setting api.
            for (int i = 0; i < NUM; i++) {
                final Map<String, Object> requestBody = createTestParam(i);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. src/runtime/trace/annotation.go

    // The information is advisory only. The tracing status
    // may have changed by the time this function returns.
    func IsEnabled() bool {
    	return tracing.enabled.Load()
    }
    
    //
    // Function bodies are defined in runtime/trace.go
    //
    
    // emits UserTaskCreate event.
    func userTaskCreate(id, parentID uint64, taskType string)
    
    // emits UserTaskEnd event.
    func userTaskEnd(id uint64)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ir/visit.go

    	}
    	do(n)
    }
    
    // VisitList calls Visit(x, visit) for each node x in the list.
    func VisitList(list Nodes, visit func(Node)) {
    	for _, x := range list {
    		Visit(x, visit)
    	}
    }
    
    // VisitFuncAndClosures calls visit on each non-nil node in fn.Body,
    // including any nested closure bodies.
    func VisitFuncAndClosures(fn *Func, visit func(n Node)) {
    	VisitList(fn.Body, func(n Node) {
    		visit(n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 14:29:16 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_1x.md

     * Fix: Don't leak gzip streams on redirects.
     * Fix: Don't do DNS lookups on invalid hosts.
     * Fix: Exhaust the underlying stream when reading gzip streams.
     * Fix: Support the `PATCH` method.
     * Fix: Support request bodies on `DELETE` method.
     * Fix: Drop the `okhttp-protocols` module.
     * Internal: Replaced internal byte array buffers with pooled buffers ("OkBuffer").
    
    
    ## Version 1.3.0
    
    _2014-01-11_
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  9. docs/features/interceptors.md

    st)` is a critical part of each interceptor’s implementation. This simple-looking method is where all the HTTP work happens, producing a response to satisfy the request. If `chain.proceed(request)` is being called more than once previous response bodies must be closed.
    
    Interceptors can be chained. Suppose you have both a compressing interceptor and a checksumming interceptor: you'll need to decide whether data is compressed and then checksummed, or checksummed and then compressed. OkHttp...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  10. src/go/printer/testdata/statements.golden

    	}	// no semicolon and parens printed
    	switch x := expr; {
    	default:
    		use(
    			x)
    	}
    	switch x := expr; expr {
    	default:
    		use(x)
    	}
    }
    
    // Formatting of switch statement bodies.
    func _() {
    	switch {
    	}
    
    	switch x := 0; x {
    	case 1:
    		use(x)
    		use(x)	// followed by an empty line
    
    	case 2:	// followed by an empty line
    
    		use(x)	// followed by an empty line
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 12 18:18:12 UTC 2014
    - 8K bytes
    - Viewed (0)
Back to top