Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 158 for sethostname (0.2 sec)

  1. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                        response.addressArray[ i ].hostName.srcHashCode = srcHashCode;
                    }
                    return response.addressArray;
                }
            }
            throw new UnknownHostException(addr.getHostName());
        }
    
    
        @Override
        public NbtAddress getNbtByName ( String host ) throws UnknownHostException {
            return getNbtByName(host, 0x00, null);
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg syscall (linux-386), func Setfsuid(int) error
    pkg syscall (linux-386), func Setgid(int) error
    pkg syscall (linux-386), func Setgroups([]int) error
    pkg syscall (linux-386), func Sethostname([]uint8) error
    pkg syscall (linux-386), func Setpgid(int, int) error
    pkg syscall (linux-386), func Setregid(int, int) error
    pkg syscall (linux-386), func Setresgid(int, int, int) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Setegid", Func, 0},
    		{"Setenv", Func, 0},
    		{"Seteuid", Func, 0},
    		{"Setfsgid", Func, 0},
    		{"Setfsuid", Func, 0},
    		{"Setgid", Func, 0},
    		{"Setgroups", Func, 0},
    		{"Sethostname", Func, 0},
    		{"Setlogin", Func, 0},
    		{"Setpgid", Func, 0},
    		{"Setpriority", Func, 0},
    		{"Setprivexec", Func, 0},
    		{"Setregid", Func, 0},
    		{"Setresgid", Func, 0},
    		{"Setresuid", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/Type3Message.java

            setFlags(getDefaultFlags(tc));
            setDomain(tc.getConfig().getDefaultDomain());
            setUser(tc.getConfig().getDefaultUsername());
            setWorkstation(tc.getNameServiceClient().getLocalHost().getHostName());
        }
    
    
        /**
         * Creates a Type-3 message in response to the given Type-2 message.
         * 
         * @param tc
         *            context to use
         * @param type2
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 30.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/NbtAddress.java

     * The hostname of this address. If the hostname is null the local machines
     * IP address is returned.
     *
     * @return the text representation of the hostname associated with this address
     */ 
    
        public String getHostName() {
            /* 2010 - We no longer try a Node Status to get the
             * hostname because apparently some servers do not respond
             * anymore. I think everyone post Windows 98 will accept
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    func TestURLsCost(t *testing.T) {
    	cases := []struct {
    		ops                []string
    		expectEsimatedCost checker.CostEstimate
    		expectRuntimeCost  uint64
    	}{
    		{
    			ops:                []string{".getScheme()", ".getHostname()", ".getHost()", ".getPort()", ".getEscapedPath()", ".getQuery()"},
    			expectEsimatedCost: checker.CostEstimate{Min: 4, Max: 4},
    			expectRuntimeCost:  4,
    		},
    	}
    
    	for _, tc := range cases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/attach_detach_controller.go

    }
    
    func (adc *attachDetachController) GetMounter(pluginName string) mount.Interface {
    	return nil
    }
    
    func (adc *attachDetachController) GetHostName() string {
    	return ""
    }
    
    func (adc *attachDetachController) GetHostIP() (net.IP, error) {
    	return nil, fmt.Errorf("GetHostIP() not supported by Attach/Detach controller's VolumeHost implementation")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. cmd/utils.go

    	object := likelyUnescapeGeneric(vars["object"], url.PathUnescape)
    	reqInfo := &logger.ReqInfo{
    		DeploymentID: globalDeploymentID(),
    		RequestID:    reqID,
    		RemoteHost:   handlers.GetSourceIP(r),
    		Host:         getHostName(r),
    		UserAgent:    r.UserAgent(),
    		API:          api,
    		BucketName:   bucket,
    		ObjectName:   object,
    		VersionID:    strings.TrimSpace(r.Form.Get(xhttp.VersionID)),
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  9. pkg/kubelet/server/server.go

    	GetKubeletContainerLogs(ctx context.Context, podFullName, containerName string, logOptions *v1.PodLogOptions, stdout, stderr io.Writer) error
    	ServeLogs(w http.ResponseWriter, req *http.Request)
    	ResyncInterval() time.Duration
    	GetHostname() string
    	LatestLoopEntryTime() time.Time
    	GetExec(ctx context.Context, podFullName string, podUID types.UID, containerName string, cmd []string, streamOpts remotecommandserver.Options) (*url.URL, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  10. pkg/volume/plugins.go

    	// Get mounter interface.
    	GetMounter(pluginName string) mount.Interface
    
    	// Returns the hostname of the host kubelet is running on
    	GetHostName() string
    
    	// Returns host IP or nil in the case of error.
    	GetHostIP() (net.IP, error)
    
    	// Returns node allocatable.
    	GetNodeAllocatable() (v1.ResourceList, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top