Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 178 for zoneinfo (0.24 sec)

  1. common/scripts/setup_env.sh

    fi
    if [[ "${IMAGE_NAME:-}" == "" ]]; then
      IMAGE_NAME=build-tools
    fi
    
    DOCKER_GID="${DOCKER_GID:-$(grep '^docker:' /etc/group | cut -f3 -d:)}"
    
    TIMEZONE=$(readlink "$readlink_flags" /etc/localtime | sed -e 's/^.*zoneinfo\///')
    
    TARGET_OUT="${TARGET_OUT:-$(pwd)/out/${TARGET_OS}_${TARGET_ARCH}}"
    TARGET_OUT_LINUX="${TARGET_OUT_LINUX:-$(pwd)/out/linux_${TARGET_ARCH}}"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/net/mail/message_test.go

    		if err != nil && test.valid {
    			t.Errorf("Header(Date: %s).Date(): %v", test.dateStr, err)
    		} else if err == nil && test.exp.IsZero() {
    			// OK.  Used when exact result depends on the
    			// system's local zoneinfo.
    		} else if err == nil && !date.Equal(test.exp) && test.valid {
    			t.Errorf("Header(Date: %s).Date() = %+v, want %+v", test.dateStr, date, test.exp)
    		} else if err == nil && !test.valid { // an invalid expression was tested
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/strategy.go

    	}
    	loc := &url.URL{
    		Scheme:   nodeInfo.Scheme,
    		Host:     net.JoinHostPort(nodeInfo.Hostname, nodeInfo.Port),
    		Path:     fmt.Sprintf("/containerLogs/%s/%s/%s", pod.Namespace, pod.Name, container),
    		RawQuery: params.Encode(),
    	}
    
    	if opts.InsecureSkipTLSVerifyBackend {
    		return loc, nodeInfo.InsecureSkipTLSVerifyTransport, nil
    	}
    	return loc, nodeInfo.Transport, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/cache/snapshot.go

    func (s *Snapshot) HavePodsWithRequiredAntiAffinityList() ([]*framework.NodeInfo, error) {
    	return s.havePodsWithRequiredAntiAffinityNodeInfoList, nil
    }
    
    // Get returns the NodeInfo of the given node name.
    func (s *Snapshot) Get(nodeName string) (*framework.NodeInfo, error) {
    	if v, ok := s.nodeInfoMap[nodeName]; ok && v.Node() != nil {
    		return v, nil
    	}
    	return nil, fmt.Errorf("nodeinfo not found for node name %q", nodeName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions_test.go

    	tests := []struct {
    		pod                 *v1.Pod
    		nodeInfo            *framework.NodeInfo
    		name                string
    		preFilterWantStatus *framework.Status
    		wantStatus          *framework.Status
    	}{
    		{
    			pod:                 &v1.Pod{},
    			nodeInfo:            framework.NewNodeInfo(),
    			name:                "nothing",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/nodeports/node_ports_test.go

    }
    
    func TestNodePorts(t *testing.T) {
    	tests := []struct {
    		pod                 *v1.Pod
    		nodeInfo            *framework.NodeInfo
    		name                string
    		wantPreFilterStatus *framework.Status
    		wantFilterStatus    *framework.Status
    	}{
    		{
    			pod:                 &v1.Pod{},
    			nodeInfo:            framework.NewNodeInfo(),
    			name:                "skip filter",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 11:02:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/listers.go

    */
    
    package framework
    
    // NodeInfoLister interface represents anything that can list/get NodeInfo objects from node name.
    type NodeInfoLister interface {
    	// List returns the list of NodeInfos.
    	List() ([]*NodeInfo, error)
    	// HavePodsWithAffinityList returns the list of NodeInfos of nodes with pods with affinity terms.
    	HavePodsWithAffinityList() ([]*NodeInfo, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 01:00:41 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/interpodaffinity/filtering.go

    	topoMaps := make([]topologyToMatchedTermCount, len(nodes))
    	index := int32(-1)
    	processNode := func(i int) {
    		nodeInfo := nodes[i]
    		node := nodeInfo.Node()
    
    		topoMap := make(topologyToMatchedTermCount)
    		for _, existingPod := range nodeInfo.PodsWithRequiredAntiAffinity {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/resource_allocation.go

    	}
    	switch resource {
    	case v1.ResourceCPU:
    		return nodeInfo.Allocatable.MilliCPU, (requested.MilliCPU + podRequest)
    	case v1.ResourceMemory:
    		return nodeInfo.Allocatable.Memory, (requested.Memory + podRequest)
    	case v1.ResourceEphemeralStorage:
    		return nodeInfo.Allocatable.EphemeralStorage, (nodeInfo.Requested.EphemeralStorage + podRequest)
    	default:
    		if _, exists := nodeInfo.Allocatable.ScalarResources[resource]; exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 14:53:43 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    	enoughPodsTests := []struct {
    		pod                       *v1.Pod
    		nodeInfo                  *framework.NodeInfo
    		name                      string
    		args                      config.NodeResourcesFitArgs
    		wantInsufficientResources []InsufficientResource
    		wantStatus                *framework.Status
    	}{
    		{
    			pod: &v1.Pod{},
    			nodeInfo: framework.NewNodeInfo(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
Back to top