Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for netutils (0.15 sec)

  1. cmd/genkubedocs/gen_kube_docs.go

    limitations under the License.
    */
    
    package main
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"os"
    
    	"github.com/spf13/cobra/doc"
    	"github.com/spf13/pflag"
    	"k8s.io/kubernetes/cmd/genutils"
    	apiservapp "k8s.io/kubernetes/cmd/kube-apiserver/app"
    	cmapp "k8s.io/kubernetes/cmd/kube-controller-manager/app"
    	proxyapp "k8s.io/kubernetes/cmd/kube-proxy/app"
    	schapp "k8s.io/kubernetes/cmd/kube-scheduler/app"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. cmd/gendocs/gen_kubectl_docs.go

    	"k8s.io/kubectl/pkg/cmd"
    	"k8s.io/kubernetes/cmd/genutils"
    )
    
    func main() {
    	// use os.Args instead of "flags" because "flags" will mess up the man pages!
    	path := "docs/"
    	if len(os.Args) == 2 {
    		path = os.Args[1]
    	} else if len(os.Args) > 2 {
    		fmt.Fprintf(os.Stderr, "usage: %s [output directory]\n", os.Args[0])
    		os.Exit(1)
    	}
    
    	outDir, err := genutils.OutDir(path)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/ImperativeStatementDetectingTransformer.java

            List<Statement> statements = statementBlock.getStatements();
            for (Statement statement : statements) {
                if (!AstUtils.mayHaveAnEffect(statement)) {
                    continue;
                }
                ScriptBlock scriptBlock = AstUtils.detectScriptBlock(statement);
                if (scriptBlock != null && scriptBlock.getName().equals(ModelBlockTransformer.MODEL)) {
                    continue;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 2.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/auth/netrc.go

    	login    string
    	password string
    }
    
    var (
    	netrcOnce sync.Once
    	netrc     []netrcLine
    	netrcErr  error
    )
    
    func parseNetrc(data string) []netrcLine {
    	// See https://www.gnu.org/software/inetutils/manual/html_node/The-_002enetrc-file.html
    	// for documentation on the .netrc format.
    	var nrc []netrcLine
    	var l netrcLine
    	inMacro := false
    	for _, line := range strings.Split(data, "\n") {
    		if inMacro {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/ingress/status.go

    	istiolabels "istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/mesh"
    	kubelib "istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/log"
    	netutil "istio.io/istio/pkg/util/net"
    )
    
    var statusLog = log.RegisterScope("ingress status", "")
    
    // StatusSyncer keeps the status IP in each Ingress resource updated
    type StatusSyncer struct {
    	meshConfig mesh.Watcher
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/consumer/simple/simple-parent/simple-testutils/pom.xml

      <parent>
        <groupId>org.sonatype.mavenbook.multi</groupId>
        <artifactId>utils-parent</artifactId>
        <relativePath>../utils-parent/pom.xml</relativePath>
      </parent>
      <artifactId>simple-testutils</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/config/config.go

    package config
    
    import (
    	"encoding/json"
    	"fmt"
    	"net"
    	"net/netip"
    	"os/user"
    	"strconv"
    	"strings"
    	"time"
    
    	"github.com/miekg/dns"
    
    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/log"
    	netutil "istio.io/istio/pkg/util/net"
    	"istio.io/istio/tools/istio-iptables/pkg/constants"
    )
    
    func DefaultConfig() *Config {
    	return &Config{
    		RestoreFormat:           true,
    		ProxyPort:               "15001",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. cmd/genutils/genutils_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package genutils
    
    import (
    	"testing"
    )
    
    func TestValidDir(t *testing.T) {
    	_, err := OutDir("./")
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    func TestInvalidDir(t *testing.T) {
    	_, err := OutDir("./nondir")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 04 01:42:08 UTC 2017
    - 953 bytes
    - Viewed (0)
  9. pkg/volume/nfs/nfs.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package nfs
    
    import (
    	"fmt"
    	"os"
    	"time"
    
    	netutil "k8s.io/utils/net"
    
    	"k8s.io/klog/v2"
    	"k8s.io/mount-utils"
    	utilstrings "k8s.io/utils/strings"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/consumer/simple/simple-parent/simple-weather/pom.xml

      <packaging>jar</packaging>
    
      <name>Multi Chapter Simple Weather API</name>
    
      <dependencies>
        <dependency>
          <groupId>org.sonatype.mavenbook.multi</groupId>
          <artifactId>simple-testutils</artifactId>
          <scope>test</scope>
        </dependency>
      </dependencies>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top