Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,194 for unse (0.05 sec)

  1. pkg/apis/core/v1/conversion_test.go

    			in: v1.NodeSpec{
    				PodCIDR:  "10.0.0.0/24",
    				PodCIDRs: []string{"10.0.1.0/24", "ace:cab:deca::/8"},
    			},
    			out: core.NodeSpec{
    				PodCIDRs: []string{"10.0.0.0/24"},
    			},
    		},
    		{
    			name: "unset podCIDR",
    			in: v1.NodeSpec{
    				PodCIDR:  "",
    				PodCIDRs: []string{"10.0.1.0/24", "ace:cab:deca::/8"},
    			},
    			out: core.NodeSpec{
    				PodCIDRs: []string{"10.0.1.0/24", "ace:cab:deca::/8"},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:15 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // volumes is an allowlist of volume plugins. Empty indicates that
      // no volumes may be used. To allow all volumes you may use '*'.
      // +optional
      repeated string volumes = 5;
    
      // hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.
      // +optional
      optional bool hostNetwork = 6;
    
      // hostPorts determines which host port ranges are allowed to be exposed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CookieTest.kt

        assertThat(cookie.domain).isEqualTo("example.com")
        assertThat(cookie.path).isEqualTo("/")
        assertThat(cookie.secure).isFalse()
        assertThat(cookie.httpOnly).isFalse()
        // can't be unset
        assertThat(cookie.persistent).isTrue()
        assertThat(cookie.hostOnly).isFalse()
      }
    
      @Test fun builderNameValidation() {
        assertFailsWith<IllegalArgumentException> {
          Cookie.Builder().name(" a ")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top