Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 209 for sasl (0.07 sec)

  1. src/crypto/tls/handshake_test.go

    	println("")
    	println("You need to build OpenSSL 1.1.1 from source in order")
    	println("to update the test data.")
    	println("")
    	println("Configure it with:")
    	println("./Configure enable-weak-ssl-ciphers no-shared")
    	println("and then add the apps/ directory at the front of your PATH.")
    	println("***********************************************")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/networking/v1beta1/generated.proto

    }
    
    // Ingress is a collection of rules that allow inbound connections to reach the
    // endpoints defined by a backend. An Ingress can be configured to give services
    // externally-reachable urls, load balance traffic, terminate SSL, offer name
    // based virtual hosting etc.
    message Ingress {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

        },
        "node_modules/js-sdsl": {
          "version": "4.4.0",
          "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.4.0.tgz",
          "integrity": "sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==",
          "dev": true,
          "funding": {
            "type": "opencollective",
            "url": "https://opencollective.com/js-sdsl"
          }
        },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

      // Ingress, if left unspecified.
      // +optional
      // +listType=atomic
      repeated string hosts = 1;
    
      // SecretName is the name of the secret used to terminate SSL traffic on 443.
      // Field is left optional to allow SSL routing based on SNI hostname alone.
      // If the SNI host in a listener conflicts with the "Host" header field used
      // by an IngressRule, the SNI host is used for termination and value of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    					op = fmt.Sprintf("%sS", op)
    					break
    				} else if rno >= uint16(D0) && rno <= uint16(D31) {
    					op = fmt.Sprintf("%sD", op)
    					break
    				}
    			}
    		}
    
    	case SYSL:
    		op1 := int(inst.Args[1].(Imm).Imm)
    		cn := int(inst.Args[2].(Imm_c))
    		cm := int(inst.Args[3].(Imm_c))
    		op2 := int(inst.Args[4].(Imm).Imm)
    		sysregno := int32(op1<<16 | cn<<12 | cm<<8 | op2<<5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/networking/v1beta1/generated.proto

    }
    
    // Ingress is a collection of rules that allow inbound connections to reach the
    // endpoints defined by a backend. An Ingress can be configured to give services
    // externally-reachable urls, load balance traffic, terminate SSL, offer name
    // based virtual hosting etc.
    message Ingress {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// +optional
    	// +listType=atomic
    	Hosts []string `json:"hosts,omitempty" protobuf:"bytes,1,rep,name=hosts"`
    	// SecretName is the name of the secret used to terminate SSL traffic on 443.
    	// Field is left optional to allow SSL routing based on SNI hostname alone.
    	// If the SNI host in a listener conflicts with the "Host" header field used
    	// by an IngressRule, the SNI host is used for termination and value of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/controller_policy.go

    		}
    	}
    
    	*controllerRoles = append(*controllerRoles, role)
    	addClusterRoleLabel(*controllerRoles)
    
    	*controllerRoleBindings = append(*controllerRoleBindings,
    		rbacv1helpers.NewClusterBinding(role.Name).SAs("kube-system", role.Name[len(saRolePrefix):]).BindingOrDie())
    	addClusterRoleBindingLabel(*controllerRoleBindings)
    }
    
    func eventsRule() rbacv1.PolicyRule {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  9. tests/integration/security/sds_ingress/util/util.go

    // RunTestMultiTLSGateways deploys multiple TLS gateways with SDS enabled, and creates kubernetes secret that stores
    // private key and server certificate for each TLS gateway. Verifies that all gateways are able to terminate
    // SSL connections successfully.
    func RunTestMultiTLSGateways(t framework.TestContext, inst istio.Instance, ns namespace.Getter) { // nolint:interfacer
    	var credNames []string
    	var tests []TestConfig
    	echotest.New(t, A).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    			return "GE"
    		}
    	case 6:
    		if invert {
    			return "LE"
    		} else {
    			return "GT"
    		}
    	case 7:
    		return "AL"
    	}
    	return ""
    }
    
    // An Imm_c is an integer constant for SYS/SYSL/TLBI instruction.
    type Imm_c uint8
    
    func (Imm_c) isArg() {}
    
    func (i Imm_c) String() string {
    	return fmt.Sprintf("C%d", uint8(i))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top