Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 129 for excluding (0.35 sec)

  1. staging/src/k8s.io/api/apps/v1beta2/types.go

    	NumberMisscheduled int32 `json:"numberMisscheduled" protobuf:"varint,2,opt,name=numberMisscheduled"`
    
    	// The total number of nodes that should be running the daemon
    	// pod (including nodes correctly running the daemon pod).
    	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/types.go

    	// +optional
    	metav1.ObjectMeta
    	// Specification of the desired behavior of the ValidatingAdmissionPolicy.
    	Spec ValidatingAdmissionPolicySpec
    	// The status of the ValidatingAdmissionPolicy, including warnings that are useful to determine if the policy
    	// behaves in the expected way.
    	// Populated by the system.
    	// Read-only.
    	// +optional
    	Status ValidatingAdmissionPolicyStatus
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // Specification of the desired behavior of the ValidatingAdmissionPolicy.
      optional ValidatingAdmissionPolicySpec spec = 2;
    
      // The status of the ValidatingAdmissionPolicy, including warnings that are useful to determine if the policy
      // behaves in the expected way.
      // Populated by the system.
      // Read-only.
      // +optional
      optional ValidatingAdmissionPolicyStatus status = 3;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. src/go/printer/testdata/parser.go

    	if p.trace {
    		defer un(trace(p, "VarList"))
    	}
    
    	// a list of identifiers looks like a list of type names
    	for {
    		// parseVarType accepts any type (including parenthesized ones)
    		// even though the syntax does not permit them here: we
    		// accept them all for more robust parsing and complain
    		// afterwards
    		list = append(list, p.parseVarType(isParam))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        // Permit the contents of IPv6 addresses to be percent-encoded...
        assertThat(parse("http://[%3A%3A%31]/").host).isEqualTo("::1")
    
        // Including the Square braces themselves! (This is what Chrome does.)
        assertThat(parse("http://%5B%3A%3A1%5D/").host).isEqualTo("::1")
      }
    
      @Test
      fun hostIpv6AddressDifferentFormats() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    	}
    
    	skipped := false
    	size := s.elemsize
    	if s.state.get() == mSpanManual && size == 0 {
    		// We're printing something from a stack frame. We
    		// don't know how big it is, so just show up to an
    		// including off.
    		size = off + goarch.PtrSize
    	}
    	for i := uintptr(0); i < size; i += goarch.PtrSize {
    		// For big objects, just print the beginning (because
    		// that usually hints at the object's type) and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    	// the Package field in test2json output is rewritten to pkg:variant.
    	variant string
    	// omitVariant indicates that variant is used solely for the dist test name and
    	// that the set of test names run by each variant (including empty) of a package
    	// is non-overlapping.
    	omitVariant bool
    
    	// We have both pkg and pkgs as a convenience. Both may be set, in which
    	// case they will be combined. At least one must be set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Specification of the desired behavior of the ValidatingAdmissionPolicy.
      optional ValidatingAdmissionPolicySpec spec = 2;
    
      // The status of the ValidatingAdmissionPolicy, including warnings that are useful to determine if the policy
      // behaves in the expected way.
      // Populated by the system.
      // Read-only.
      // +optional
      optional ValidatingAdmissionPolicyStatus status = 3;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. src/bufio/bufio_test.go

    			t.Fatalf("ReadRune(0x%x) got 0x%x,%d not 0x%x,%d (err=%s)", r1, nr, nbytes, r1, size, err)
    		}
    	}
    }
    
    func TestWriteInvalidRune(t *testing.T) {
    	// Invalid runes, including negative ones, should be written as the
    	// replacement character.
    	for _, r := range []rune{-1, utf8.MaxRune + 1} {
    		var buf strings.Builder
    		w := NewWriter(&buf)
    		w.WriteRune(r)
    		w.Flush()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string revision = 21;
    
      // Used internally to identify the owner of each resource.
      string ownerName = 22;
    
      // Defines runtime configuration of components, including Istiod and istio-agent behavior.
      // See https://istio.io/docs/reference/config/istio.mesh.v1alpha1/ for all available options.
      // TODO can this import the real mesh config API?
      google.protobuf.Value meshConfig = 36;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top