Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 220 for Sysname (0.28 sec)

  1. pkg/config/validation/agent/validation.go

    			return validateSidecarOrGatewayHostnamePart(hostname, true)
    		}
    		errs = AppendErrors(errs, fmt.Errorf("host must be of form namespace/dnsName"))
    		return
    	}
    
    	if len(parts[0]) == 0 || len(parts[1]) == 0 {
    		errs = AppendErrors(errs, fmt.Errorf("config namespace and dnsName in host entry cannot be empty"))
    	}
    
    	if !isGateway {
    		// namespace can be * or . or ~ or a valid DNS label in sidecars
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader_test.go

    		}
    	}
    
    	// ... then data.
    	dat := sb2.Data()
    	if !bytes.Equal(dat, d2) {
    		t.Errorf("expected es2 data %v, got %v", d2, dat)
    	}
    
    	// Nameless symbol should still be nameless.
    	es3name := ldr.SymName(es3)
    	if "" != es3name {
    		t.Errorf("expected es3 name of '', got '%s'", es3name)
    	}
    
    	// Read value of materialized symbol.
    	es1val := sb1.Value()
    	if 0 != es1val {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/elf.go

    			}
    			if !ldr.AttrReachable(rr.Xsym) {
    				ldr.Errorf(s, "unreachable reloc %d (%s) target %v", r.Type(), sym.RelocName(ctxt.Arch, r.Type()), ldr.SymName(rr.Xsym))
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Utime", Func, 0},
    		{"Utimes", Func, 0},
    		{"UtimesNano", Func, 1},
    		{"Utsname", Type, 0},
    		{"Utsname.Domainname", Field, 0},
    		{"Utsname.Machine", Field, 0},
    		{"Utsname.Nodename", Field, 0},
    		{"Utsname.Release", Field, 0},
    		{"Utsname.Sysname", Field, 0},
    		{"Utsname.Version", Field, 0},
    		{"VDISCARD", Const, 0},
    		{"VDSUSP", Const, 1},
    		{"VEOF", Const, 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)
  5. cluster/gce/windows/smoke-test.sh

      local service_ip
      service_ip=$($kubectl get service --namespace kube-system $service \
        -o jsonpath='{.spec.clusterIP}')
    
      if ! $kubectl exec "$windows_command_pod" -- powershell.exe \
          "Resolve-DnsName www.bing.com -server $service_ip" > $output_file; then
        cleanup_deployments
        echo "Failing output: $(cat $output_file)"
        echo "FAILED: ${FUNCNAME[0]}"
        exit 1
      fi
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. src/crypto/x509/parser.go

    			}
    			emailAddresses = append(emailAddresses, email)
    		case nameTypeDNS:
    			name := string(data)
    			if err := isIA5String(name); err != nil {
    				return errors.New("x509: SAN dNSName is malformed")
    			}
    			dnsNames = append(dnsNames, string(name))
    		case nameTypeURI:
    			uriStr := string(data)
    			if err := isIA5String(uriStr); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client.go

    				c.sendAlert(alertBadCertificate)
    				return err
    			}
    		} else {
    			opts := x509.VerifyOptions{
    				Roots:         c.config.RootCAs,
    				CurrentTime:   c.config.time(),
    				DNSName:       c.serverName,
    				Intermediates: x509.NewCertPool(),
    			}
    
    			for _, cert := range certs[1:] {
    				opts.Intermediates.AddCert(cert)
    			}
    			var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		}
    	} else {
    		if typ == "" {
    			log.Fatalf("sub-expression %s (op=Op%s%s) at %s must have a type", result, oparch, op.name, rr.Loc)
    		}
    		if resname == "" {
    			v = fmt.Sprintf("v%d", rr.Alloc)
    		} else {
    			v = resname
    		}
    		rr.Alloc++
    		rr.add(declf(rr.Loc, v, "b.NewValue0(%s, Op%s%s, %s)", pos, oparch, op.name, typ))
    		if move && top {
    			// Rewrite original into a copy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  9. src/crypto/x509/name_constraints_test.go

    			},
    		},
    		intermediates: [][]constraintsSpec{
    			{
    				{},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"dns:this is invalid"},
    		},
    		expectedError: "cannot parse dnsName",
    	},
    
    	// #79: an invalid email SAN will be detected if any name constraint
    	// checking is triggered.
    	{
    		roots: []constraintsSpec{
    			{
    				bad: []string{"uri:"},
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    		} else {
    			// pure HTTP headless services should not need a full push since they do not
    			// require a Listener based on IP: https://github.com/istio/istio/issues/48207
    			configsUpdated.Insert(model.ConfigKey{Kind: kind.DNSName, Name: config.Name, Namespace: config.Namespace})
    		}
    	}
    
    	if len(configsUpdated) > 0 {
    		// For headless services, trigger a full push.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top