Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 496 for Inline1 (0.22 sec)

  1. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    	}
    	inTreeInlineVolPod := &v1.Pod{
    		Spec: v1.PodSpec{
    			Volumes: []v1.Volume{
    				{
    					VolumeSource: v1.VolumeSource{
    						AWSElasticBlockStore: &v1.AWSElasticBlockStoreVolumeSource{
    							VolumeID: "aws-inline1",
    						},
    					},
    				},
    			},
    		},
    	}
    	inTreeInlineVolPodWithSameCSIVolumeID := &v1.Pod{
    		Spec: v1.PodSpec{
    			Volumes: []v1.Volume{
    				{
    					VolumeSource: v1.VolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  2. test/inline.go

    		return x + func(y int) int { // ERROR "can inline r.func2.1" "can inline r.r.func2.func3"
    			return 2*y + x*z
    		}(x) // ERROR "inlining call to r.func2.1"
    	}
    	return foo(42) + bar(42) // ERROR "inlining call to r.func1" "inlining call to r.func2" "inlining call to r.r.func2.func3"
    }
    
    func s0(x int) int { // ERROR "can inline s0"
    	foo := func() { // ERROR "can inline s0.func1" "func literal does not escape"
    		x = x + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/inline.go

    		p.emitted = i
    	}
    }
    
    func (p *parseState) skip(i int) {
    	p.emitted = i
    }
    
    func (p *parseState) inline(s string) []Inline {
    	s = trimSpaceTab(s)
    	// Scan text looking for inlines.
    	// Leaf inlines are converted immediately.
    	// Non-leaf inlines have potential starts pushed on a stack while we await completion.
    	// Links take priority over other emphasis, so the emphasis must be delayed.
    	p.s = s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/dwarfgen/dwinl.go

    	// is part of the top-level function (ii == 0) or if it was
    	// produced as a result of an inline (ii != 0).
    	//
    	// If a variable was not produced by an inline and its containing
    	// function was not inlined, then we just assign an ordering of
    	// based on variable name.
    	//
    	// If a variable was not produced by an inline and its containing
    	// function was inlined, then we need to assign a child index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/passes/decompose.cc

    LogicalResult DecomposeTFOpsPass::InlineTFRFuncCalls() {
      // The Inliner will automatically use the registered dialect inliner.
      InlinerInterface inliner(&getContext());
      func::FuncOp func = getOperation();
      SymbolTable table(external_tfr_module_.has_value()
                            ? *external_tfr_module_
                            : func->getParentOfType<ModuleOp>());
    
      // The inliner only inlines the TFR call op.
      bool changed = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/inline/inlheur/scoring.go

    			st = "PROMOTED"
    			expinl = true
    		case hairyval <= bud && score > bud:
    			// Demoted: we would have inlined it before, but after
    			// score adjustment we decided not to inline.
    			st = "DEMOTED"
    		}
    		inlined := cs.aux&csAuxInlined != 0
    		indprom := false
    		if cs.parent != nil {
    			indprom = indirectlyDueToPromotion(cs.parent)
    		}
    		if inlined && indprom {
    			st += "|INDPROM"
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      // that work on TF dialect and before inliner so that the function calls in
      // body and cond are inlined for optimization.
      pass_manager->addPass(mlir::TFL::CreateLegalizeTFWhilePass());
    
      // Add function inlining pass. Both TF and TFLite dialects are opted into
      // function inliner interface.
      pass_manager->addPass(mlir::createInlinerPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/pgo_inl_test.go

    	}
    	return out
    }
    
    // testPGOIntendedInlining tests that specific functions are inlined.
    func testPGOIntendedInlining(t *testing.T, dir string, profFile string) {
    	testenv.MustHaveGoRun(t)
    	t.Parallel()
    
    	const pkg = "example.com/pgo/inline"
    
    	want := []string{
    		"(*BS).NS",
    	}
    
    	// The functions which are not expected to be inlined are as follows.
    	wantNot := []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.cc

        //     post inlining, the function will be dead and eliminated from the IR.
        //     So there won't be any code duplication.
        // plus the function caller op can be replaced by inlined ops.
        return !wouldBeCloned || TensorFlowDialect::CanDuplicate(op);
      }
    
      //===--------------------------------------------------------------------===//
      // Transformation Hooks
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. test/newinline.go

    	return func() int { return 42 }() // ERROR "can inline p.func1" "inlining call to p.func1"
    }
    
    func q(x int) int { // ERROR "can inline q"
    	foo := func() int { return x * 2 } // ERROR "can inline q.func1" "func literal does not escape"
    	return foo()                       // ERROR "inlining call to q.func1"
    }
    
    func r(z int) int { // ERROR "can inline r"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top