Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for fmtE (0.03 sec)

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

    	if cfg.Spec == nil {
    		return "", fmt.Errorf("nil spec for %v/%v", cfg.Name, cfg.Namespace)
    	}
    
    	meta, err := update(cl.client, cfg, getObjectMetadata(cfg))
    	if err != nil {
    		return "", err
    	}
    	return meta.GetResourceVersion(), nil
    }
    
    func (cl *Client) UpdateStatus(cfg config.Config) (string, error) {
    	if cfg.Status == nil {
    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/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    	if customResourceDefinition == nil {
    		return nil, fmt.Errorf("customResourceDefinition provided to Apply must not be nil")
    	}
    	patchOpts := opts.ToPatchOptions()
    	data, err := json.Marshal(customResourceDefinition)
    	if err != nil {
    		return nil, err
    	}
    	name := customResourceDefinition.Name
    	if name == nil {
    		return nil, fmt.Errorf("customResourceDefinition.Name must be provided to Apply")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    	if customResourceDefinition == nil {
    		return nil, fmt.Errorf("customResourceDefinition provided to Apply must not be nil")
    	}
    	patchOpts := opts.ToPatchOptions()
    	data, err := json.Marshal(customResourceDefinition)
    	if err != nil {
    		return nil, err
    	}
    	name := customResourceDefinition.Name
    	if name == nil {
    		return nil, fmt.Errorf("customResourceDefinition.Name must be provided to Apply")
    	}
    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. pkg/config/analysis/analyzers/analyzers_test.go

    		err := sa.AddFileKubeMeshConfig(tc.meshConfigFile)
    		if err != nil {
    			return nil, fmt.Errorf("error applying mesh config file %s: %v", tc.meshConfigFile, err)
    		}
    	}
    
    	if tc.meshNetworksFile != "" {
    		err := sa.AddFileKubeMeshNetworks(tc.meshNetworksFile)
    		if err != nil {
    			return nil, fmt.Errorf("error apply mesh networks file %s: %v", tc.meshNetworksFile, err)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry_logging.go

    			return
    		} else if len(namespaces) > 1 {
    			err = fmt.Errorf("found %s in multiple namespaces %v, specify the namespace explicitly in "+
    				"the format of <Namespace>/<Hostname>", service, namespaces)
    			return
    		}
    	}
    
    	err = fmt.Errorf("could not find service %s in Istio service registry", service)
    	return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_waypoint.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package core
    
    import (
    	"fmt"
    	"net/netip"
    	"strconv"
    	"time"
    
    	xds "github.com/cncf/xds/go/xds/core/v3"
    	matcher "github.com/cncf/xds/go/xds/type/matcher/v3"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. pilot/pkg/xds/delta.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package xds
    
    import (
    	"errors"
    	"fmt"
    	"strconv"
    	"strings"
    	"time"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"google.golang.org/grpc/codes"
    	"google.golang.org/grpc/peer"
    	"google.golang.org/grpc/status"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top