Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Replies (0.45 sec)

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

    	}
    
    	meta, err := updateStatus(cl.client, cfg, getObjectMetadata(cfg))
    	if err != nil {
    		return "", err
    	}
    	return meta.GetResourceVersion(), nil
    }
    
    // Patch applies only the modifications made in the PatchFunc rather than doing a full replace. Useful to avoid
    // read-modify-write conflicts when there are many concurrent-writers to the same resource.
    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. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    	return c.client.Delete().
    		Namespace(c.ns).
    		Resource("examples").
    		VersionedParams(&listOpts, scheme.ParameterCodec).
    		Timeout(timeout).
    		Body(&opts).
    		Do(ctx).
    		Error()
    }
    
    // Patch applies the patch and returns the patched example.
    func (c *examples) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (result *v1.Example, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    	}
    	return c.client.Delete().
    		Resource("customresourcedefinitions").
    		VersionedParams(&listOpts, scheme.ParameterCodec).
    		Timeout(timeout).
    		Body(&opts).
    		Do(ctx).
    		Error()
    }
    
    // Patch applies the patch and returns the patched customResourceDefinition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    	}
    	return c.client.Delete().
    		Resource("customresourcedefinitions").
    		VersionedParams(&listOpts, scheme.ParameterCodec).
    		Timeout(timeout).
    		Body(&opts).
    		Do(ctx).
    		Error()
    }
    
    // Patch applies the patch and returns the patched customResourceDefinition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. pilot/pkg/xds/delta.go

    		return s.pushDeltaXds(con, dwr, request)
    	}
    	return nil
    }
    
    // shouldRespondDelta determines whether this request needs to be responded back. It applies the ack/nack rules as per xds protocol
    // using WatchedResource for previous state and discovery request for the current state.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    	// Capacity of the channel for receiving pod lifecycle events. This number
    	// is a bit arbitrary and may be adjusted in the future.
    	plegChannelCapacity = 1000
    
    	// Generic PLEG relies on relisting for discovering container events.
    	// A longer period means that kubelet will take longer to detect container
    	// changes and to update pod status. On the other hand, a shorter period
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    	routeHost := host.Name(rawRouteHost)
    	ourListener := host.Name(r.Hostname)
    	if len(ourListener) > 0 && !ourListener.IsWildCarded() {
    		// Short circuit: this logic only applies to wildcards
    		// Not required for correctness, just an optimization
    		return true
    	}
    	if len(ourListener) > 0 && !routeHost.Matches(ourListener) {
    		return false
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    	if err != nil {
    		// We want all cleanup tasks to be run even if one of them failed. So
    		// we just log an error here and continue other cleanup tasks.
    		// This also applies to the other clean up tasks.
    		klog.ErrorS(err, "Failed cleaning up orphaned pod directories")
    	}
    
    	// Remove any orphaned mirror pods (mirror pods are tracked by name via the
    	// pod worker)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. docs/en/docs/release-notes.md

        * Composite bodies' IDs are now based on path, not only on route name, as the auto-generated name uses the function names, that can be duplicated in different modules.
        * The same new ID generation applies to response models.
        * This also changes the generated title for those models.
        * Only composite bodies and response models are affected because those are generated dynamically, they don't have a module (a Python file).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top