Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 285 for errf (0.04 sec)

  1. pilot/pkg/bootstrap/configcontroller.go

    					}).
    					Run(stop)
    				return nil
    			})
    		}
    	}
    	if features.EnableAnalysis {
    		if err := s.initInprocessAnalysisController(args); err != nil {
    			return err
    		}
    	}
    	var err error
    	s.RWConfigStore, err = configaggregate.MakeWriteableCache(s.ConfigStores, configController)
    	if err != nil {
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    			// label if it is empty.
    			if err == nil && p.verifyDNSLength {
    				err = &labelError{s, "A4"}
    			}
    			continue
    		}
    		if strings.HasPrefix(label, acePrefix) {
    			u, err2 := decode(label[len(acePrefix):])
    			if err2 != nil {
    				if err == nil {
    					err = err2
    				}
    				// Spec says keep the old label.
    				continue
    			}
    			labels.set(u)
    			if err == nil && p.fromPuny != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  3. internal/rest/rpc-stats.go

    import (
    	"net/http"
    	"net/http/httptrace"
    	"sync/atomic"
    	"time"
    )
    
    var globalStats = struct {
    	errs uint64
    
    	tcpDialErrs     uint64
    	tcpDialCount    uint64
    	tcpDialTotalDur uint64
    }{}
    
    // RPCStats holds information about the DHCP/TCP metrics and errors
    type RPCStats struct {
    	Errs uint64
    
    	DialAvgDuration uint64
    	DialErrs        uint64
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 16:27:58 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/config.go

    	}
    
    	// Only tolerate load errors if the file appears to be one of the two legacy plugin configs
    	unstructuredData := map[string]interface{}{}
    	if err2 := yaml.Unmarshal(data, &unstructuredData); err2 != nil {
    		return nil, err
    	}
    	_, isLegacyImagePolicy := unstructuredData["imagePolicy"]
    	_, isLegacyPodNodeSelector := unstructuredData["podNodeSelectorPluginConfig"]
    	if !isLegacyImagePolicy && !isLegacyPodNodeSelector {
    		return nil, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/deployment/builder.go

    		b = b.WithConfig(cfg).(*builder)
    	}
    
    	// bail early if there were issues during the configuration stage
    	if b.errs != nil {
    		return nil, b.errs
    	}
    
    	if err = b.deployServices(); err != nil {
    		return
    	}
    	if out, err = b.deployInstances(); err != nil {
    		return
    	}
    	return
    }
    
    func (b *builder) getOrCreateNamespace(prefix string) (*builder, namespace.Instance) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. cmd/kube-scheduler/app/options/options.go

    func (o *Options) Validate() []error {
    	var errs []error
    
    	if err := validation.ValidateKubeSchedulerConfiguration(o.ComponentConfig); err != nil {
    		errs = append(errs, err.Errors()...)
    	}
    	errs = append(errs, o.SecureServing.Validate()...)
    	errs = append(errs, o.Authentication.Validate()...)
    	errs = append(errs, o.Authorization.Validate()...)
    	errs = append(errs, o.Metrics.Validate()...)
    
    	return errs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/quantization_context.cc

          llvm::errs() << ",";
        }
        llvm::errs() << ") -> (";
        for (auto i = 0; i < op.getNumResults(); ++i) {
          if (auto params = GetResultParams(op, i))
            params.print(llvm::errs());
          else
            llvm::errs() << "_";
          llvm::errs() << ",";
        }
        llvm::errs() << ")\n";
      });
    }
    
    // A heuristic to get quantization parameters satisfies the same scale
    // constraints:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. cmd/peer-s3-client.go

    			if slices.Contains(client.GetPools(), poolIdx) {
    				perPoolErrs = append(perPoolErrs, errs[i])
    			}
    		}
    		quorum := len(perPoolErrs) / 2
    		if poolErr := reduceWriteQuorumErrs(ctx, perPoolErrs, bucketOpIgnoredErrs, quorum); poolErr != nil {
    			return madmin.HealResultItem{}, poolErr
    		}
    	}
    
    	for i, err := range errs {
    		if err == nil {
    			return healBucketResults[i], nil
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/test/runtime_helper_test.go

    				ContentType: runtime.ContentTypeJSON,
    			},
    		},
    	}
    
    	_, codecs := TestScheme()
    	Codec := apitesting.TestCodec(codecs, testapigroup.SchemeGroupVersion)
    
    	if errs := runtime.DecodeList(pl.Items, Codec); len(errs) != 0 {
    		t.Fatalf("unexpected error %v", errs)
    	}
    	if pod, ok := pl.Items[1].(*testapigroup.Carp); !ok || pod.Name != "test" {
    		t.Errorf("object not converted: %#v", pl.Items[1])
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 01 19:31:12 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  10. plugin/pkg/admission/runtimeclass/admission_test.go

    			errs := setOverhead(attrs, tc.pod, tc.runtimeClass)
    			if tc.expectError {
    				assert.NotEmpty(t, errs)
    			} else {
    				assert.Empty(t, errs)
    			}
    		})
    	}
    }
    
    func TestSetScheduling(t *testing.T) {
    	tests := []struct {
    		name         string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 17 01:30:14 UTC 2022
    - 17.5K bytes
    - Viewed (0)
Back to top