Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 524 for unprocessed (0.35 sec)

  1. staging/src/k8s.io/api/policy/v1/types_swagger_doc_generated.go

    	"disruptedPods":      "DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 20 23:36:45 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/policy/v1beta1/types_swagger_doc_generated.go

    	"disruptedPods":      "DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/policy/v1/generated.proto

      optional int64 observedGeneration = 1;
    
      // DisruptedPods contains information about pods whose eviction was
      // processed by the API server eviction subresource handler but has not
      // yet been observed by the PodDisruptionBudget controller.
      // A pod will be in this map from the time when the API server processed the
      // eviction request to the time when the pod is seen by PDB controller
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/config.go

    	}
    
    	return false, ""
    }
    
    // determineLinkMode sets ctxt.LinkMode.
    //
    // It is called after flags are processed and inputs are processed,
    // so the ctxt.LinkMode variable has an initial value from the -linkmode
    // flag and the iscgo, externalobj, and unknownObjFormat variables are set.
    func determineLinkMode(ctxt *Link) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:14:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedClosuresTracker.java

     * to the current closures chain and can potentially be intercepted. The implementation must ensure that all the closures in the scope are processed in a way that
     * ensures call interception if a call is dispatched to them.
     */
    @NonNullApi
    public interface InstrumentedClosuresTracker {
        void enterClosure(InstrumentableClosure thisClosure);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 11 12:31:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. pkg/queue/metrics.go

    	})
    	depth = monitoring.NewGauge("pilot_worker_queue_depth", "Depth of the controller queues", enableMetric)
    
    	latency = monitoring.NewDistribution("pilot_worker_queue_latency",
    		"Latency before the item is processed", []float64{.01, .1, .2, .5, 1, 3, 5}, enableMetric)
    
    	workDuration = monitoring.NewDistribution("pilot_worker_queue_duration",
    		"Time taken to process an item", []float64{.01, .1, .2, .5, 1, 3, 5}, enableMetric)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 21 16:30:36 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/apis/cr/v1/types.go

    	Message string       `json:"message,omitempty"`
    }
    
    type ExampleState string
    
    const (
    	ExampleStateCreated   ExampleState = "Created"
    	ExampleStateProcessed ExampleState = "Processed"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // ExampleList is a list of Example resources
    type ExampleList struct {
    	metav1.TypeMeta `json:",inline"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 05 09:07:27 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/ws/MessageInflater.kt

        val totalBytesToRead = inflater.bytesRead + deflatedBytes.size
    
        // We cannot read all, as the source does not close.
        // Instead, we ensure that all bytes from source have been processed by inflater.
        do {
          inflaterSource.readOrInflate(buffer, Long.MAX_VALUE)
        } while (inflater.bytesRead < totalBytesToRead && !inflater.finished())
      }
    
      @Throws(IOException::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/internal/pgo/serialize.go

    import (
    	"bufio"
    	"fmt"
    	"io"
    )
    
    // Serialization of a Profile allows go tool preprofile to construct the edge
    // map only once (rather than once per compile process). The compiler processes
    // then parse the pre-processed data directly from the serialized format.
    //
    // The format of the serialized output is as follows.
    //
    //      GO PREPROFILE V1
    //      caller_name
    //      callee_name
    //      "call site offset" "call edge weight"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. internal/s3select/message.go

    // Progress message payload is an XML document containing information about the progress of a request.
    //   - BytesScanned => Number of bytes that have been processed before being uncompressed (if the file is compressed).
    //   - BytesProcessed => Number of bytes that have been processed after being uncompressed (if the file is compressed).
    //   - BytesReturned => Current number of bytes of records payload data returned by S3.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 30 15:26:43 UTC 2022
    - 15.2K bytes
    - Viewed (0)
Back to top