Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for noscan (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/performance/build-scan-performance-page.png

    build-scan-performance-page.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 72.6K bytes
    - Viewed (0)
  2. src/runtime/mgcpacer.go

    	// unlike heapLive, heapMarked does not change until the
    	// next mark termination.
    	heapMarked uint64
    
    	// heapScanWork is the total heap scan work performed this cycle.
    	// stackScanWork is the total stack scan work performed this cycle.
    	// globalsScanWork is the total globals scan work performed this cycle.
    	//
    	// These are updated atomically during the cycle. Updates occur in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				IPTablesDropBit:                           utilpointer.Int32(1),
    				FailSwapOn:                                utilpointer.Bool(true),
    				MemorySwap:                                v1beta1.MemorySwapConfiguration{SwapBehavior: "NoSwap"},
    				ContainerLogMaxSize:                       "1Mi",
    				ContainerLogMaxFiles:                      utilpointer.Int32(1),
    				ContainerLogMaxWorkers:                    utilpointer.Int32(1),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/BUILD

            "rearrange_function_argument_pass_test.cc",
        ],
        tags = [
            # TODO(b/141643254) Re-enable msan after fixing
            # use-of-uninitialized-value error.
            "nomsan",
        ] + tf_cuda_tests_tags(),
        deps = [
            ":common",
            ":compilability_check_util",
            ":compilation_passes",
            ":compilation_passes_test_main",
            ":encapsulate_util",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/dependency-management-dependency-insight-report-build-scan.png

    dependency-management-dependency-insight-report-build-scan.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server.go

    			}
    			if !s.FailSwapOn && s.MemorySwap.SwapBehavior == "" {
    				// This is just a log because we are using a default of NoSwap.
    				klog.InfoS("NoSwap is set due to memorySwapBehavior not specified", "memorySwapBehavior", s.MemorySwap.SwapBehavior, "FailSwapOn", s.FailSwapOn)
    			}
    		}
    
    		kubeDeps.ContainerManager, err = cm.NewContainerManager(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. src/reflect/type.go

    	// In both cases the algorithm is a linear scan over the two
    	// lists - T's methods and V's methods - simultaneously.
    	// Since method tables are stored in a unique sorted order
    	// (alphabetical, with no duplicate method names), the scan
    	// through V's methods must hit a match for each of T's
    	// methods along the way, or else V does not implement T.
    	// This lets us run the scan in overall linear time instead of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. tests/query_test.go

    	}
    }
    
    type DoubleInt64 struct {
    	data int64
    }
    
    func (t *DoubleInt64) Scan(val interface{}) error {
    	switch v := val.(type) {
    	case int64:
    		t.data = v * 2
    		return nil
    	default:
    		return fmt.Errorf("DoubleInt64 cant not scan with:%v", v)
    	}
    }
    
    // https://github.com/go-gorm/gorm/issues/5091
    func TestQueryScannerWithSingleColumn(t *testing.T) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/obj.go

    					p.From = obj.Addr{Type: obj.TYPE_BRANCH, Sym: p.From.Sym}
    					p.From.SetTarget(p.To.Target())
    					p.Reg = obj.REG_NONE
    					p.To = obj.Addr{Type: obj.TYPE_REG, Reg: REG_TMP}
    
    					rescan = true
    				}
    			}
    		}
    
    		if !rescan {
    			break
    		}
    	}
    
    	// Now that there are no long branches, resolve branch and jump targets.
    	// At this point, instruction rewriting which changes the number of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/loong64/asm.go

    	for p = c.cursym.Func().Text.Link; p != nil; p = p.Link {
    		if q := p.To.Target(); q != nil && q.Pc < p.Pc {
    			q.Mark |= branchLoopHead
    		}
    	}
    
    	// Run these passes until convergence.
    	for {
    		rescan := false
    		pc = 0
    		prev := c.cursym.Func().Text
    		for p = prev.Link; p != nil; prev, p = p, p.Link {
    			p.Pc = pc
    			o = c.oplook(p)
    
    			// Prepend a PCALIGN $loopAlign to each of the loop heads
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
Back to top