Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for Programmed (0.32 sec)

  1. istioctl/pkg/waypoint/testdata/waypoint/combined-gateway

    NAMESPACE     NAME                   REVISION     PROGRAMMED
    bookinfo      bookinfo-rev           rev1         True
    bookinfo      bookinfo-valid         default      True
    default       bookinfo               default      False
    default       no-name-convention     default      True
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 21:30:40 UTC 2024
    - 338 bytes
    - Viewed (0)
  2. cmd/naughty-disk_test.go

    	"github.com/minio/madmin-go/v3"
    )
    
    // naughtyDisk wraps a POSIX disk and returns programmed errors
    // specified by the developer. The purpose is to simulate errors
    // that are hard to simulate in practice like DiskNotFound.
    // Programmed errors are stored in errors field.
    type naughtyDisk struct {
    	// The real disk
    	disk StorageAPI
    	// Programmed errors: API call number => error to return
    	errors map[int]error
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  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/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)
  9. cmd/bitrot-streaming.go

    func (b *streamingBitrotReader) ReadAt(buf []byte, offset int64) (int, error) {
    	var err error
    	if offset%b.shardSize != 0 {
    		// Offset should always be aligned to b.shardSize
    		// Can never happen unless there are programmer bugs
    		return 0, errUnexpected
    	}
    	if b.rc == nil {
    		// For the first ReadAt() call we need to open the stream for reading.
    		b.currOffset = offset
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. pkg/features/client_adapter.go

    		case clientfeatures.GA:
    			converted.PreRelease = featuregate.GA
    		case clientfeatures.Deprecated:
    			converted.PreRelease = featuregate.Deprecated
    		default:
    			// The default case implies programmer error.  The same set of prerelease
    			// constants must exist in both component-base and client-go, and each one
    			// must have a case here.
    			panic(fmt.Sprintf("unrecognized prerelease %q of feature %q", spec.PreRelease, name))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 16 17:51:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top