Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for locals (0.17 sec)

  1. pkg/config/validation/validation_test.go

    				ConsecutiveErrors: 101,
    			},
    			valid: true,
    			warn:  true,
    		},
    		{
    			name: "consecutive local origin errors is set but split local origin errors is not set", in: &networking.OutlierDetection{
    				ConsecutiveLocalOriginFailures: &wrapperspb.UInt32Value{Value: 10},
    			},
    			valid: false,
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	Scope AST
    	Name  AST
    
    	// The LocalName field is true if this is parsed as a
    	// <local-name>.  We shouldn't really need this, but in some
    	// cases (for the unary sizeof operator) the standard
    	// demangler prints a local name slightly differently.  We
    	// keep track of this for compatibility.
    	LocalName bool // A full local name encoding
    }
    
    func (q *Qualified) print(ps *printState) {
    	ps.print(q.Scope)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	}
    	fmt.Fprintf(h, "goos %s goarch %s\n", cfg.Goos, cfg.Goarch)
    	fmt.Fprintf(h, "import %q\n", p.ImportPath)
    	fmt.Fprintf(h, "omitdebug %v standard %v local %v prefix %q\n", p.Internal.OmitDebug, p.Standard, p.Internal.Local, p.Internal.LocalPrefix)
    	if cfg.BuildTrimpath {
    		fmt.Fprintln(h, "trimpath")
    	}
    	if p.Internal.ForceLibrary {
    		fmt.Fprintf(h, "forcelibrary\n")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    //
    // Because the kubelet has no local store of information, all actions in this method that modify
    // on-disk state must be reentrant and be garbage collected by HandlePodCleanups or a separate loop.
    // This typically occurs when a pod is force deleted from configuration (local disk or API) and the
    // kubelet restarts in the middle of the action.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_control_test.go

    	// state, or to create a fake client that does not use a local cache.
    
    	// The client is passed initial sets, so we have to put them in the local setsIndexer cache.
    	if sets, err := client.AppsV1().StatefulSets("").List(context.TODO(), metav1.ListOptions{}); err != nil {
    		panic(err)
    	} else {
    		for _, set := range sets.Items {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    				},
    				Status: api.ServiceStatus{
    					LoadBalancer: api.LoadBalancerStatus{
    						Ingress: []api.LoadBalancerIngress{
    							{
    								IP:       "2.3.4.5",
    								Hostname: "test.cluster.local",
    							},
    							{
    								IP:       "3.4.5.6",
    								Hostname: "test.cluster.com",
    							},
    						},
    					},
    				},
    			},
    			options: printers.GenerateOptions{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    	}
    	if !outlier.SplitExternalLocalOriginErrors && outlier.ConsecutiveLocalOriginFailures.GetValue() > 0 {
    		err := "outlier detection consecutive local origin failures is specified, but split external local origin errors is set to false"
    		errs = AppendValidation(errs, errors.New(err))
    	}
    	if outlier.Interval != nil {
    		errs = AppendValidation(errs, agent.ValidateDuration(outlier.Interval))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_node_status_test.go

    		return
    	}
    
    	kubeClient.AddReactor("*", "*", notImplemented)
    }
    
    type localCM struct {
    	cm.ContainerManager
    	allocatableReservation v1.ResourceList
    	capacity               v1.ResourceList
    }
    
    func (lcm *localCM) GetNodeAllocatableReservation() v1.ResourceList {
    	return lcm.allocatableReservation
    }
    
    func (lcm *localCM) GetCapacity(localStorageCapacityIsolation bool) v1.ResourceList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  9. src/net/http/server.go

    	ServerContextKey = &contextKey{"http-server"}
    
    	// LocalAddrContextKey is a context key. It can be used in
    	// HTTP handlers with Context.Value to access the local
    	// address the connection arrived on.
    	// The associated value will be of type net.Addr.
    	LocalAddrContextKey = &contextKey{"local-addr"}
    )
    
    // A conn represents the server side of an HTTP connection.
    type conn struct {
    	// server is the server on which the connection arrived.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/eviction_manager_test.go

    }
    
    func makePodWithLocalStorageCapacityIsolationOpen(name string, priority int32, requests v1.ResourceList, limits v1.ResourceList, memoryWorkingSet string) (*v1.Pod, statsapi.PodStats) {
    	vol := newVolume("local-volume", v1.VolumeSource{
    		EmptyDir: &v1.EmptyDirVolumeSource{
    			SizeLimit: resource.NewQuantity(requests.Memory().Value(), resource.BinarySI),
    		},
    	})
    	var vols []v1.Volume
    	vols = append(vols, vol)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top