Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for unmatched (0.5 sec)

  1. pilot/pkg/config/kube/crdclient/client.go

    	if err != nil {
    		return "", err
    	}
    	return meta.GetResourceVersion(), nil
    }
    
    // Delete implements store interface
    // `resourceVersion` must be matched before deletion is carried out. If not possible, a 409 Conflict status will be
    func (cl *Client) Delete(typ config.GroupVersionKind, name, namespace string, resourceVersion *string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/conversion.go

    			// note: this is same as workloadentry handler
    			// endpoint port will first use the port defined in wle with same port name,
    			// if not port name not match, use the targetPort specified in ServiceEntry
    			// if both not matched, fallback to ServiceEntry port number.
    			var targetPort uint32
    			if port, ok := workloadInstance.PortMap[serviceEntryPort.Name]; ok && port > 0 {
    				targetPort = port
    			} else if serviceEntryPort.TargetPort > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    The complete validation is as follows:
    
    * Existing entries in the lock state must be matched in the build
    ** A version mismatch or missing resolved module causes a build failure
    * Resolution result must not contain extra dependencies compared to the lock state
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. cmd/object-api-utils.go

    		return false
    	}
    
    	if len(cfg.Extensions) > 0 && hasStringSuffixInSlice(objStr, cfg.Extensions) {
    		// Matched an extension to compress, do not exclude.
    		return false
    	}
    
    	if len(cfg.MimeTypes) > 0 && hasPattern(cfg.MimeTypes, contentType) {
    		// Matched an MIME type to compress, do not exclude.
    		return false
    	}
    
    	// Did not match any inclusion filters, exclude from compression.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest-generate_test.go

    						if matches && found != "" {
    							// There must be exactly one match, or we will double inject.
    							t.Fatalf("matched multiple webhooks. Had %v, matched %v", found, sn)
    						}
    						if matches {
    							found = sn
    							match = i
    						}
    					}
    					// If our predicate can tell us the expected match, use that
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  6. pilot/pkg/xds/delta.go

    	wrl := con.watchedResourcesByOrder()
    	for _, w := range wrl {
    		if err := s.pushDeltaXds(con, w, pushRequest); err != nil {
    			return err
    		}
    	}
    
    	if pushRequest.Full {
    		// Report all events for unwatched resources. Watched resources will be reported in pushXds or on ack.
    		reportEventsForUnWatched(con, s.StatusReporter, pushRequest.Push.LedgerVersion)
    	}
    
    	proxiesConvergeDelay.Record(time.Since(pushRequest.Start).Seconds())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. cmd/batch-expire.go

    		return err
    	}
    
    	xhttp.DrainBody(resp.Body)
    	if resp.StatusCode != http.StatusOK {
    		return errors.New(resp.Status)
    	}
    
    	return nil
    }
    
    // Expire expires object versions which have already matched supplied filter conditions
    func (r *BatchJobExpire) Expire(ctx context.Context, api ObjectLayer, vc *versioning.Versioning, objsToDel []ObjectToDelete) []error {
    	opts := ObjectOptions{
    		PrefixEnabledFn:  vc.PrefixEnabled,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

                            return new AttributeMatchDetails(MatchType.EQUAL, requested, requestedValue);
                        }
                    } else {
                        // maybe it matched through coercion
                        Object actualString = actualValue != null ? actualValue.toString() : null;
                        Object requestedString = requestedValue != null ? requestedValue.toString() : null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. cluster/gce/upgrade.sh

    function upgrade-nodes() {
      prepare-node-upgrade
      do-node-upgrade
    }
    
    function setup-base-image() {
      if [[ "${env_os_distro}" == "false" ]]; then
        echo "== Ensuring that new Node base OS image matched the existing Node base OS image"
        NODE_OS_DISTRIBUTION=$(get-node-os "${NODE_NAMES[0]}")
    
        if [[ "${NODE_OS_DISTRIBUTION}" == "cos" ]]; then
            NODE_OS_DISTRIBUTION="gci"
        fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. pkg/controller/daemon/update.go

    	histories, err := dsc.historyLister.ControllerRevisions(ds.Namespace).List(labels.Everything())
    	if err != nil {
    		return nil, err
    	}
    	// If any adoptions are attempted, we should first recheck for deletion with
    	// an uncached quorum read sometime after listing Pods (see #42639).
    	canAdoptFunc := controller.RecheckDeletionTimestamp(func(ctx context.Context) (metav1.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top