Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 96 for Programmed (0.19 sec)

  1. pilot/pkg/config/kube/gateway/context.go

    								break
    							}
    						}
    						// If this is a managed gateway, the only possible explanation for no instances for the port
    						// is a delay in endpoint sync. Therefore, we don't want to warn/change the Programmed condition
    						// in this case as long as the port exists on the `Service` object.
    						if !isManaged || !portExistsOnService {
    							warnings = append(warnings, fmt.Sprintf("port %d not found for hostname %q", port, g))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 18:33:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. cluster/addons/calico-policy-controller/felixconfigurations-crd.yaml

                  deviceRouteProtocol:
                    description: This defines the route protocol added to programmed device
                      routes, by default this will be RTPROT_BOOT when left blank.
                    type: integer
                  deviceRouteSourceAddress:
                    description: This is the source address to use on programmed device
                      routes. By default the source address is left blank, leaving the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 29.1K bytes
    - Viewed (0)
  3. tests/integration/pilot/gateway_test.go

    spec:
      gatewayClassName: istio
      listeners:
      - name: default
        hostname: "*.example.com"
        port: 80
        protocol: HTTP
    `).ApplyOrFail(t)
    
    	// Make sure Gateway becomes programmed..
    	client := t.Clusters().Default().GatewayAPI().GatewayV1beta1().Gateways(apps.Namespace.Name())
    	check := func() error {
    		gw, _ := client.Get(context.Background(), "managed-owner", metav1.GetOptions{})
    		if gw == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    		string(k8s.GatewayConditionProgrammed): {
    			reason:  string(k8s.GatewayReasonProgrammed),
    			message: "Resource programmed",
    		},
    	}
    
    	if gatewayErr != nil {
    		gatewayConditions[string(k8s.GatewayConditionAccepted)].error = gatewayErr
    	}
    
    	if len(internal) > 0 {
    		msg := fmt.Sprintf("Resource programmed, assigned to service(s) %s", humanReadableJoin(internal))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

          name: Class
          type: string
        - jsonPath: .status.addresses[*].value
          name: Address
          type: string
        - jsonPath: .status.conditions[?(@.type=="Programmed")].status
          name: Programmed
          type: string
        - jsonPath: .metadata.creationTimestamp
          name: Age
          type: date
        name: v1
        schema:
          openAPIV3Schema:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  6. prow/config/calico.yaml

                  deviceRouteProtocol:
                    description: This defines the route protocol added to programmed device
                      routes, by default this will be RTPROT_BOOT when left blank.
                    type: integer
                  deviceRouteSourceAddress:
                    description: This is the IPv4 source address to use on programmed
                      device routes. By default the source address is left blank, leaving
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/gateway-api-crd.yaml

          name: Class
          type: string
        - jsonPath: .status.addresses[*].value
          name: Address
          type: string
        - jsonPath: .status.conditions[?(@.type=="Programmed")].status
          name: Programmed
          type: string
        - jsonPath: .metadata.creationTimestamp
          name: Age
          type: date
        name: v1
        schema:
          openAPIV3Schema:
            description: |-
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  8. docs/fr/docs/deployment/manually.md

    
    ## Installer le programme serveur
    
    Vous pouvez installer un serveur compatible ASGI avec :
    
    === "Uvicorn"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 04 12:02:09 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/types_proto.go

    	if b != nil {
    		if r, ok := b.(ProtobufReverseMarshaller); ok {
    			n1, err := r.MarshalToSizedBuffer(data[:i])
    			if err != nil {
    				return 0, err
    			}
    			i -= int(size)
    			if uint64(n1) != size {
    				// programmer error: the Size() method for protobuf does not match the results of LashramOt, which means the proto
    				// struct returned would be wrong.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 25 18:54:00 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  10. docs/fr/docs/async.md

    * de la donnée soit envoyée par le client à travers le réseau
    * de la donnée envoyée depuis votre programme soit reçue par le client à travers le réseau
    * le contenu d'un fichier sur le disque soit lu par le système et passé à votre programme
    * le contenu que votre programme a passé au système soit écrit sur le disque
    * une opération effectuée à distance par une API se termine
    * une opération en BDD se termine
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top