Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isExternal (0.18 sec)

  1. src/cmd/link/internal/ld/data.go

    			}
    			if target.Is386() && target.IsExternal() && target.IsELF {
    				nExtReloc++ // need two ELF relocations on 386, see ../x86/asm.go:elfreloc1
    			}
    			fallthrough
    		case objabi.R_CALL, objabi.R_PCREL:
    			if target.IsExternal() && rs != 0 && rst == sym.SUNDEFEXT {
    				// pass through to the external linker.
    				nExtReloc++
    				o = 0
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    		recorder:                       kubeDeps.Recorder,
    		cadvisor:                       kubeDeps.CAdvisorInterface,
    		cloud:                          kubeDeps.Cloud,
    		externalCloudProvider:          cloudprovider.IsExternal(cloudProvider),
    		providerID:                     providerID,
    		nodeRef:                        nodeRef,
    		nodeLabels:                     nodeLabels,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    	// Check latency...
    	if opts.Threshold > 0 && trcInfo.Duration < opts.Threshold {
    		return false
    	}
    
    	// Check internal path
    	isInternal := isHTTP && HasPrefix(trcInfo.HTTP.ReqInfo.Path, minioReservedBucketPath+SlashSeparator)
    	if isInternal && !opts.Internal {
    		return false
    	}
    
    	// Filter non-errors.
    	if isHTTP && opts.OnlyErrors && trcInfo.HTTP.RespInfo.StatusCode < http.StatusBadRequest {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top