Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for remote_ip (0.06 sec)

  1. ci/official/utilities/setup_docker.sh

        CONTAINER_IP_ADDR=$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' tf)
        netsh advfirewall firewall add rule name="Allow Metadata Proxy" dir=in action=allow protocol=TCP localport=80 remoteip="$CONTAINER_IP_ADDR"
      fi
    
    fi
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Aug 09 16:05:18 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. src/packaging/deb/init.d/fess

    # Modified by Nicolas Huray for Fess <******@****.***>.
    #
    ### BEGIN INIT INFO
    # Provides:          fess
    # Required-Start:    $network $remote_fs $named
    # Required-Stop:     $network $remote_fs $named
    # Default-Start:     2 3 4 5
    # Default-Stop:      0 1 6
    # Short-Description: Starts fess
    # Description:       Starts fess using start-stop-daemon
    ### END INIT INFO
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. internal/grid/connection.go

    			continue
    		}
    		t := time.Now().UTC()
    		c.lastConnect.Store(&t)
    		c.reconnectMu.Lock()
    		remoteUUID := uuid.UUID(r.ID)
    		if c.remoteID != nil {
    			c.reconnected()
    		}
    		c.remoteID = &remoteUUID
    		if debugPrint {
    			fmt.Println(c.Local, "Connected Waiting for Messages")
    		}
    		// Handle messages...
    		c.handleMessages(c.ctx, conn)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 29 18:10:04 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  4. cmd/batch-handlers.go

    		return err
    	}
    
    	remoteEp := r.Target.Endpoint
    	remoteBkt := r.Target.Bucket
    	cred := r.Target.Creds
    	pathStyle := r.Target.Path
    
    	if r.Source.Endpoint != "" {
    		remoteEp = r.Source.Endpoint
    		cred = r.Source.Creds
    		remoteBkt = r.Source.Bucket
    		pathStyle = r.Source.Path
    
    	}
    
    	u, err := url.Parse(remoteEp)
    	if err != nil {
    		return err
    	}
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 18 15:32:09 UTC 2024
    - 62.2K bytes
    - Viewed (0)
Back to top