Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of about 10,000 for unse (0.09 sec)

  1. src/cmd/go/internal/work/gc.go

    	// First, check whether we can use -c at all for this compilation.
    	canDashC := concurrentGCBackendCompilationEnabledByDefault
    
    	switch e := os.Getenv("GO19CONCURRENTCOMPILATION"); e {
    	case "0":
    		canDashC = false
    	case "1":
    		canDashC = true
    	case "":
    		// Not set. Use default.
    	default:
    		log.Fatalf("GO19CONCURRENTCOMPILATION must be 0, 1, or unset, got %q", e)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. istioctl/pkg/workload/workload.go

    	groupCmd := &cobra.Command{
    		Use:     "group",
    		Short:   "Commands dealing with WorkloadGroup resources",
    		Example: "  istioctl x workload group create --name foo --namespace bar --labels app=foobar",
    	}
    	groupCmd.AddCommand(createCommand(ctx))
    	return groupCmd
    }
    
    func entryCommand(ctx cli.Context) *cobra.Command {
    	entryCmd := &cobra.Command{
    		Use:     "entry",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/plive.go

    		// effects with the each prog effects.
    		for j := len(b.Values) - 1; j >= 0; j-- {
    			pos, e := lv.valueEffects(b.Values[j])
    			if e&varkill != 0 {
    				be.varkill.Set(pos)
    				be.uevar.Unset(pos)
    			}
    			if e&uevar != 0 {
    				be.uevar.Set(pos)
    			}
    		}
    	}
    }
    
    // Solve the liveness dataflow equations.
    func (lv *liveness) solve() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. src/net/http/httputil/reverseproxy.go

    	if baseCT, _, _ := mime.ParseMediaType(resCT); baseCT == "text/event-stream" {
    		return -1 // negative means immediately
    	}
    
    	// We might have the case of streaming for which Content-Length might be unset.
    	if res.ContentLength == -1 {
    		return -1
    	}
    
    	return p.FlushInterval
    }
    
    func (p *ReverseProxy) copyResponse(dst http.ResponseWriter, src io.Reader, flushInterval time.Duration) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

    longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/autoscaling/v2/types.go

    	// selector is the string-encoded form of a standard kubernetes label selector for the given metric
    	// When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping.
    	// When unset, just the metricName will be used to gather metrics.
    	// +optional
    	Selector *metav1.LabelSelector `json:"selector,omitempty" protobuf:"bytes,2,name=selector"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. pkg/apis/networking/types.go

    	// +optional
    	Scope *string
    
    	// namespace is the namespace of the resource being referenced. This field is
    	// required when scope is set to "Namespace" and must be unset when scope is set to
    	// "Cluster".
    	// +optional
    	Namespace *string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // IngressClassList is a collection of IngressClasses.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  8. cmd/metacache-set.go

    type listPathOptions struct {
    	// ID of the listing.
    	// This will be used to persist the list.
    	ID string
    
    	// Bucket of the listing.
    	Bucket string
    
    	// Directory inside the bucket.
    	// When unset listPath will set this based on Prefix
    	BaseDir string
    
    	// Scan/return only content with prefix.
    	Prefix string
    
    	// FilterPrefix will return only results with this prefix when scanning.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  9. pkg/registry/core/service/storage/storage_test.go

    	if after != nil && after.Spec.ClusterIP != api.ClusterIPNone {
    		if after.Spec.ClusterIP != "" {
    			t.Errorf("%s: expected clusterIP to be unset: %q", callName(before, after), after.Spec.ClusterIP)
    		}
    		if len(after.Spec.ClusterIPs) != 0 {
    			t.Errorf("%s: expected clusterIPs to be unset: %q", callName(before, after), after.Spec.ClusterIPs)
    		}
    	}
    
    	if before != nil && before.Spec.ClusterIP != api.ClusterIPNone {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  10. src/go/types/decl.go

    				break loop
    			}
    
    			// Determine if the type name is an alias or not. For
    			// package-level objects, use the object map which
    			// provides syntactic information (which doesn't rely
    			// on the order in which the objects are set up). For
    			// local objects, we can rely on the order, so use
    			// the object's predicate.
    			// TODO(gri) It would be less fragile to always access
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top