Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 339 for Fname (0.06 sec)

  1. src/main/java/jcifs/smb1/netbios/Name.java

        public String name, scope;
        public int hexCode;
        int srcHashCode; /* srcHashCode must be set by name resolution
                          * routines before entry into addressCache
                          */
    
        Name() {
        }
        public Name( String name, int hexCode, String scope ) {
            if( name.length() > 15 ) {
                name = name.substring( 0, 15 );
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 6.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/printers/name.go

    )
    
    // NamePrinter is an implementation of ResourcePrinter which outputs "resource/name" pair of an object.
    type NamePrinter struct {
    	// ShortOutput indicates whether an operation should be
    	// printed along side the "resource/name" pair for an object.
    	ShortOutput bool
    	// Operation describes the name of the action that
    	// took place on an object, to be included in the
    	// finalized "successful" message.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 28 23:24:54 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    			}
    		} else {
    			priorities[gv.Group] = info.GroupPriorityMinimum
    		}
    	}
    
    	sort.SliceStable(groups, func(i, j int) bool {
    		iName := groups[i].Name
    		jName := groups[j].Name
    
    		// Default to 0 priority by default
    		iPriority := priorities[iName]
    		jPriority := priorities[jName]
    
    		// Sort discovery based on apiservice priority.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  4. src/regexp/syntax/make_perl_groups.pl

      }
      return "\t`$name`: {+1, code$cname},\n" .
      	"\t`$negname`: {-1, code$cname},\n";
    }
    
    my $gen = 0;
    
    sub PrintClasses($@) {
      my ($cname, @classes) = @_;
      my @entries;
      foreach my $cl (@classes) {
        my @ranges = ComputeClass($cl);
        push @entries, PrintClass(++$gen, $cl, @ranges);
      }
      print "var ${cname}Group = map[string]charGroup{\n";
      foreach my $e (@entries) {
        print $e;
      }
      print "}\n";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. pkg/api/v1/resource/helpers_test.go

    	}
    
    	return &v1.Pod{
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name:      cname,
    					Resources: r,
    				},
    			},
    			InitContainers: []v1.Container{
    				{
    					Name:      "init-" + cname,
    					Resources: r,
    				},
    			},
    			Overhead: overhead,
    		},
    	}
    }
    
    func TestPodResourceRequests(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:13 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  6. src/go/printer/testdata/linebreaks.input

    			&Header{
    				Name: "small.txt",
    				Mode: 0640,
    				Uid: 73025,
    				Gid: 5000,
    				Size: 5,
    				Mtime: 1244428340,
    				Typeflag: '0',
    				Uname: "dsymonds",
    				Gname: "eng",
    			},
    			&Header{
    				Name: "small2.txt",
    				Mode: 0640,
    				Uid: 73025,
    				Gid: 5000,
    				Size: 11,
    				Mtime: 1244436044,
    				Typeflag: '0',
    				Uname: "dsymonds",
    				Gname: "eng",
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 11 22:03:18 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/correct-port-name-external-name-service-type.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: nginx-svc4
      namespace: nginx-ns4
    spec:
      externalName: nginx.example.com
      ports:
      - name: https
        port: 443
        protocol: TCP
        targetPort: 443
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 09 00:46:04 UTC 2021
    - 218 bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/incorrect-port-name-external-name-service-type.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: nginx
      namespace: nginx-ns
    spec:
      externalName: nginx.example.com
      ports:
      - name: nginx
        port: 443
        protocol: TCP
        targetPort: 443
      type: ExternalName
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: nginx-svc2
      namespace: nginx-ns2
    spec:
      externalName: nginx.example.com
      ports:
      - port: 443
        protocol: TCP
        targetPort: 443
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 09 00:46:04 UTC 2021
    - 641 bytes
    - Viewed (0)
  9. src/archive/tar/stat_unix.go

    		if u, ok := userMap.Load(h.Uid); ok {
    			h.Uname = u.(string)
    		} else if u, err := user.LookupId(strconv.Itoa(h.Uid)); err == nil {
    			h.Uname = u.Username
    			userMap.Store(h.Uid, h.Uname)
    		}
    		if g, ok := groupMap.Load(h.Gid); ok {
    			h.Gname = g.(string)
    		} else if g, err := user.LookupGroupId(strconv.Itoa(h.Gid)); err == nil {
    			h.Gname = g.Name
    			groupMap.Store(h.Gid, h.Gname)
    		}
    	}
    	h.AccessTime = statAtime(sys)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. doc/next/6-stdlib/99-minor/archive/tar/50102.md

    If the argument to [FileInfoHeader] implements the new [FileInfoNames]
    interface, then the interface methods will be used to set the Uname/Gname
    of the file header. This allows applications to override the system-dependent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 243 bytes
    - Viewed (0)
Back to top