Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for incoming2 (0.26 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                    task resolveRed(type: Resolve) {
                        artifacts = configurations.compile.incoming.artifactView {
                            attributes { it.attribute(color, 'red') }
                        }.artifacts
                    }
                    task resolveYellow(type: Resolve) {
                        artifacts = configurations.compile.incoming.artifactView {
                            attributes { it.attribute(color, 'yellow') }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. samples/addons/grafana.yaml

        response_code), 0.001)\",\"format\":\"time_series\",\"hide\":false,\"intervalFactor\":1,\"legendFormat\":\"{{
        source_workload }}.{{ source_workload_namespace }} : {{ response_code }}\",\"refId\":\"B\",\"step\":2}],\"title\":\"Incoming
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    		p.mu.RUnlock()
    		switch prio {
    		case "fast":
    			replLogOnceIf(GlobalContext, fmt.Errorf("Unable to keep up with incoming traffic"), string(replicationSubsystem), logger.WarningKind)
    		case "slow":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. src/net/http/server.go

    func RedirectHandler(url string, code int) Handler {
    	return &redirectHandler{url, code}
    }
    
    // ServeMux is an HTTP request multiplexer.
    // It matches the URL of each incoming request against a list of registered
    // patterns and calls the handler for the pattern that
    // most closely matches the URL.
    //
    // # Patterns
    //
    // Patterns can match the method, host and path of a request.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    // ----------
    // Supports following actions:
    // - restart (restarts all the MinIO instances in a setup)
    // - stop (stops all the MinIO instances in a setup)
    // - freeze (freezes all incoming S3 API calls)
    // - unfreeze (unfreezes previously frozen S3 API calls)
    func (a adminAPIHandlers) ServiceHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	vars := mux.Vars(r)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    		if kl.podWorkers.CouldHaveRunningContainers(pod.UID) && !kubetypes.IsStaticPod(pod) {
    			pod = kl.handlePodResourcesResize(pod)
    		}
    	}
    
    	// TODO(#113606): use cancellation from the incoming context parameter, which comes from the pod worker.
    	// Currently, using cancellation from that context causes test failures. To remove this WithoutCancel,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                    maven { url "${mavenRepo.uri}" }
                }
    
                configurations {
                    conf {
                        resolutionStrategy.failOnVersionConflict()
                        incoming.afterResolve {
                            // If executed, the below will cause the resolution failure on version conflict to be thrown, breaking dependency insight
                            it.artifacts.artifacts
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. pkg/registry/batch/job/strategy_test.go

    	cases := map[string]struct {
    		enableJobManagedBy     bool
    		enableJobSuccessPolicy bool
    
    		job      *batch.Job
    		newJob   *batch.Job
    		wantJob  *batch.Job
    		wantErrs field.ErrorList
    	}{
    		"incoming resource version on update should not be mutated": {
    			job: &batch.Job{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "myjob",
    					Namespace:       metav1.NamespaceDefault,
    					ResourceVersion: "10",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    	for dID, pi := range arg.Peers {
    		if c.state.Peers != nil {
    			if existingPeer, ok := c.state.Peers[dID]; ok {
    				// retain existing ReplicateILMExpiry of peer if its already set
    				// and incoming arg has it false. it could be default false
    				if !pi.ReplicateILMExpiry && existingPeer.ReplicateILMExpiry {
    					pi.ReplicateILMExpiry = existingPeer.ReplicateILMExpiry
    				}
    			}
    		}
    		peers[dID] = pi
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  10. cmd/metrics-v2.go

    }
    
    func getIncomingS3RequestsMD() MetricDescription {
    	return MetricDescription{
    		Namespace: s3MetricNamespace,
    		Subsystem: requestsSubsystem,
    		Name:      incomingTotal,
    		Help:      "Total number of incoming S3 requests",
    		Type:      gaugeMetric,
    	}
    }
    
    func getS3RequestsTotalMD() MetricDescription {
    	return MetricDescription{
    		Namespace: s3MetricNamespace,
    		Subsystem: requestsSubsystem,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
Back to top