Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for debugLink (0.53 sec)

  1. cmd/kube-controller-manager/app/options/options_test.go

    					RetryPeriod:       metav1.Duration{Duration: 5 * time.Second},
    					ResourceName:      "kube-controller-manager",
    					ResourceNamespace: "kube-system",
    				},
    				Controllers: []string{"foo", "bar"},
    			},
    			Debugging: &cmoptions.DebuggingOptions{
    				DebuggingConfiguration: &componentbaseconfig.DebuggingConfiguration{
    					EnableProfiling:           false,
    					EnableContentionProfiling: true,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/endpointslice_controller_test.go

    				esController.podStore.Add(p)
    				esController.addPod(p)
    			}
    
    			time.Sleep(tc.finalDelay)
    			assert.Len(t, client.Actions(), tc.wantRequestCount)
    			// In case of error, make debugging easier.
    			for _, action := range client.Actions() {
    				t.Logf("action: %v %v", action.GetVerb(), action.GetResource())
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  3. src/runtime/mgcmark.go

    	work.baseStacks = work.baseSpans + uint32(work.nSpanRoots)
    	work.baseEnd = work.baseStacks + uint32(work.nStackRoots)
    }
    
    // gcMarkRootCheck checks that all roots have been scanned. It is
    // purely for debugging.
    func gcMarkRootCheck() {
    	if work.markrootNext < work.markrootJobs {
    		print(work.markrootNext, " of ", work.markrootJobs, " markroot jobs done\n")
    		throw("left over markroot jobs")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue.go

    }
    
    var pendingPodsSummary = "activeQ:%v; backoffQ:%v; unschedulablePods:%v"
    
    // PendingPods returns all the pending pods in the queue; accompanied by a debugging string
    // recording showing the number of pods in each queue respectively.
    // This function is used for debugging purposes in the scheduler cache dumper and comparer.
    func (p *PriorityQueue) PendingPods() ([]*v1.Pod, string) {
    	p.lock.RLock()
    	defer p.lock.RUnlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

      $win_ver | Add-Member -MemberType NoteProperty -Name Revision -Value $(Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion' UBR).UBR
      return $win_ver
    }
    
    # Writes debugging information, such as Windows version and patch info, to the
    # console.
    function Dump-DebugInfoToConsole {
      Try {
        $version = Get_WindowsVersion | Out-String
        $hotfixes = "$(Get-Hotfix | Out-String)"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	// such as Wireshark to decrypt TLS connections.
    	// See https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format.
    	// Use of KeyLogWriter compromises security and should only be
    	// used for debugging.
    	KeyLogWriter io.Writer
    
    	// EncryptedClientHelloConfigList is a serialized ECHConfigList. If
    	// provided, clients will attempt to connect to servers using Encrypted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. cmd/api-errors.go

    	// corner case errors for which introducing new APIErrorCode is not worth it. LogIf()
    	// should be used to log the error at the source of the error for debugging purposes.
    	ErrInvalidRequest: {
    		Code:           "InvalidRequest",
    		Description:    "Invalid Request",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrHealNotImplemented: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    			// Force eager resolution to work around.
    			argv = append(argv, "-Wl,-flat_namespace", "-Wl,-bind_at_load")
    		}
    		if !combineDwarf {
    			argv = append(argv, "-Wl,-S") // suppress STAB (symbolic debugging) symbols
    			if debug_s {
    				// We are generating a binary with symbol table suppressed.
    				// Suppress local symbols. We need to keep dynamically exported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. src/net/http/transport.go

    	}
    	if u := cm.proxyURL.User; u != nil {
    		username := u.Username()
    		password, _ := u.Password()
    		return "Basic " + basicAuth(username, password)
    	}
    	return ""
    }
    
    // error values for debugging and testing, not seen by users.
    var (
    	errKeepAlivesDisabled = errors.New("http: putIdleConn: keep alives disabled")
    	errConnBroken         = errors.New("http: putIdleConn: connection is in bad state")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  10. pkg/workloadapi/workload.pb.go

    	// Name represents the name for the workload.
    	// For Kubernetes, this is the pod name.
    	// This is just for debugging and may be elided as an optimization.
    	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
    	// Namespace represents the namespace for the workload.
    	// This is just for debugging and may be elided as an optimization.
    	Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
Back to top