Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 220 for Sysname (0.2 sec)

  1. security/pkg/pki/util/verify_cert.go

    		san := host
    		// uri scheme is currently not supported in go VerifyOptions. We verify
    		// this uri at the end as a special case.
    		if strings.HasPrefix(host, "spiffe") {
    			san = ""
    		}
    		opts.DNSName = san
    	}
    	opts.KeyUsages = append(opts.KeyUsages, x509.ExtKeyUsageAny)
    
    	if _, err = cert.Verify(opts); err != nil {
    		return fmt.Errorf("failed to verify certificate: " + err.Error())
    	}
    	if privPem != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 05 10:37:29 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/predicates.go

    		return tpar.is(func(t *term) bool { return t != nil && isBasic(t.typ, info) })
    	}
    	return isBasic(t, info)
    }
    
    // hasName reports whether t has a name. This includes
    // predeclared types, defined types, and type parameters.
    // hasName may be called with types that are not fully set up.
    func hasName(t Type) bool {
    	switch Unalias(t).(type) {
    	case *Basic, *Named, *TypeParam:
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. src/go/types/predicates.go

    		return tpar.is(func(t *term) bool { return t != nil && isBasic(t.typ, info) })
    	}
    	return isBasic(t, info)
    }
    
    // hasName reports whether t has a name. This includes
    // predeclared types, defined types, and type parameters.
    // hasName may be called with types that are not fully set up.
    func hasName(t Type) bool {
    	switch Unalias(t).(type) {
    	case *Basic, *Named, *TypeParam:
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/zz_generated.conversion.go

    }
    
    func autoConvert_v1alpha1_UDSTransport_To_apiserver_UDSTransport(in *UDSTransport, out *apiserver.UDSTransport, s conversion.Scope) error {
    	out.UDSName = in.UDSName
    	return nil
    }
    
    // Convert_v1alpha1_UDSTransport_To_apiserver_UDSTransport is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

    import static com.tngtech.archunit.core.domain.properties.HasModifiers.Predicates.modifier;
    import static com.tngtech.archunit.core.domain.properties.HasName.Functions.GET_NAME;
    import static com.tngtech.archunit.core.domain.properties.HasName.Predicates.nameMatching;
    import static com.tngtech.archunit.core.domain.properties.HasType.Functions.GET_RAW_TYPE;
    import static java.util.stream.Collectors.toSet;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    }
    
    // UDSTransport provides the information to connect to konnectivity server via UDS
    type UDSTransport struct {
    	// UDSName is the name of the unix domain socket to connect to konnectivity server
    	// This does not use a unix:// prefix. (Eg: /etc/srv/kubernetes/konnectivity-server/konnectivity-server.socket)
    	UDSName string
    }
    
    // TLSConfig provides the authentication information to connect to konnectivity server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. security/pkg/pki/util/san.go

    	// SAN field (see https://tools.ietf.org/html/rfc5280#appendix-A.2)
    	//
    	// SubjectAltName ::= GeneralNames
    	//
    	// GeneralNames ::= SEQUENCE SIZE (1..MAX) OF GeneralName
    	//
    	// GeneralName ::= CHOICE {
    	//      dNSName                         [2]     IA5String,
    	//      uniformResourceIdentifier       [6]     IA5String,
    	//      iPAddress                       [7]     OCTET STRING,
    	// }
    	oidTagMap = map[IdentityType]int{
    		TypeDNS: 2,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 14 06:50:22 UTC 2022
    - 6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loadxcoff/ldxcoff.go

    			continue
    		}
    
    		s := l.LookupOrCreateSym(sx.Name, 0)
    
    		// Text symbol
    		if l.SymType(s) == sym.STEXT {
    			if l.AttrOnList(s) {
    				return errorf("symbol %s listed multiple times", l.SymName(s))
    			}
    			l.SetAttrOnList(s, true)
    			textp = append(textp, s)
    		}
    	}
    
    	// Read relocations
    	for _, sect := range ldSections {
    		// TODO(aix): Dwarf section relocation if needed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. src/cmd/fix/main.go

    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: go tool fix [-diff] [-r fixname,...] [-force fixname,...] [path ...]\n")
    	flag.PrintDefaults()
    	fmt.Fprintf(os.Stderr, "\nAvailable rewrites are:\n")
    	sort.Sort(byName(fixes))
    	for _, f := range fixes {
    		if f.disabled {
    			fmt.Fprintf(os.Stderr, "\n%s (disabled)\n", f.name)
    		} else {
    			fmt.Fprintf(os.Stderr, "\n%s\n", f.name)
    		}
    		desc := strings.TrimSpace(f.desc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    }
    
    // UDSTransport provides the information to connect to konnectivity server via UDS
    type UDSTransport struct {
    	// UDSName is the name of the unix domain socket to connect to konnectivity server
    	// This does not use a unix:// prefix. (Eg: /etc/srv/kubernetes/konnectivity-server/konnectivity-server.socket)
    	UDSName string `json:"udsName,omitempty"`
    }
    
    // TLSConfig provides the authentication information to connect to konnectivity server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top