Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for modzip (0.16 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    func (m *kubeGenericRuntimeManager) generateContainerConfig(ctx context.Context, container *v1.Container, pod *v1.Pod, restartCount int, podIP, imageRef string, podIPs []string, nsTarget *kubecontainer.ContainerID) (*runtimeapi.ContainerConfig, func(), error) {
    	opts, cleanupAction, err := m.runtimeHelper.GenerateRunContainerOptions(ctx, pod, container, podIP, podIPs)
    	if err != nil {
    		return nil, nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json

        "reason": "reasonValue",
        "nominatedNodeName": "nominatedNodeNameValue",
        "hostIP": "hostIPValue",
        "hostIPs": [
          {
            "ip": "ipValue"
          }
        ],
        "podIP": "podIPValue",
        "podIPs": [
          {
            "ip": "ipValue"
          }
        ],
        "startTime": "2007-01-01T01:01:01Z",
        "initContainerStatuses": [
          {
            "name": "nameValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    	// Setup event recorder if required.
    	makeEventRecorder(ctx, kubeDeps, nodeName)
    
    	nodeIPs, invalidNodeIps, err := nodeutil.ParseNodeIPArgument(kubeServer.NodeIP, kubeServer.CloudProvider)
    	if err != nil {
    		return fmt.Errorf("bad --node-ip %q: %v", kubeServer.NodeIP, err)
    	}
    	if len(invalidNodeIps) != 0 {
    		klog.FromContext(ctx).Info("Could not parse some node IP(s), ignoring them", "IPs", invalidNodeIps)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    	// Clean up and annotate directories.
    	// TODO(matloob): update x/mod to actually add module paths.
    	for moddir, absmodroot := range missingModulePaths {
    		_, f, err := ReadModFile(filepath.Join(absmodroot, "go.mod"), nil)
    		if err != nil {
    			continue // Error will be reported if modules are loaded.
    		}
    		wf.AddUse(moddir, f.Module.Mod.Path)
    	}
    }
    
    // LoadModFile sets Target and, if there is a main module, parses the initial
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			Labels: config.Labels,
    		},
    	}
    	// assign additional IPs
    	additionalIPs := apitest.FakePodSandboxIPs[1:]
    	additionalPodIPs := make([]*runtimeapi.PodIP, 0, len(additionalIPs))
    	for _, ip := range additionalIPs {
    		additionalPodIPs = append(additionalPodIPs, &runtimeapi.PodIP{
    			Ip: ip,
    		})
    	}
    	podSandBoxStatus.Network.AdditionalIps = additionalPodIPs
    	return podSandBoxStatus
    
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  6. tests/integration/ambient/baseline_test.go

    			})
    			run("Waypoint destination", echo.CallOptions{
    				To:      apps.ServiceAddressedWaypoint,
    				Count:   1,
    				Address: apps.WaypointProxies[apps.ServiceAddressedWaypoint.Config().ServiceWaypointProxy].PodIP(),
    				Port:    echo.Port{ServicePort: 15000},
    				Scheme:  scheme.HTTP,
    				HBONE:   hbsvc,
    				Check:   check.Error(),
    			})
    		})
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
Back to top