Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 365 for Nname (0.05 sec)

  1. pkg/config/analysis/analyzers/webhook/webhook.go

    	if a.SkipServiceCheck {
    		return
    	}
    	for name, whs := range webhooks {
    		for _, wh := range whs {
    			if wh.ClientConfig.Service == nil {
    				// it is an url, skip it
    				continue
    			}
    			fname := resource.NewFullName(
    				resource.Namespace(wh.ClientConfig.Service.Namespace),
    				resource.LocalName(wh.ClientConfig.Service.Name))
    			if !context.Exists(gvk.Service, fname) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. src/internal/syscall/unix/net_darwin.go

    func libresolv_res_9_nsearch_trampoline()
    
    func ResNsearch(state *ResState, dname *byte, class, typ int, ans *byte, anslen int) (int, error) {
    	r1, _, errno := syscall_syscall6(abi.FuncPCABI0(libresolv_res_9_nsearch_trampoline),
    		uintptr(unsafe.Pointer(state)),
    		uintptr(unsafe.Pointer(dname)),
    		uintptr(class),
    		uintptr(typ),
    		uintptr(unsafe.Pointer(ans)),
    		uintptr(anslen))
    	if errno != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 13:41:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/archive/tar/writer_test.go

    	for _, test := range []struct {
    		name string
    		h    *Header
    	}{{
    		name: "name too long",
    		h:    &Header{Name: strings.Repeat("a", maxSpecialFileSize)},
    	}, {
    		name: "linkname too long",
    		h:    &Header{Linkname: strings.Repeat("a", maxSpecialFileSize)},
    	}, {
    		name: "uname too long",
    		h:    &Header{Uname: strings.Repeat("a", maxSpecialFileSize)},
    	}, {
    		name: "gname too long",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  4. src/runtime/syscall_solaris.go

    	if int(call.r1) != -1 {
    		call.err = 0
    	}
    	return call.r1, call.err
    }
    
    //go:linkname syscall_gethostname
    func syscall_gethostname() (name string, err uintptr) {
    	cname := new([_MAXHOSTNAMELEN]byte)
    	var args = [2]uintptr{uintptr(unsafe.Pointer(&cname[0])), _MAXHOSTNAMELEN}
    	call := libcall{
    		fn:   uintptr(unsafe.Pointer(&libc_gethostname)),
    		n:    2,
    		args: uintptr(unsafe.Pointer(&args[0])),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. hack/testdata/pod-with-large-name.yaml

    # Used for testing name truncation in kubectl expose
    apiVersion: v1
    kind: Pod
    metadata:
      name: kubernetes-serve-hostname-testing-sixty-three-characters-in-length
      labels:
        name: kubernetes-serve-hostname
    spec:
      containers:
      - name: kubernetes-serve-hostname
        image: registry.k8s.io/e2e-test-images/agnhost:2.32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 365 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    		fmt.Sprintf("%s-%s-%s-%4d%02d%02d-%d.log", prog, progVers, goVers, year, month, day, os.Getpid()),
    		" ", "")
    	fname := filepath.Join(debugDir, logBase)
    	if _, err := os.Stat(fname); err == nil {
    		// This process previously called upload.Run
    		return nil, nil
    	}
    	f, err := os.OpenFile(fname, os.O_WRONLY|os.O_CREATE|os.O_EXCL, 0666)
    	if err != nil {
    		if os.IsExist(err) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. operator/cmd/mesh/manifest-generate.go

    	}
    
    	if len(mgArgs.Components) != 0 {
    		filteredManifests := name.ManifestMap{}
    		for _, cArg := range mgArgs.Components {
    			componentName := name.ComponentName(cArg)
    			if cManifests, ok := manifests[componentName]; ok {
    				filteredManifests[componentName] = cManifests
    			} else {
    				return fmt.Errorf("incorrect component name: %s. Valid options: %v", cArg, name.AllComponentNames)
    			}
    		}
    		manifests = filteredManifests
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. releasenotes/notes/istio-mutual-cred-name.yaml

    John Howard <******@****.***> 1642833660 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 22 06:41:00 UTC 2022
    - 480 bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryNamedTypeIntegrationTest.groovy

                task changeProp {
                    doLast {
                        t1.name = "123"
                    }
                }
                task changeDynProp {
                    doLast {
                        t1.setProperty("name", "123")
                    }
                }
                task changeField {
                    doLast {
                        t1.@name = "123"
                    }
                }
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 05:39:53 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. src/path/filepath/path_windows_test.go

    			continue
    		}
    	}
    }
    
    // checkVolume8dot3Setting runs "fsutil 8dot3name query c:" command
    // (where c: is vol parameter) to discover "8dot3 name creation state".
    // The state is combination of 2 flags. The global flag controls if it
    // is per volume or global setting:
    //
    //	0 - Enable 8dot3 name creation on all volumes on the system
    //	1 - Disable 8dot3 name creation on all volumes on the system
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top