Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 311 for DOMAIN (0.17 sec)

  1. pkg/kubelet/network/dns/dns_test.go

    				Nameservers: []string{"203.0.113.1"},
    				Searches:    []string{"my.domain", "second.domain"},
    				Options: []v1.PodDNSConfigOption{
    					{Name: "ndots", Value: &testNdotsOptionValue},
    					{Name: "debug"},
    				},
    			},
    			expectedDNSConfig: &runtimeapi.DNSConfig{
    				Servers:  []string{"203.0.113.1"},
    				Searches: []string{"my.domain", "second.domain"},
    				Options:  []string{"ndots:3", "debug"},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. src/crypto/x509/parser.go

    					}
    				} else {
    					// Otherwise it's a domain name.
    					domain := constraint
    					if len(domain) > 0 && domain[0] == '.' {
    						domain = domain[1:]
    					}
    					if _, ok := domainToReverseLabels(domain); !ok {
    						return nil, nil, nil, nil, fmt.Errorf("x509: failed to parse rfc822Name constraint %q", constraint)
    					}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/isolation.status.yaml.golden

        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
        message: 'Failed to assign to any requested addresses: hostname "isolation-istio.gateway-conformance-infra.svc.domain.suffix"
          not found'
        reason: AddressNotUsable
        status: "False"
        type: Programmed
      listeners:
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. pkg/util/filesystem/util_windows_test.go

    }
    
    // This is required as on Windows it's possible for the socket file backing a Unix domain socket to
    // exist but not be ready for socket communications yet as per
    // https://github.com/kubernetes/kubernetes/issues/104584
    func TestPendingUnixDomainSocket(t *testing.T) {
    	// Create a temporary file that will simulate the Unix domain socket file in a
    	// not-yet-ready state. We need this because the Kubelet keeps an eye on file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:10:26 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/crd/conversion_test.go

    					Namespace:        "default",
    					Domain:           "cluster",
    				},
    				Spec: &gateway.HTTPRouteSpec{
    					Hostnames: []gateway.Hostname{"example.com"},
    				},
    			},
    		},
    		{
    			name: "gateway status",
    			cfg: config.Config{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.HTTPRoute,
    					Name:             "test",
    					Namespace:        "default",
    					Domain:           "cluster",
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

                final String domain = paramMap.get(CRAWLER_WEB_AUTH + "." + webAuthName + ".domain");
                credentials = new NTCredentials(username, password == null ? StringUtil.EMPTY : password,
                        workstation == null ? StringUtil.EMPTY : workstation, domain == null ? StringUtil.EMPTY : domain);
            } else {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. src/net/lookup.go

    	}
    	return cname, filteredAddrs, nil
    }
    
    // LookupMX returns the DNS MX records for the given domain name sorted by preference.
    //
    // The returned mail server names are validated to be properly
    // formatted presentation-format domain names. If the response contains
    // invalid names, those records are filtered out and an error
    // will be returned alongside the remaining results, if any.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt

      ) {
        fun writeOut(sink: BufferedSink) {
          with(sink) {
            writeInt(totalRuleBytes)
            for (domain in sortedRules) {
              write(domain).writeByte(NEWLINE)
            }
            writeInt(totalExceptionRuleBytes)
            for (domain in sortedExceptionRules) {
              write(domain).writeByte(NEWLINE)
            }
          }
        }
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:24:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/app/cmd.go

    	if err != nil {
    		return err
    	}
    	go statusServer.Run(ctx)
    	return nil
    }
    
    func getDNSDomain(podNamespace, domain string) string {
    	if len(domain) == 0 {
    		domain = podNamespace + ".svc." + constants.DefaultClusterLocalDomain
    	}
    	return domain
    }
    
    func configureLogging(_ *cobra.Command, _ []string) error {
    	if err := log.Configure(loggingOptions); err != nil {
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. pkg/util/filesystem/util_test.go

    func TestIsUnixDomainSocket(t *testing.T) {
    	tests := []struct {
    		label          string
    		listenOnSocket bool
    		expectSocket   bool
    		expectError    bool
    		invalidFile    bool
    	}{
    		{
    			label:          "Domain Socket file",
    			listenOnSocket: true,
    			expectSocket:   true,
    			expectError:    false,
    		},
    		{
    			label:       "Non Existent file",
    			invalidFile: true,
    			expectError: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top