Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 190 for too (0.03 sec)

  1. pkg/apis/storage/validation/validation_test.go

    			},
    			ReclaimPolicy: &deleteReclaimPolicy,
    		},
    		"provisioner: Required value": {
    			ObjectMeta:    metav1.ObjectMeta{Name: "foo"},
    			Provisioner:   "",
    			ReclaimPolicy: &deleteReclaimPolicy,
    		},
    		"too long parameters": {
    			ObjectMeta:    metav1.ObjectMeta{Name: "foo"},
    			Provisioner:   "kubernetes.io/foo",
    			Parameters:    longParameters,
    			ReclaimPolicy: &deleteReclaimPolicy,
    		},
    		"invalid reclaimpolicy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    	activeCall atomic.Int32
    
    	tmp [16]byte
    }
    
    // Access to net.Conn methods.
    // Cannot just embed net.Conn because that would
    // export the struct field too.
    
    // LocalAddr returns the local network address.
    func (c *Conn) LocalAddr() net.Addr {
    	return c.conn.LocalAddr()
    }
    
    // RemoteAddr returns the remote network address.
    func (c *Conn) RemoteAddr() net.Addr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// CauseTypeTooLong is used to report that the given value is too long.
    	// This is similar to ErrorTypeInvalid, but the error will not include the
    	// too-long value.  See TooLong().
    	CauseTypeTooLong CauseType = "FieldValueTooLong"
    	// CauseTypeTooMany is used to report "too many". This is used to
    	// report that a given list has too many items. This is similar to FieldValueTooLong,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm/asm5.go

    )
    
    // Note about encoding: Prog.scond holds the condition encoding,
    // but XOR'ed with C_SCOND_XOR, so that C_SCOND_NONE == 0.
    // The code that shifts the value << 28 has the responsibility
    // for XORing with C_SCOND_XOR too.
    
    func checkSuffix(c *ctxt5, p *obj.Prog, o *Optab) {
    	if p.Scond&C_SBIT != 0 && o.scond&C_SBIT == 0 {
    		c.ctxt.Diag("invalid .S suffix: %v", p)
    	}
    	if p.Scond&C_PBIT != 0 && o.scond&C_PBIT == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

        /**
         * Maps [typeArguments] to the type parameters of [partiallyAppliedSymbol].
         *
         * If too many type arguments are provided, a mapping is still created. Extra type arguments are simply ignored. If this wasn't the
         * case, the resulting [KaCall] would contain no type arguments at all, which can cause problems later. If too few type arguments are
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            then:
            executed(':problems', ':moreProblems', ':all')
            configurationCache.assertStateStored() // does not fail
            outputContains("Configuration cache entry discarded with too many problems (6 problems).")
            problems.assertFailureHasTooManyProblems(failure) {
                withProblem("Build file 'build.gradle': line 9: invocation of 'Task.project' at execution time is unsupported.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/reflect/TypeToken.java

       *
       * <p>If this type is a type variable or wildcard, its first upper bound is examined and returned
       * if the bound is a class or extends from a class. This means that the returned type could be a
       * type variable too.
       */
      @CheckForNull
      final TypeToken<? super T> getGenericSuperclass() {
        if (runtimeType instanceof TypeVariable) {
          // First bound is always the super class, if one exists.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. src/bufio/bufio_test.go

    	// Does it recognize itself?
    	b1 := NewReaderSize(b, BufSize)
    	if b1 != b {
    		t.Error("NewReaderSize did not detect underlying Reader")
    	}
    	// Does it wrap if existing buffer is too small?
    	b2 := NewReaderSize(b, 2*BufSize)
    	if b2 == b {
    		t.Error("NewReaderSize did not enlarge buffer")
    	}
    }
    
    func TestNewWriterSizeIdempotent(t *testing.T) {
    	const BufSize = 1000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  9. cmd/xl-storage_test.go

    		{"lol", true},
    		{"1-this-is-valid", true},
    		{"1-this-too-is-valid-1", true},
    		{"this.works.too.1", true},
    		{"1234567", true},
    		{"123", true},
    		{"s3-eu-west-1.amazonaws.com", true},
    		{"ideas-are-more-powerful-than-guns", true},
    		{"testbucket", true},
    		{"1bucket", true},
    		{"bucket1", true},
    		{"$this-is-not-valid-too", true},
    		{"contains-$-dollar", true},
    		{"contains-^-carrot", true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    //  4. Add Complete condition if satisfied with current counters.
    //
    // It does this up to a limited number of Pods so that the size of .status
    // doesn't grow too much and this sync doesn't starve other Jobs.
    func (jm *Controller) trackJobStatusAndRemoveFinalizers(ctx context.Context, jobCtx *syncJobCtx, needsFlush bool) error {
    	logger := klog.FromContext(ctx)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top