Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 596 for limiting (0.12 sec)

  1. pkg/controller/storageversionmigrator/storageversionmigrator.go

    			}
    			logger.V(4).Error(err, "Failed to migrate the resource", "name", gvrKey, "gvr", gvr.String(), "reason", apierrors.ReasonForError(err))
    
    			return nil
    			// Todo: add retry for scenarios where API server returns rate limiting error
    		}
    		logger.V(4).Info("Successfully migrated the resource", "name", gvrKey, "gvr", gvr.String())
    	}
    
    	_, err = svmc.kubeClient.StoragemigrationV1alpha1().
    		StorageVersionMigrations().
    		UpdateStatus(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. pkg/controlplane/controller/crdregistration/crdregistration_controller.go

    	err := c.syncHandler(key)
    	if err == nil {
    		// if you had no error, tell the queue to stop tracking history for your key.  This will
    		// reset things like failure counts for per-item rate limiting
    		c.queue.Forget(key)
    		return true
    	}
    
    	// there was a failure so be sure to report it.  This method allows for pluggable error handling
    	// which can be used for things like cluster-monitoring
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. pkg/controller/volume/ephemeral/controller.go

    	// an ephemeral volume, then we should re-create the PVC.
    	// The common indexer does some prefiltering for us by
    	// limiting the list to those pods which reference
    	// the PVC.
    	objs, err := ec.podIndexer.ByIndex(common.PodPVCIndex, fmt.Sprintf("%s/%s", pvc.Namespace, pvc.Name))
    	if err != nil {
    		runtime.HandleError(fmt.Errorf("listing pods from cache: %v", err))
    		return
    	}
    	for _, obj := range objs {
    		ec.enqueuePod(obj)
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/io/src/test/groovy/org/gradle/internal/io/StreamByteBufferTest.groovy

            byteBuffer.readAsByteArray() == testBufferPart
    
            where:
            chunkSize = 8192
            limit << [1, 8191, 8192, 8193, 8194]
        }
    
        def "can create buffer from InputStream and limiting size"() {
            given:
            def byteArrayInputStream = new ByteArrayInputStream(testbuffer)
            byte[] testBufferPart = new byte[limit]
            System.arraycopy(testbuffer, 0, testBufferPart, 0, limit)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 13:06:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pkg/registry/certificates/certificates/strategy.go

    			fieldpath.MakePathOrDie("spec"),
    			fieldpath.MakePathOrDie("status", "certificate"),
    		),
    	}
    
    	return fields
    }
    
    // PrepareForUpdate prepares the new certificate signing request by limiting
    // the data that is updated to only the conditions and populating condition timestamps
    func (csrApprovalStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 21:41:43 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  6. internal/ioutil/ioutil.go

    // an enscapsulated writer upto a certain length
    // and skip a certain number of bytes.
    type LimitWriter struct {
    	io.Writer
    	skipBytes int64
    	wLimit    int64
    }
    
    // Write implements the io.Writer interface limiting upto
    // configured length, also skips the first N bytes.
    func (w *LimitWriter) Write(p []byte) (n int, err error) {
    	n = len(p)
    	var n1 int
    	if w.skipBytes > 0 {
    		if w.skipBytes >= int64(len(p)) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. LICENSE

    add to a covered work, you may (if authorized by the copyright holders of
    that material) supplement the terms of this License with terms:
    
        a) Disclaiming warranty or limiting liability differently from the
        terms of sections 15 and 16 of this License; or
    
        b) Requiring preservation of specified reasonable legal notices or
        author attributions in that material or in the Appropriate Legal
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/start.go

    		// removes the newly created file and creates yet another
    		// file. Then both processes would act as though they had the token.
    		// This is very rare, but it's also okay because we're only grabbing
    		// the token to do rate limiting, not for correctness.
    		_ = os.Remove(tokenfile)
    	} else if !os.IsNotExist(err) {
    		log.Printf("error acquiring upload taken: statting token file: %v", err)
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags.go

    		DisableCompression: &disableCompression,
    
    		usePersistentConfig: usePersistentConfig,
    		// The more groups you have, the more discovery requests you need to make.
    		// with a burst of 300, we will not be rate-limiting for most clusters but
    		// the safeguard will still be here. This config is only used for discovery.
    		discoveryBurst: 300,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. src/mime/multipart/formdata_test.go

    		return
    	}
    	t.Errorf("ReadForm(x) failed for x < 1024, expect success")
    }
    
    // TestReadForm_MetadataTooLarge verifies that we account for the size of field names,
    // MIME headers, and map entry overhead while limiting the memory consumption of parsed forms.
    func TestReadForm_MetadataTooLarge(t *testing.T) {
    	for _, test := range []struct {
    		name string
    		f    func(*Writer)
    	}{{
    		name: "large name",
    		f: func(fw *Writer) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top