Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 164 for forSet (0.18 sec)

  1. pkg/controller/podautoscaler/horizontal.go

    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("couldn't get key for object %+v: %v", obj, err))
    		return
    	}
    
    	// TODO: could we leak if we fail to get the key?
    	a.queue.Forget(key)
    
    	// Remove HPA and attached selector.
    	a.hpaSelectorsMux.Lock()
    	defer a.hpaSelectorsMux.Unlock()
    	a.hpaSelectors.DeleteSelector(selectors.Parse(key))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_test.go

    	textFormat := cfg.GetFields()["log_format"].GetStructValue().GetFields()["text_format_source"].GetStructValue().
    		GetFields()["inline_string"].GetStringValue()
    	if format != "" && textFormat != format {
    		t.Fatalf("expected format to be %s, but got %s", format, textFormat)
    	}
    }
    
    func TestHttpProxyListener(t *testing.T) {
    	m := mesh.DefaultMeshConfig()
    	m.ProxyHttpPort = 15007
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller.go

    	key, quit := jm.queue.Get()
    	if quit {
    		return false
    	}
    	defer jm.queue.Done(key)
    
    	err := jm.syncHandler(ctx, key)
    	if err == nil {
    		jm.queue.Forget(key)
    		return true
    	}
    
    	utilruntime.HandleError(fmt.Errorf("syncing job: %w", err))
    	jm.queue.AddRateLimited(key)
    
    	return true
    }
    
    func (jm *Controller) orphanWorker(ctx context.Context) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			} else {
    				logger.V(5).Info("Patching PodSchedulingContext", "podSchedulingCtx", klog.KObj(pod))
    			}
    			_, err = clientset.ResourceV1alpha2().PodSchedulingContexts(pod.Namespace).Apply(ctx, schedulingCtxApply, metav1.ApplyOptions{FieldManager: "kube-scheduler", Force: true})
    		}
    
    	} else {
    		// Create it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. src/net/http/request.go

    // It was changed at the time of Go 1.1 release because the former User-Agent
    // had ended up blocked by some intrusion detection systems.
    // See https://codereview.appspot.com/7532043.
    const defaultUserAgent = "Go-http-client/1.1"
    
    // Write writes an HTTP/1.1 request, which is the header and body, in wire format.
    // This method consults the following fields of the request:
    //
    //	Host
    //	URL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            ProjectInternal project = getCrossProjectModelAccess().findProject(referrer, this, path);
            if (project == null) {
                throw new UnknownProjectException(String.format("Project with path '%s' could not be found in %s.", path, this));
            }
            return project;
        }
    
        @Override
        public ProjectInternal findProject(String path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		go func() {
    			defer close(firstReqRoundTripDoneCh)
    			t.Logf("At %s, Sending request: %q", time.Now().Format(timeFmt), firstRequestTimesOutPath)
    			resp, err := requestGetter(firstRequestTimesOutPath)
    			t.Logf("At %s, RoundTrip of request: %q has completed", time.Now().Format(timeFmt), firstRequestTimesOutPath)
    			firstReqResultCh <- result{err: err, response: resp}
    		}()
    		go func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. cmd/xl-storage_test.go

    	storage, err := newLocalXLStorageWithDiskIdx(diskPath, 3)
    	if err != nil {
    		return nil, "", err
    	}
    
    	// Create a sample format.json file
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

    // Configuration for the datadog tracing service.
    message TracerDatadogConfig {
      // Address in host:port format for reporting trace data to the Datadog agent.
      string address = 1;
    }
    
    // Configuration for the lightstep tracing service.
    message TracerLightStepConfig {
      // Sets the lightstep satellite pool address in host:port format for reporting trace data.
      string address = 1;
    
      // Sets the lightstep access token.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. src/syscall/zerrors_darwin_arm64.go

    	2:   "no such file or directory",
    	3:   "no such process",
    	4:   "interrupted system call",
    	5:   "input/output error",
    	6:   "device not configured",
    	7:   "argument list too long",
    	8:   "exec format error",
    	9:   "bad file descriptor",
    	10:  "no child processes",
    	11:  "resource deadlock avoided",
    	12:  "cannot allocate memory",
    	13:  "permission denied",
    	14:  "bad address",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
Back to top