Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of about 10,000 for Bind (0.08 sec)

  1. src/net/conf.go

    			// "If the lookup keyword is not used in the
    			// system's resolv.conf file then the assumed
    			// order is 'bind file'"
    			return hostLookupDNSFiles, dnsConf
    		}
    		if len(lookup) < 1 || len(lookup) > 2 {
    			// We don't recognize this format.
    			return fallbackOrder, dnsConf
    		}
    		switch lookup[0] {
    		case "bind":
    			if len(lookup) == 2 {
    				if lookup[1] == "file" {
    					return hostLookupDNSFiles, dnsConf
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. src/net/dnsconfig_unix.go

    					conf.unknownOpt = true
    				}
    			}
    
    		case "lookup":
    			// OpenBSD option:
    			// https://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man5/resolv.conf.5
    			// "the legal space-separated values are: bind, file, yp"
    			conf.lookup = f[1:]
    
    		default:
    			conf.unknownOpt = true
    		}
    	}
    	if len(conf.servers) == 0 {
    		conf.servers = defaultNS
    	}
    	if len(conf.search) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:14:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. pkg/volume/util/hostutil/hostutil.go

        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    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 hostutil
    
    import (
    	"fmt"
    	"os"
    
    	"k8s.io/mount-utils"
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 13:38:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. maven-di/src/main/java/org/apache/maven/di/Key.java

     *
     * Unless required by applicable law or agreed to in writing,
     * software distributed under the License is distributed on an
     * "AS IS" BASIS, 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 org.apache.maven.di;
    
    import java.lang.reflect.ParameterizedType;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonInitialCommunicationFailureIntegrationSpec.groovy

     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * 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 org.gradle.launcher.daemon
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 07:46:29 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway_test.go

    								Bind:  "10.0.0.2",
    							},
    						},
    					},
    				},
    				{
    					Meta: config.Meta{Name: "gateway3", Namespace: "testns", GroupVersionKind: gvk.Gateway},
    					Spec: &networking.Gateway{
    						Servers: []*networking.Server{
    							{
    								Port:  &networking.Port{Name: "https", Number: 8000, Protocol: "HTTPS"},
    								Hosts: []string{"*"},
    								Bind:  "10.0.0.3",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * 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 org.gradle.api.internal
    
    import org.gradle.api.Action
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/ScopedRuleTest.groovy

     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * 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 org.gradle.model.internal.registry
    
    import org.gradle.api.Plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. pkg/util/filesystem/util_windows.go

        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    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 filesystem
    
    import (
    	"fmt"
    	"net"
    	"os"
    	"path/filepath"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. src/syscall/netlink_linux.go

    	s, err := Socket(AF_NETLINK, SOCK_RAW|SOCK_CLOEXEC, NETLINK_ROUTE)
    	if err != nil {
    		return nil, err
    	}
    	defer Close(s)
    	sa := &SockaddrNetlink{Family: AF_NETLINK}
    	if err := Bind(s, sa); err != nil {
    		return nil, err
    	}
    	wb := newNetlinkRouteRequest(proto, 1, family)
    	if err := Sendto(s, wb, 0, sa); err != nil {
    		return nil, err
    	}
    	lsa, err := Getsockname(s)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top